/* Classic White Wedding - Zofia & Michał */

:root {
    --white: #FFFFFF;
    --ivory: #FEFDFB;
    --cream: #FAF8F5;
    --champagne: #F5F0E8;
    --blush: #F7F3EF;
    --pearl: #EDE8E3;
    --soft-gold: #C9A876;
    --gold-accent: #B8956A;
    --warm-beige: #E8DDD0;
    --charcoal: #3D3D3D;
}

* {
    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: 'Raleway', sans-serif;
    background-color: var(--cream);
    color: var(--charcoal);
    line-height: 1.8;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: sticky;
    top: 56px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.2rem 2rem;
    z-index: 999;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

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

nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal);
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
}

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

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

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(135deg, var(--white) 0%, var(--ivory) 40%, var(--blush) 100%);
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(201, 168, 118, 0.04), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(237, 232, 227, 0.3), transparent 50%);
    pointer-events: none;
}

.pearl-decoration {
    position: absolute;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle at 30% 30%, var(--white), var(--pearl));
    border-radius: 50%;
    box-shadow:
        0 0 12px rgba(237, 232, 227, 0.8),
        inset -2px -2px 4px rgba(0, 0, 0, 0.08);
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
}

.pearl-1 {
    top: 20%;
    left: 15%;
}

.pearl-2 {
    top: 30%;
    right: 20%;
    animation-delay: 2s;
}

.pearl-3 {
    bottom: 25%;
    left: 25%;
    animation-delay: 4s;
}

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

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

.monogram-circle {
    width: 220px;
    height: 220px;
    border: 2px solid var(--soft-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(201, 168, 118, 0.12);
}

.monogram-circle::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid var(--gold-accent);
    border-radius: 50%;
}

.monogram-inner {
    font-family: 'Great Vibes', cursive;
    font-size: 3.2rem;
    color: var(--soft-gold);
    letter-spacing: 0.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 2rem;
    letter-spacing: 3px;
}

.ampersand {
    font-family: 'Great Vibes', cursive;
    font-size: 4.5rem;
    color: var(--soft-gold);
    margin: 0 1.5rem;
    display: inline-block;
}

.elegant-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem auto;
}

.elegant-line .line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--soft-gold), transparent);
}

.elegant-line .diamond {
    color: var(--soft-gold);
    font-size: 0.8rem;
}

.wedding-date {
    font-size: 1rem;
    color: var(--charcoal);
    margin: 2rem 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

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

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(201, 168, 118, 0.12);
    border: 1px solid var(--pearl);
    min-width: 100px;
}

.countdown-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--soft-gold);
    line-height: 1;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.countdown-number.flip {
    transform: scale(1.15);
}

.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--charcoal);
    font-weight: 500;
}

.countdown-date {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--charcoal);
    font-weight: 500;
    letter-spacing: 2px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
}

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

.scroll-arrow {
    width: 30px;
    height: 30px;
    color: var(--soft-gold);
    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: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    color: var(--charcoal);
    margin-bottom: 4rem;
    font-weight: 400;
    letter-spacing: 2px;
    position: relative;
}

.section-title::after {
    content: '◆';
    display: block;
    font-size: 0.8rem;
    color: var(--soft-gold);
    margin-top: 1rem;
}

/* Decorative Divider */
.decorative-divider {
    text-align: center;
    padding: 3rem 2rem;
    overflow: hidden;
}

.decorative-divider img {
    width: 100%;
    max-width: 600px;
    height: auto;
    opacity: 0.3;
    color: var(--soft-gold);
}

@media (max-width: 768px) {
    .decorative-divider {
        padding: 2rem 1rem;
    }

    .decorative-divider img {
        max-width: 400px;
    }
}

/* Gallery */
.gallery-section {
    background: var(--champagne);
    border-radius: 8px;
    margin: 2rem auto;
    max-width: 1200px;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: 0 8px 30px rgba(201, 168, 118, 0.15);
    transition: all 0.4s ease;
    background: var(--white);
    padding: 15px;
    border-radius: 8px;
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 118, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(201, 168, 118, 0.25);
}

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

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

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.97);
    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;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    background: var(--white);
    color: var(--charcoal);
    border: 1px solid var(--pearl);
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    z-index: 2001;
}

.lightbox-close:hover,
.lightbox-nav:hover {
    background: var(--soft-gold);
    color: var(--white);
    border-color: var(--soft-gold);
    transform: scale(1.05);
}

.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: var(--white);
    color: var(--charcoal);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border: 1px solid var(--pearl);
}

/* Invitation */
.invitation {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 5rem 4rem;
    background: var(--white);
    box-shadow: 0 10px 50px rgba(201, 168, 118, 0.15);
    position: relative;
    border-radius: 8px;
}

