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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2c2d2b;
    background-color: #f8f7f3;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(248, 247, 243, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #2c2d2b;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #8b7355;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.photo-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    filter: grayscale(100%) contrast(1.2) brightness(0.7);
}

.photo.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 45, 43, 0.7) 0%, rgba(139, 115, 85, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    padding: 2rem;
}

.countdown-container {
    margin-bottom: 3rem;
}

.countdown-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: #f8f7f3;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(248, 247, 243, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(248, 247, 243, 0.3);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    min-width: 80px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f8f7f3;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1;
}

.countdown-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #f8f7f3;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.names-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.bride-name, .groom-name {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    font-weight: 700;
    color: #f8f7f3;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
}

.ampersand {
    font-size: 3rem;
    font-weight: 300;
    color: #f8f7f3;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.wedding-date {
    margin-bottom: 2rem;
}

.wedding-date p {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #f8f7f3;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.we-getting-married h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.8rem;
    color: #f8f7f3;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.venue-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #f8f7f3;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #f8f7f3;
}

.scroll-arrow {
    font-size: 2rem;
    animation: bounce 2s infinite;
    margin-bottom: 0.5rem;
}

.scroll-indicator p {
    font-size: 0.9rem;
    opacity: 0.8;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Itinerary Section */
.itinerary {
    padding: 5rem 2rem;
    text-align: center;
    background: #fff;
}

.itinerary h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #2c2d2b;
    margin-bottom: 3rem;
}

.events-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.event {
    background: #f8f7f3;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.event h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2d2b;
    margin-bottom: 1rem;
}

.event .time {
    font-weight: 500;
    color: #8b7355;
    margin-bottom: 0.5rem;
}

.event .venue {
    font-weight: 600;
    color: #2c2d2b;
    margin-bottom: 0.5rem;
}

.event .date {
    color: #666;
    margin-bottom: 1rem;
}

.map-link {
    display: inline-block;
    background: #8b7355;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.map-link:hover {
    background: #6d5a42;
}

.dress-code {
    background: #f8f7f3;
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.dress-code h3 {
    font-size: 1.5rem;
    color: #2c2d2b;
    margin-bottom: 1rem;
}

.dress-code p {
    margin-bottom: 0.5rem;
    color: #666;
}

.no-children {
    font-weight: 600;
    color: #8b7355 !important;
    margin-top: 1rem !important;
}

/* Transport Section */
.transport {
    padding: 5rem 2rem;
    background: #f8f7f3;
}

.transport h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #2c2d2b;
    margin-bottom: 2rem;
    text-align: center;
}

.transport-methods {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.transport-method {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.transport-method h3 {
    font-size: 1.8rem;
    color: #8b7355;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.route {
    margin-bottom: 2rem;
}

.route:last-child {
    margin-bottom: 0;
}

.route h4 {
    font-size: 1.2rem;
    color: #2c2d2b;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.route p {
    color: #666;
    line-height: 1.6;
    text-align: justify;
}

.route p strong {
    color: #8b7355;
    font-weight: 600;
}

.route-link, .bus-link, .airline-link {
    display: inline-block;
    background: #8b7355;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.8rem;
    transition: background 0.3s ease;
}

.route-link:hover, .bus-link:hover, .airline-link:hover {
    background: #6d5a42;
}

.bus-links, .airline-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.8rem;
}

.bus-links .bus-link, .airline-links .airline-link {
    margin-top: 0;
}

/* Recommendations Section */
.recommendations {
    padding: 5rem 2rem;
    background: #fff;
}

.recommendations h2 {
    font-size: 2rem;
    color: #2c2d2b;
    margin-bottom: 3rem;
    text-align: center;
}

.main-hotel {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.main-hotel h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    color: #8b7355;
    margin-bottom: 1.5rem;
}

.hotel-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2c2d2b;
    margin-bottom: 2rem;
}

.hotel-description strong {
    color: #8b7355;
}

.full-disclosure {
    background: #f8f7f3;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #8b7355;
}

.full-disclosure p {
    font-style: italic;
    color: #666;
    line-height: 1.6;
    text-align: left;
}

.full-disclosure strong {
    color: #8b7355;
    font-weight: 600;
}

.alternative-hotels {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.alternative-hotels h3 {
    font-size: 1.5rem;
    color: #2c2d2b;
    margin-bottom: 2rem;
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.hotel-card {
    background: #f8f7f3;
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.hotel-card h4 {
    color: #8b7355;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.hotel-link {
    display: inline-block;
    background: #8b7355;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.3s ease;
}

.hotel-link:hover {
    background: #6d5a42;
}

/* Gift Registry Section */
.gifts {
    padding: 5rem 2rem;
    text-align: center;
    background: #f8f7f3;
}

.gifts h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #2c2d2b;
    margin-bottom: 2rem;
}

.gifts p {
    max-width: 600px;
    margin: 0 auto 1rem;
    color: #666;
}

.gift-registry {
    margin-top: 2rem;
}

.gift-registry p {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: #8b7355;
    margin-bottom: 1rem;
}

.gift-link {
    display: inline-block;
    background: #8b7355;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: background 0.3s ease;
}

.gift-link:hover {
    background: #6d5a42;
}

/* RSVP Section */
.rsvp {
    padding: 5rem 2rem;
    text-align: center;
    background: #fff;
}

.rsvp h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #2c2d2b;
    margin-bottom: 1rem;
}

.rsvp > p {
    color: #666;
    margin-bottom: 3rem;
}

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

.rsvp-form input,
.rsvp-form select,
.rsvp-form textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.rsvp-form input:focus,
.rsvp-form select:focus,
.rsvp-form textarea:focus {
    outline: none;
    border-color: #8b7355;
}

.rsvp-form textarea {
    min-height: 100px;
    resize: vertical;
}

.rsvp-form button {
    background: #8b7355;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.rsvp-form button:hover {
    background: #6d5a42;
}

/* Footer */
footer {
    background: #2c2d2b;
    color: #f8f7f3;
    text-align: center;
    padding: 2rem;
}

footer a {
    color: #8b7355;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .nav-links a {
        font-size: 0.8rem;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 1rem 0.5rem;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .bride-name, .groom-name {
        font-size: 2.5rem;
    }
    
    .ampersand {
        font-size: 2rem;
    }
    
    .names-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .wedding-date p {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .we-getting-married h2 {
        font-size: 2rem;
    }
    
    .venue-info h3 {
        font-size: 1.3rem;
    }
    
    .transport-methods {
        gap: 2rem;
    }
    
    .transport-method {
        padding: 1.5rem;
    }
    
    .bus-links, .airline-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hotels-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hotel-card {
        padding: 1rem;
    }
    
    .full-disclosure {
        padding: 1.5rem;
    }
    
    .events-container {
        grid-template-columns: 1fr;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for countdown */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.countdown-item {
    animation: pulse 3s infinite;
}

.countdown-item:nth-child(1) { animation-delay: 0s; }
.countdown-item:nth-child(2) { animation-delay: 0.5s; }
.countdown-item:nth-child(3) { animation-delay: 1s; }
.countdown-item:nth-child(4) { animation-delay: 1.5s; }
