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

:root {
    --primary-pink: #e8b4b8;
    --light-pink: #fdf2f3;
    --blush: #f5e1e4;
    --rose-gold: #b76e79;
    --soft-white: #fefefe;
    --text-dark: #3d3d3d;
    --text-light: #6b6b6b;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--soft-white);
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1920') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--soft-white), transparent);
}

.hero h1 {
    font-size: 5rem;
    font-weight: 300;
    letter-spacing: 12px;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.3);
    animation: fadeInDown 1.5s ease-out;
}

.hero .date {
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 50px;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 4px;
    animation: fadeInUp 1.5s ease-out 0.3s both;
}

.countdown {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    animation: fadeInUp 1.5s ease-out 0.6s both;
}

.countdown-item {
    text-align: center;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 25px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
}

.countdown-item span {
    display: block;
    font-size: 3.5rem;
    font-weight: 500;
    font-family: 'Cormorant Garamond', serif;
}

.countdown-item label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: fadeInUp 1.5s ease-out 1s both;
}

.scroll-indicator svg {
    width: 30px;
    height: 30px;
    color: white;
    opacity: 0.8;
    animation: bounce 2s infinite;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

section {
    padding: 100px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

section.full-width {
    max-width: 100%;
    padding: 100px 60px;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 60px;
    font-style: italic;
}

.venue-section {
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--soft-white) 100%);
    padding: 100px 20px;
}

.venue-content {
    max-width: 1400px;
    margin: 0 auto;
}

.venue-info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.venue-info h3 {
    font-size: 4rem;
    color: var(--rose-gold);
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.venue-info h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-pink);
    border-radius: 2px;
}

.venue-info p {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text-light);
}

.venue-time {
    display: inline-block;
    background: var(--rose-gold);
    color: white;
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-top: 25px;
}

.venue-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-top: 30px;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--rose-gold);
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-decoration: none;
    border: 2px solid var(--rose-gold);
    transition: all 0.3s ease;
}

.map-link:hover {
    background: var(--rose-gold);
    color: white;
}

.map-link svg {
    width: 18px;
    height: 18px;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.photo-gallery img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.photo-gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.photo-gallery.masonry {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
}

.photo-gallery.masonry img:first-child {
    grid-column: span 2;
    grid-row: span 2;
    height: 100%;
}

.divider {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-pink), transparent);
    margin: 0 auto 30px;
}

.gift-section {
    background: linear-gradient(180deg, var(--soft-white) 0%, var(--blush) 100%);
    padding: 100px 20px;
    text-align: center;
}

.gift-section .section-title {
    margin-bottom: 30px;
}

.gift-message {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.5rem;
    line-height: 2;
    color: var(--text-light);
    font-family: 'Cormorant Garamond', serif;
}

.font-italic {
    font-style: italic;
}

.iban-box {
    background: white;
    padding: 40px 60px;
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 20px 60px rgba(183, 110, 121, 0.15);
    border: 1px solid var(--blush);
}

.iban-box p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.iban-box .iban {
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--rose-gold);
    font-family: 'Cormorant Garamond', serif;
}

footer {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--primary-pink) 100%);
    color: white;
}

footer p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.rsvp-section {
    background: linear-gradient(135deg, var(--soft-white) 0%, var(--light-pink) 100%);
    padding: 100px 20px;
    text-align: center;
}

.rsvp-message {
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-light);
}

.rsvp-options {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.rsvp-option {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.rsvp-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.rsvp-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-pink), var(--rose-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rsvp-icon svg {
    width: 35px;
    height: 35px;
    color: white;
}

.rsvp-option h3 {
    font-size: 1.8rem;
    color: var(--rose-gold);
    margin-bottom: 15px;
    font-weight: 400;
}

.rsvp-option p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.rsvp-button {
    display: inline-block;
    background: var(--rose-gold);
    color: white;
    padding: 14px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.rsvp-button:hover {
    background: var(--primary-pink);
    transform: scale(1.05);
}

.rsvp-divider {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-style: italic;
    font-size: 1.1rem;
}

.rsvp-divider span {
    padding: 0 15px;
}

.whatsapp-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    justify-content: center;
}

.whatsapp-button:hover {
    background: #20BA5A;
    transform: scale(1.05);
}

.whatsapp-button svg {
    width: 22px;
    height: 22px;
}

@media (max-width: 1024px) {
    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .photo-gallery.masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .photo-gallery.masonry img:first-child {
        grid-column: span 2;
        grid-row: span 1;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
        letter-spacing: 6px;
    }
    
    .hero .date {
        font-size: 1.3rem;
    }
    
    .countdown {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .countdown-item {
        padding: 15px 20px;
    }
    
    .countdown-item span {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .venue-info h3 {
        font-size: 2.8rem;
    }
    
    .photo-gallery {
        grid-template-columns: 1fr;
    }
    
    .photo-gallery.masonry {
        grid-template-columns: 1fr;
    }
    
    .photo-gallery.masonry img:first-child {
        grid-column: span 1;
    }
    
    .photo-gallery img {
        height: 280px;
    }
    
    .rsvp-options {
        flex-direction: column;
        gap: 30px;
    }
    
    .rsvp-option {
        max-width: 100%;
    }
    
    .rsvp-divider {
        width: 100%;
        justify-content: center;
    }
}
