/* Rustic Wedding Website - Ewa & Tomasz */

:root {
    --wood-dark: #8B6F47;
    --wood-medium: #B8956A;
    --wood-light: #D4B896;
    --oak: #C9A66B;
    --moss-green: #7A8C5C;
    --forest-green: #6B7F4A;
    --wheat: #E5C89E;
    --cream: #F9F5F0;
    --linen: #FDFAF7;
    --rust: #B86F3C;
    --charcoal: #4d4d4d;
    --bark: #6B5842;
}

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

/* Demo Banner */
.demo-banner {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: sticky;
    top: 0;
    z-index: 10000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.demo-banner-logo {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.demo-banner-text {
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
    line-height: 1.4;
}

.demo-banner-text a {
    color: #FFD700;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.demo-banner-text a:hover {
    color: #FFF;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .demo-banner {
        flex-direction: column;
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }

    .demo-banner-text {
        font-size: 0.8rem;
    }

    .demo-banner-logo {
        width: 28px;
        height: 28px;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--linen);
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: sticky;
    top: 56px;
    left: 0;
    right: 0;
    background:
        linear-gradient(to bottom, rgba(250, 247, 242, 0.98), rgba(245, 240, 232, 0.98)),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 4px,
            rgba(107, 84, 65, 0.02) 4px,
            rgba(107, 84, 65, 0.02) 8px
        );
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    z-index: 999;
    transition: all 0.3s ease;
    border-bottom: 4px solid var(--wood-medium);
    box-shadow: 0 2px 10px rgba(74, 55, 40, 0.2);
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 2.5rem;
    flex-wrap: wrap;
}

nav a {
    font-family: 'Amatic SC', cursive;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--wood-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--rust);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--rust);
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    width: 100vw;
    max-width: none;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    background:
        linear-gradient(to bottom, rgba(245, 240, 232, 0.95), rgba(250, 247, 242, 0.95)),
        repeating-linear-gradient(
            90deg,
            #8B7355 0px,
            #6B5441 2px,
            #8B7355 4px,
            #A0896A 8px,
            #8B7355 10px
        );
    background-size: 100%, 200px 100%;
    position: relative;
    overflow: hidden;
}

.wood-grain {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 8px,
            rgba(74, 55, 40, 0.02) 8px,
            rgba(74, 55, 40, 0.02) 16px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 3px,
            rgba(74, 55, 40, 0.03) 3px,
            rgba(74, 55, 40, 0.03) 6px
        );
    pointer-events: none;
    opacity: 0.6;
}

.wildflower {
    position: absolute;
    font-size: 4rem;
    opacity: 0.3;
    animation: sway 4s ease-in-out infinite;
}

.wildflower-left {
    top: 15%;
    left: 8%;
}

.wildflower-right {
    top: 20%;
    right: 8%;
    animation-delay: 1.5s;
}

