* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}



.hero-content {
    position: relative;
    z-index: 2;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.wedding-date {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.location {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

section {
    padding: 5rem 0;
}

section:nth-child(even) {
    background-color: white;
}

.details {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
}

.details h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.wedding-info {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 5rem 0;
}

.wedding-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.info-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.dresscode-main {
    text-align: center;
    margin-bottom: 2rem;
}

.dresscode-type {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #495057;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.dresscode-description {
    font-size: 1.1rem;
    color: #6c757d;
    font-style: italic;
    margin: 0;
    line-height: 1.4;
}

.dresscode-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dresscode-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #495057;
    margin-bottom: 0.5rem;
    font-weight: 600;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.3rem;
}

.dresscode-section p {
    margin: 0;
    color: #6c757d;
    line-height: 1.5;
}

.dresscode-summary {
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.dresscode-summary h4 {
    color: white;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
}

.dresscode-summary p {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.travel-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.travel-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #495057;
    margin-bottom: 0.5rem;
    font-weight: 600;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.3rem;
}

.travel-section p {
    margin: 0;
    color: #6c757d;
    line-height: 1.5;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.detail-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
}

.detail-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.detail-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.location-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.location-link:hover {
    color: #764ba2;
    border-bottom: 1px solid #764ba2;
}

.location-link:active {
    transform: scale(0.98);
}

.accommodation {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 5rem 0;
}

.accommodation h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.hotel-info {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.hotel-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.special-rates {
    color: #667eea;
    font-weight: 500;
    margin: 1rem 0;
}

.special-rates ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    text-align: left;
}

.special-rates li {
    background: rgba(102, 126, 234, 0.1);
    padding: 0.5rem 1rem;
    margin: 0.5rem 0;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.special-rates .button {
    margin-top: 1rem;
    display: inline-block;
}

.booking-code {
    background: #667eea;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
    margin: 1rem 0;
    font-weight: 500;
}

.other-accommodation {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.other-accommodation h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.other-accommodation p {
    margin-bottom: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.accommodation-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
}

.accommodation-link:hover {
    color: #764ba2;
    background: rgba(102, 126, 234, 0.1);
    text-decoration: none;
}

.button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    min-height: 44px;
    touch-action: manipulation;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.button:active {
    transform: translateY(0);
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.contact-info {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 5rem 0;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #666;
}

.contact-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .wedding-date {
        font-size: 1.2rem;
    }
    
    .location {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .details h2,
    .accommodation h2,
    .taxi-sharing h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .wedding-info h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-info h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .contact-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .contact-icon {
        font-size: 2.5rem;
    }
    
    .contact-card h3 {
        font-size: 1.3rem;
    }
    
    .contact-card p {
        font-size: 0.9rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .info-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .info-icon {
        font-size: 2.5rem;
    }
    
    .info-card h3 {
        font-size: 1.3rem;
    }
    
    .info-card p {
        font-size: 0.9rem;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .detail-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .detail-icon {
        font-size: 2.5rem;
    }
    
    .detail-card h3 {
        font-size: 1.3rem;
    }
    
    .location-link {
        min-height: 44px;
        display: inline-block;
        padding: 0.25rem 0;
    }
    
    .hotel-info {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .hotel-info h3 {
        font-size: 1.5rem;
    }
    
    .special-rates ul {
        margin: 0.5rem 0;
    }
    
    .special-rates li {
        padding: 0.75rem;
        margin: 0.25rem 0;
        font-size: 0.9rem;
    }
    
    .taxi-form {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .taxi-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .taxi-services {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .taxi-services h3 {
        font-size: 1.6rem;
    }
    
    .taxi-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .taxi-service-link {
        padding: 1.2rem;
    }
    
    .taxi-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .taxi-name {
        text-align: center;
        font-size: 1rem;
    }
    
    .taxi-details {
        text-align: center;
        font-size: 0.85rem;
    }
    
    .flight-results {
        padding: 1.5rem;
        margin: 2rem 0.5rem 0 0.5rem;
    }
    
    .flight-results h3 {
        font-size: 1.3rem;
    }
    
    .flight-results li {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 1rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }
    
    .button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
    
    .booking-code {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .wedding-date {
        font-size: 1.1rem;
    }
    
    .location {
        font-size: 0.9rem;
    }
    
    .details h2,
    .accommodation h2,
    .taxi-sharing h2 {
        font-size: 1.8rem;
    }
    
    .wedding-info h2 {
        font-size: 1.8rem;
    }
    
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .contact-card {
        padding: 1rem;
    }
    
    .contact-icon {
        font-size: 2rem;
    }
    
    .contact-card h3 {
        font-size: 1.2rem;
    }
    
    .info-card {
        padding: 1rem;
    }
    
    .info-icon {
        font-size: 2rem;
    }
    
    .info-card h3 {
        font-size: 1.2rem;
    }
    
    .detail-card {
        padding: 1rem;
    }
    
    .detail-icon {
        font-size: 2rem;
    }
    
    .detail-card h3 {
        font-size: 1.2rem;
    }
    
    .hotel-info {
        padding: 1rem;
    }
    
    .taxi-form {
        padding: 1rem;
    }
    
    .flight-results {
        padding: 1rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    section {
        padding: 2rem 0;
    }
}

.taxi-sharing {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 0;
    color: white;
}
.taxi-sharing h2 { font-family: "Playfair Display", serif; font-size: 3rem; text-align: center; margin-bottom: 1rem; }
.taxi-intro { text-align: center; font-size: 1.2rem; margin-bottom: 3rem; opacity: 0.9; }

.taxi-services {
    max-width: 600px;
    margin: 0 auto 3rem auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    border-radius: 15px;
    color: white;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.taxi-services h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.taxi-services p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.taxi-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.taxi-service-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.taxi-service-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.4);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.taxi-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.taxi-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-grow: 1;
}

.taxi-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.taxi-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: white;
}

.taxi-details {
    font-size: 0.8rem;
    opacity: 0.9;
    color: white;
    font-style: italic;
    flex-shrink: 0;
    text-align: right;
}

.taxi-form {
    max-width: 600px;
    margin: 0 auto 3rem auto;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.taxi-services {
    max-width: 600px;
    margin: 0 auto 3rem auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    border-radius: 15px;
    color: white;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.taxi-services h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.taxi-services p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.flight-results {
    max-width: 600px;
    margin: 0 auto 3rem auto;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.flight-results h3 { 
    margin-bottom: 1rem; 
    font-size: 1.5rem; 
    color: #333;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.flight-results p {
    color: #666;
    line-height: 1.5;
}

.flight-results ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.flight-results li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: #333;
}

.flight-results li:last-child {
    border-bottom: none;
}

.form-group input[type="number"] { background: rgba(255,255,255,0.9); }

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    min-height: 44px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

@media (max-width: 768px) {
    .taxi-links {
        gap: 0.75rem;
        max-width: 100%;
    }
    
    .taxi-service-link {
        padding: 0.8rem 1rem;
    }
    
    .taxi-content {
        gap: 0.5rem;
    }
    
    .taxi-header {
        gap: 0.5rem;
    }
    
    .taxi-name {
        font-size: 0.9rem;
    }
    
    .taxi-details {
        font-size: 0.75rem;
    }
}

.language-selector {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 10;
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 0.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.lang-btn:hover {
    color: rgba(255, 255, 255, 0.9);
}

.lang-btn.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .language-selector {
        top: 1rem;
        right: 1rem;
        padding: 0.2rem;
    }
    
    .lang-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

.highlighted-date {
    font-size: 1.2rem;
    font-weight: 700;
    color: #667eea;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 2px solid #667eea;
    margin: 0.5rem 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

.date-note {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
    margin: 0.3rem 0;
    text-align: center;
}

.detail-card .highlighted-date {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: #667eea !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 8px !important;
    border: 2px solid #667eea !important;
    margin: 0.5rem 0 !important;
    text-align: center !important;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2) !important;
    display: block !important;
}

.detail-card .date-note {
    font-size: 0.9rem !important;
    color: #6c757d !important;
    font-style: italic !important;
    margin: 0.3rem 0 !important;
    text-align: center !important;
}
