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

body {
    font-family: 'Georgia', serif;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    color: #333;
    overflow-x: hidden;
}

header {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('logo.png') no-repeat center center/cover;
    
    
    background-size: contain;
    background-position: center;
    position: relative;
    animation: fadeIn 1.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 8px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.divider {
    width: 100px;
    height: 2px;
    background: white;
    margin: 2rem auto;
}

.hero-content p {
    font-size: 1.5rem;
    letter-spacing: 3px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.date {
    font-size: 2rem;
    margin-top: 1rem;
    font-weight: bold;
}

section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    animation: slideUp 0.8s ease-out;
}

.scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            cursor: pointer;
        }

        .scroll-arrow {
            width: 30px;
            height: 50px;
            border: 2px solid white;
            border-radius: 25px;
            position: relative;
            animation: bounce 2s infinite;
        }

        .scroll-arrow::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 6px;
            height: 6px;
            background: white;
            border-radius: 50%;
            animation: scroll-dot 2s infinite;
        }

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

 @keyframes scroll-dot {
            0% {
                opacity: 1;
                top: 10px;
            }
            100% {
                opacity: 0;
                top: 30px;
            }
        }

h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #96B59A;
    font-weight: 300;
    letter-spacing: 4px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

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

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.info-card h3 {
    font-size: 1.8rem;
    color: #96B59A;
    margin-bottom: 1rem;
}

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

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

.info-card a {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: #96B59A;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.info-card a:hover {
    background: #c9f2ce;
    transform: scale(1.05);
}

.countdown {
    background: linear-gradient(135deg, #667c69 0%, #c9f2ce 100%);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.countdown h2 {
    color: white;
    margin-bottom: 2rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.time-box {
    background: rgba(255,255,255,0.2);
    padding: 30px;
    border-radius: 10px;
    min-width: 120px;
    backdrop-filter: blur(10px);
}

.time-box span {
    display: block;
    font-size: 3rem;
    font-weight: bold;
}

.time-box p {
    margin-top: 10px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.rsvp-button {
    display: inline-block;
    margin-top: 3rem;
    padding: 20px 50px;
    background: white;
    color: #96B59A;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.rsvp-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

footer {
    background: #2c2c2c;
    color: white;
    text-align: center;
    padding: 30px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}