@keyframes sway {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

.monogram-container {
    position: relative;
    margin-bottom: 2rem;
}

.wood-slice {
    width: 240px;
    height: 240px;
    background:
        radial-gradient(ellipse at 45% 45%, var(--wood-light) 0%, transparent 50%),
        radial-gradient(ellipse at 55% 55%, var(--wood-medium) 20%, transparent 70%),
        radial-gradient(circle, var(--wood-medium) 0%, var(--wood-dark) 60%, var(--bark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow:
        inset 0 0 30px rgba(0, 0, 0, 0.3),
        0 10px 30px rgba(74, 55, 40, 0.5),
        0 0 0 3px var(--bark);
    border: 3px solid var(--wood-dark);
}

.wood-ring {
    position: absolute;
    border: 1.5px solid rgba(74, 55, 40, 0.4);
    border-radius: 50%;
    border-style: dashed;
}

.wood-ring:nth-child(1) {
    width: 190px;
    height: 190px;
    border-width: 2px;
}

.wood-ring:nth-child(2) {
    width: 145px;
    height: 145px;
    opacity: 0.7;
}

.wood-ring:nth-child(3) {
    width: 100px;
    height: 100px;
    opacity: 0.5;
}

.monogram {
    font-family: 'Pacifico', cursive;
    font-size: 3.5rem;
    color: var(--linen);
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-family: 'Amatic SC', cursive;
    font-size: 5rem;
    font-weight: 700;
    color: var(--wood-dark);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.ampersand {
    font-family: 'Pacifico', cursive;
    font-size: 5rem;
    color: var(--rust);
    margin: 0 1rem;
    display: inline-block;
}

.divider {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin: 2rem auto;
    font-size: 1.5rem;
    color: var(--moss-green);
}

.wedding-date {
    font-family: 'Amatic SC', cursive;
    font-size: 2rem;
    color: var(--wood-medium);
    margin: 2rem 0;
    font-weight: 700;
}

/* Countdown */
.countdown {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 3rem 0 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background:
        linear-gradient(135deg, rgba(245, 240, 232, 0.95), rgba(250, 247, 242, 0.95)),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(107, 84, 65, 0.05) 2px,
            rgba(107, 84, 65, 0.05) 4px
        );
    padding: 1rem 1.5rem;
    border-radius: 4px;
    box-shadow:
        inset 0 1px 3px rgba(74, 55, 40, 0.2),
        0 4px 15px rgba(74, 55, 40, 0.3);
    border: 3px solid var(--wood-medium);
    position: relative;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 2px;
    pointer-events: none;
}

.countdown-number {
    font-family: 'Amatic SC', cursive;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--rust);
    line-height: 1;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.countdown-number.flip {
    transform: scale(1.2);
    color: var(--forest-green);
}

.countdown-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--wood-dark);
    font-weight: 700;
}

.countdown-separator {
    font-size: 2rem;
    color: var(--moss-green);
}

.countdown-date {
    font-family: 'Amatic SC', cursive;
    font-size: 1.5rem;
    color: var(--wood-dark);
    font-weight: 700;
    letter-spacing: 2px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.scroll-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(5px);
}

.scroll-indicator span {
    font-family: 'Amatic SC', cursive;
    font-size: 1.2rem;
    color: var(--wood-dark);
    font-weight: 700;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    color: var(--rust);
    animation: bounce 2s infinite;
}

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

/* Sections */
section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Amatic SC', cursive;
    font-size: 3.5rem;
    text-align: center;
    color: var(--wood-dark);
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '❀ ❀ ❀';
    display: block;
    font-size: 1.5rem;
    color: var(--rust);
    margin-top: 1rem;
}

/* Gallery */
.gallery-section {
    background: var(--cream);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow:
        inset 0 0 20px rgba(74, 55, 40, 0.2),
        0 6px 20px rgba(74, 55, 40, 0.4);
    transition: all 0.4s ease;
    border: 8px solid var(--wood-medium);
    border-image: repeating-linear-gradient(
        45deg,
        var(--wood-dark) 0px,
        var(--wood-medium) 2px,
        var(--wood-light) 4px,
        var(--wood-medium) 6px,
        var(--wood-dark) 8px
    ) 8;
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(105, 117, 72, 0.4), rgba(183, 65, 14, 0.4));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover {
    transform: translateY(-8px) rotate(2deg);
    box-shadow: 0 12px 30px rgba(93, 78, 55, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(61, 61, 61, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border: 4px solid var(--wood-light);
    box-shadow: 0 0 40px rgba(93, 78, 55, 0.5);
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    background: rgba(212, 165, 116, 0.95);
    color: var(--wood-dark);
    border: 2px solid var(--wood-dark);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    z-index: 2001;
}

.lightbox-close:hover,
.lightbox-nav:hover {
    background: var(--wheat);
    transform: scale(1.1);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-nav.prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-nav.next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-nav.prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.next:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(212, 165, 116, 0.95);
    color: var(--wood-dark);
    padding: 0.75rem 1.5rem;
    font-family: 'Amatic SC', cursive;
    font-size: 1.3rem;
    font-weight: 700;
    border: 2px solid var(--wood-dark);
}

/* Invitation */
.invitation {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 3rem;
    background:
        linear-gradient(to bottom, rgba(250, 247, 242, 0.98), rgba(245, 240, 232, 0.98)),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 3px,
            rgba(107, 84, 65, 0.03) 3px,
            rgba(107, 84, 65, 0.03) 6px
        );
    border: 12px solid var(--wood-dark);
    border-image: repeating-linear-gradient(
        90deg,
        var(--bark) 0px,
        var(--wood-dark) 3px,
        var(--wood-medium) 6px,
        var(--wood-dark) 9px,
        var(--bark) 12px
    ) 12;
    box-shadow:
        inset 0 0 30px rgba(74, 55, 40, 0.1),
        0 10px 40px rgba(74, 55, 40, 0.4);
    position: relative;
}

.invitation::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 4px solid var(--wood-medium);
    pointer-events: none;
    opacity: 0.5;
}