.invitation-border {
    position: absolute;
    inset: 20px;
    border: 1px solid var(--soft-gold);
    pointer-events: none;
}

.invitation-border::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid var(--champagne);
}

.invitation-opening {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--charcoal);
    font-style: italic;
}

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

.couple-names {
    font-family: 'Great Vibes', cursive;
    font-size: 4rem;
    color: var(--soft-gold);
    margin: 2.5rem 0;
}

.rsvp-info {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--champagne);
    border-top: 2px solid var(--soft-gold);
    border-bottom: 2px solid var(--soft-gold);
}

.rsvp-info p {
    font-size: 0.95rem;
}

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

.info-card {
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(201, 168, 118, 0.15);
    transition: all 0.3s ease;
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 8px;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(201, 168, 118, 0.25);
}

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

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

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

.highlight {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--soft-gold);
    margin-bottom: 1.5rem;
}

.map-container {
    margin-top: 2rem;
    border: 1px solid var(--pearl);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(201, 168, 118, 0.12);
    border-radius: 8px;
}

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

/* Timeline */
.timeline {
    max-width: 600px;
    margin: 4rem auto 0;
    padding: 3rem;
    background: var(--white);
    box-shadow: 0 8px 30px rgba(201, 168, 118, 0.15);
    border-radius: 8px;
}

.timeline h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    text-align: center;
    color: var(--charcoal);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--champagne);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-time {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--soft-gold);
    min-width: 80px;
}

.timeline-content {
    font-size: 1rem;
    color: var(--charcoal);
}

/* Presents */
.presents-section {
    background: var(--blush);
    border-radius: 8px;
    margin: 2rem auto;
    max-width: 1200px;
}

.presents {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 3rem;
    background: var(--white);
    box-shadow: 0 8px 30px rgba(201, 168, 118, 0.15);
    border-radius: 8px;
}

.present-icon {
    font-size: 4rem;
    margin: 2rem 0;
}

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

/* Table Plan */
.tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.table-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--champagne);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.table-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--soft-gold);
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--blush);
}

.guest-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guest-list li {
    padding: 0.5rem 0;
    color: var(--charcoal);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--champagne);
}

.guest-list li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .tables-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1.5rem;
    }

    .table-card {
        padding: 1.5rem;
    }
}

/* RSVP Form */
.rsvp-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
}

.rsvp-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 2rem;
    font-style: italic;
}

.rsvp-form {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--champagne);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    font-family: 'Playfair Display', serif;
    color: var(--soft-gold);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--champagne);
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--charcoal);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--soft-gold);
}

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

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--charcoal);
}

.radio-label input[type="radio"] {
    margin-right: 0.75rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--soft-gold) 0%, var(--blush) 100%);
    color: white;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(212, 175, 55, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .rsvp-container {
        padding: 1rem;
    }

    .rsvp-form {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

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

.contact-card {
    background: var(--white);
    padding: 3rem 1rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(201, 168, 118, 0.15);
    transition: all 0.3s ease;
    border-top: 3px solid var(--pearl);
    border-radius: 8px;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(201, 168, 118, 0.25);
}

.contact-card.bride {
    border-top-color: var(--soft-gold);
}

.contact-card.groom {
    border-top-color: var(--gold-accent);
}

.contact-initial {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--champagne);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--soft-gold);
    border: 2px solid var(--pearl);
}

.contact-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-card .role {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--soft-gold);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.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(--soft-gold);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--champagne), var(--warm-beige));
    color: var(--charcoal);
    text-align: center;
    padding: 4rem 2rem 2rem;
}

.footer-monogram {
    font-family: 'Great Vibes', cursive;
    font-size: 4rem;
    color: var(--soft-gold);
    margin-bottom: 1rem;
}

.footer-names {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 1rem 0;
    font-weight: 500;
}

.footer-date {
    margin-top: 1.5rem;
    opacity: 0.7;
    letter-spacing: 2px;
}

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

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

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

    nav ul {
        gap: 1.5rem;
    }

    nav a {
        font-size: 0.8rem;
    }

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

    .ampersand {
        font-size: 2.8rem;
    }

    .monogram-circle {
        width: 160px;
        height: 160px;
    }

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

    .countdown {
        width: 100vw;
        gap: 0.5rem;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        padding: 0 10px;
        flex-wrap: nowrap;
        z-index: 100;
    }

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

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

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

    .invitation {
        padding: 3rem 2rem;
    }

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

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

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

    .timeline {
        padding: 2rem;
    }

    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}

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

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

    .countdown-item {
        padding: 1rem 1.5rem;
        min-width: 80px;
    }

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