.burlap-corner {
    position: absolute;
    width: 50px;
    height: 50px;
    background:
        radial-gradient(circle at center, var(--wood-light) 0%, var(--wood-medium) 70%, var(--wood-dark) 100%);
    opacity: 0.8;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

.burlap-corner.top-left {
    top: -20px;
    left: -20px;
    border-radius: 50%;
}

.burlap-corner.top-right {
    top: -20px;
    right: -20px;
    border-radius: 50%;
}

.burlap-corner.bottom-left {
    bottom: -20px;
    left: -20px;
    border-radius: 50%;
}

.burlap-corner.bottom-right {
    bottom: -20px;
    right: -20px;
    border-radius: 50%;
}

.flower-accent {
    font-size: 3rem;
    opacity: 0.6;
}

.flower-accent.top {
    margin-bottom: 2rem;
}

.flower-accent.bottom {
    margin-top: 2rem;
}

.invitation p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.couple-names {
    font-family: 'Pacifico', cursive;
    font-size: 3.5rem;
    color: var(--rust);
    margin: 2rem 0;
}

.additional-info {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(139, 115, 85, 0.15);
    border-left: 4px solid var(--rust);
}

.additional-info p {
    font-size: 1rem;
    line-height: 1.8;
    text-align: left;
}

/* Info Cards */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background:
        linear-gradient(to bottom, var(--linen), var(--cream)),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 4px,
            rgba(107, 84, 65, 0.02) 4px,
            rgba(107, 84, 65, 0.02) 8px
        );
    border: 6px solid var(--wood-medium);
    overflow: hidden;
    box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.05),
        0 8px 30px rgba(74, 55, 40, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border: 2px solid rgba(212, 165, 116, 0.3);
    pointer-events: none;
    z-index: 1;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.05),
        0 15px 40px rgba(74, 55, 40, 0.4);
    border-color: var(--wood-dark);
}

.info-card-header {
    background: linear-gradient(135deg, var(--wood-medium), var(--wood-dark));
    padding: 2.5rem;
    text-align: center;
    color: var(--linen);
}

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

.info-card-header h3 {
    font-family: 'Amatic SC', cursive;
    font-size: 2rem;
    font-weight: 700;
}

.info-card-content {
    padding: 2rem;
}

.info-card-content p {
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.highlight {
    font-family: 'Amatic SC', cursive;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--rust);
    margin-bottom: 1.5rem;
}

.map-container {
    margin-top: 1.5rem;
    border: 6px solid var(--wood-medium);
    overflow: hidden;
    box-shadow:
        inset 0 0 10px rgba(74, 55, 40, 0.2),
        0 4px 15px rgba(74, 55, 40, 0.3);
    position: relative;
}

.map-container::before {
    content: '';
    position: absolute;
    inset: 2px;
    border: 2px solid rgba(212, 165, 116, 0.4);
    pointer-events: none;
    z-index: 1;
}

.map-container iframe {
    width: 100%;
    height: 250px;
    border: none;
}

/* Afterparty Card */
.afterparty-card {
    background:
        linear-gradient(to bottom, rgba(250, 247, 242, 0.95), rgba(245, 240, 232, 0.95)),
        repeating-linear-gradient(
            90deg,
            var(--wood-light) 0px,
            var(--wood-medium) 15px,
            var(--wood-dark) 30px,
            var(--wood-medium) 45px,
            var(--wood-light) 60px
        );
    background-size: cover, 60px 100%;
    padding: 3rem;
    text-align: center;
    box-shadow:
        inset 0 0 30px rgba(74, 55, 40, 0.2),
        0 8px 30px rgba(74, 55, 40, 0.3);
    border: 8px double var(--wood-dark);
    position: relative;
}

.afterparty-card::before {
    content: '';
    position: absolute;
    inset: 4px;
    border: 2px dashed var(--rust);
    pointer-events: none;
    opacity: 0.6;
}

.afterparty-card .icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.afterparty-card h3 {
    font-family: 'Amatic SC', cursive;
    font-size: 2.5rem;
    color: var(--wood-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.afterparty-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-top: 1rem;
}

/* Presents */
.presents {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2rem;
}

.presents-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    font-size: 3.5rem;
    flex-wrap: wrap;
}

.presents-icons span {
    transition: transform 0.3s ease;
}

.presents-icons span:hover {
    transform: scale(1.3) rotate(-10deg);
}

.presents p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--charcoal);
}

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

.contact-card {
    background:
        linear-gradient(to bottom, var(--linen), var(--cream)),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 5px,
            rgba(107, 84, 65, 0.02) 5px,
            rgba(107, 84, 65, 0.02) 10px
        );
    padding: 2.5rem 1rem;
    text-align: center;
    box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.05),
        0 8px 30px rgba(74, 55, 40, 0.3);
    transition: all 0.3s ease;
    border: 5px solid var(--wood-medium);
    position: relative;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border: 1px solid rgba(212, 165, 116, 0.3);
    pointer-events: none;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.05),
        0 15px 40px rgba(74, 55, 40, 0.4);
    border-color: var(--wood-dark);
}

.contact-card.bride {
    border-top: 6px solid var(--rust);
}

.contact-card.groom {
    border-top: 6px solid var(--forest-green);
}

.contact-card h4 {
    font-family: 'Amatic SC', cursive;
    font-size: 2.5rem;
    color: var(--wood-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-card .role {
    font-family: 'Amatic SC', cursive;
    font-size: 1.2rem;
    color: var(--rust);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-card p {
    margin: 0.5rem 0;
    word-break: break-word;
    overflow-wrap: break-word;
}

.contact-card a {
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--rust);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--wood-dark), var(--wood-medium));
    color: var(--linen);
    text-align: center;
    padding: 4rem 2rem 2rem;
}

.footer-decoration {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--wheat);
}

.footer-monogram {
    font-family: 'Pacifico', cursive;
    font-size: 3.5rem;
    color: var(--wheat);
    margin-bottom: 1rem;
}

footer p {
    font-family: 'Amatic SC', cursive;
    font-size: 1.3rem;
    line-height: 1.8;
    font-weight: 700;
}

/* Fade-in Animation */
.fade-in {
    animation: fadeIn 1.5s ease-out;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        top: 90px;
    }

    nav ul {
        gap: 1.5rem;
    }

    nav a {
        font-size: 1.1rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .ampersand {
        font-size: 3.5rem;
    }

    .monogram {
        font-size: 2.5rem;
        letter-spacing: 0.2rem;
    }

    .wood-slice {
        width: 180px;
        height: 180px;
    }

    .wood-ring:nth-child(1) {
        width: 140px;
        height: 140px;
    }

    .wood-ring:nth-child(2) {
        width: 105px;
        height: 105px;
    }

    .wood-ring:nth-child(3) {
        width: 70px;
        height: 70px;
    }

    .countdown {
        width: 100vw;
        gap: 1rem;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        flex-direction: row;
    }

    .countdown-separator {
        display: none;
    }

    .countdown-number {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

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

    .invitation {
        padding: 3rem 2rem;
    }

    .couple-names {
        font-size: 2.5rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .lightbox-nav {
        padding: 0.75rem 1rem;
        font-size: 1.5rem;
    }

    .lightbox-nav.prev {
        left: 10px;
    }

    .lightbox-nav.next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 5rem 1rem 3rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .countdown-item {
        padding: 0.75rem 1rem;
        min-width: 35vw;
    }

    .countdown-number {
        font-size: 2rem;
    }

    nav ul {
        gap: 1rem;
    }

    nav a {
        font-size: 1rem;
    }
}
