/* Variables */
:root {
    --maroon-800: #5e0b15;
    --maroon-900: #42080e;
    --gold-200: #eecf6d;
    --gold-400: #d4af37;
    --gold-600: #b48f1f;
    --temple-50: #fdfbf7;
    --temple-100: #f4f1ea;
    --stone-600: #57534e;
    --stone-700: #44403c;
    --stone-800: #292524;
    --stone-900: #1c1917;

    --font-decorative: 'Cinzel Decorative', cursive;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Lato', sans-serif;
}

/* Reset & Global */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--temple-50);
    color: var(--stone-800);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background-color: var(--maroon-900);
    color: var(--gold-400);
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center { text-align: center; }
.hidden { display: none !important; }

/* Background Pattern */
.bg-pattern {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235e0b15' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

nav.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-decorative);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--maroon-900);
    cursor: pointer;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--maroon-900);
    font-size: 0.875rem;
    transition: color 0.3s;
    min-height: 44px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.nav-links button:hover {
    color: var(--gold-600);
}

.mobile-only { display: none; }

/* Hero Section */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 5rem;
}

.ornate-border {
    position: absolute;
    pointer-events: none;
    border-top-left-radius: 50% 15%;
    border-top-right-radius: 50% 15%;
}

.border-outer {
    inset: 1rem;
    border: 1px solid rgba(94, 11, 21, 0.2);
}

.border-inner {
    inset: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 56rem;
}

.om-symbol img {
    width: 15rem;
    opacity: 2.8;
    margin-bottom: 1rem;
}

.sub-heading {
    font-family: var(--font-serif);
    color: var(--maroon-800);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.main-heading {
    font-family: var(--font-decorative);
    font-size: 3rem;
    line-height: 1.1;
    color: var(--maroon-900);
    margin-bottom: 1.5rem;
}

.main-heading .highlight {
    color: var(--gold-600);
}

.ornament-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
    font-size: 1.5rem;
    margin: 2rem auto;
    max-width: 20rem;
}

.ornament-divider::before,
.ornament-divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid var(--gold-400);
    margin: 0 1rem;
}

.date-display {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--stone-700);
    margin-bottom: 2rem;
}

/* Buttons */
.btn-primary {
    background-color: var(--maroon-900);
    color: white;
    padding: 0.75rem 2rem;
    border: 1px solid var(--gold-400);
    font-family: var(--font-serif);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background-color: white;
    color: var(--maroon-900);
    border-color: var(--maroon-900);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--maroon-900);
    color: var(--maroon-900);
    padding: 0.5rem 1.5rem;
    border-radius: 0.25rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--maroon-900);
    color: white;
}

.btn-outline-sm {
    background: transparent;
    border: 1px solid var(--maroon-900);
    color: var(--maroon-900);
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    text-transform: uppercase;
}

/* Countdown */
#countdown-section {
    padding: 3rem 0;
    background-color: rgba(255,255,255,0.5);
    backdrop-filter: blur(4px);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
}

.countdown-title {
    font-family: var(--font-decorative);
    color: var(--maroon-800);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

#countdown-timer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-start;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 1rem;
}

.time-unit span:first-child {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--maroon-900);
    line-height: 1;
}

.time-unit .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--stone-600);
    margin-top: 0.25rem;
}

.separator {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--gold-400);
    margin-top: -0.25rem;
}

/* Details Section */
#details {
    padding: 5rem 0;
    background-color: var(--maroon-900);
    color: var(--temple-50);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.detail-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.icon-circle {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    border: 2px solid var(--gold-400);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--temple-50);
    transition: all 0.5s;
}

.detail-card:hover .icon-circle {
    background-color: var(--gold-400);
    color: var(--maroon-900);
}

.detail-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--gold-400);
}

.detail-text {
    font-weight: 300;
    font-size: 1.125rem;
    line-height: 1.6;
}

.highlight-gold { color: var(--gold-200); margin-top: 0.5rem; }
.italic-gold { color: var(--gold-200); font-style: italic; }
.large-text { font-size: 1.5rem; margin-bottom: 0.25rem; }
.rsvp-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.875rem;
}
.map-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--gold-400);
    text-decoration: none;
    border-bottom: 1px solid var(--gold-400);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.map-link:hover { color: white; border-color: white; }

/* About Section */
#about { padding: 6rem 0; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.image-wrapper { position: relative; }

.image-frame {
    position: absolute;
    inset: 0;
    border: 5px solid var(--gold-400);
    transform: translate(1rem, 0.6rem);
    border-radius: 0.5rem;
    z-index: 0;
}

.image-wrapper img {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.image-wrapper img:hover { filter: grayscale(0%); }

.section-title {
    font-family: var(--font-decorative);
    font-size: 3rem;
    color: var(--maroon-900);
    margin-bottom: 1rem;
}

.title-underline {
    width: 5rem;
    height: 0.25rem;
    background-color: var(--gold-400);
    margin-bottom: 2rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--stone-700);
}

.subsection-title {
    font-family: var(--font-decorative);
    font-size: 1.5rem;
    color: var(--maroon-900);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.quote {
    font-style: italic;
    color: var(--stone-600);
    margin-bottom: 1rem;
}

/* Program Section */
#program {
    padding: 6rem 0;
    background-color: var(--temple-100);
}

.section-header { text-align: center; margin-bottom: 4rem; }
.section-subtitle { font-family: var(--font-serif); font-style: italic; color: var(--stone-600); }

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.program-card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--gold-400);
    transition: box-shadow 0.3s;
}

.program-card:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }

.card-label {
    color: var(--gold-600);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.program-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--maroon-900);
    margin-bottom: 0.5rem;
}

.program-card .meta {
    font-size: 0.75rem;
    color: var(--stone-600);
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--temple-100);
    margin-bottom: 1rem;
}

.program-card p {
    font-size: 0.875rem;
    color: var(--stone-700);
    margin-bottom: 1rem;
}

.composer {
    text-align: right;
    font-size: 0.75rem;
    font-style: italic;
    color: var(--stone-400);
}

.download-container { text-align: center; margin-top: 3rem; }

* Repertoire Carousel */
#repertoire { padding: 6rem 0; background: var(--maroon-900); color: white; overflow: hidden; }

.carousel-container { position: relative; max-width: 1000px; margin: 4rem auto 0; padding: 0 2rem; }
.carousel-track { display: flex; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.carousel-item { min-width: 100%; opacity: 0.3; transition: opacity 0.6s; }
.carousel-item.active { opacity: 1; }

.carousel-layout { display: grid; grid-template-columns: 400px 1fr; gap: 4rem; align-items: center; }
.carousel-img-wrap { position: relative; transform: rotate(-3deg); transition: 0.5s; }
.carousel-item.active .carousel-img-wrap { transform: rotate(0deg); }
.carousel-img-wrap img { width: 100%; height: 500px; object-fit: cover; border-radius: 0.5rem; border: 8px solid white; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); }
.carousel-img-wrap::after { content: ""; position: absolute; inset: -15px; border: 2px solid var(--gold-400); z-index: -1; transform: rotate(6deg); border-radius: 0.5rem; }

.item-number { font-family: var(--font-decorative); color: var(--gold-400); font-size: 0.9rem; letter-spacing: 0.2em; margin-bottom: 0.5rem; }
.carousel-text h3 { font-family: var(--font-decorative); font-size: 2.5rem; color: var(--gold-200); margin-bottom: 0.5rem; }
.carousel-meta { font-family: var(--font-serif); font-size: 1.1rem; color: var(--gold-400); margin-bottom: 1.5rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(212,175,55,0.3); }
.carousel-text p { font-family: var(--font-serif); font-size: 1.2rem; color: var(--temple-100); line-height: 1.8; margin-bottom: 1.5rem; }
.carousel-composer { font-family: var(--font-serif); font-style: italic; color: var(--gold-600); text-align: right; }

.carousel-controls { position: absolute; top: 50%; width: 100%; display: flex; justify-content: space-between; left: 0; transform: translateY(-50%); pointer-events: none; }
.carousel-controls button { width: 3.5rem; height: 3.5rem; border-radius: 50%; border: 1px solid var(--gold-400); background: rgba(0,0,0,0.5); color: var(--gold-400); cursor: pointer; pointer-events: auto; transition: 0.3s; }
.carousel-controls button:hover { background: var(--gold-400); color: var(--maroon-900); }

/* Orchestra (New) */
#orchestra { padding: 6rem 0; background-color: var(--temple-100); }
.orchestra-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; margin-top: 4rem; }
.musician-card { text-align: center; transition: 0.3s; }
.musician-card:hover { transform: translateY(-10px); }
.niche { width: 140px; height: 140px; margin: 0 auto 1.5rem; border-radius: 50%; overflow: hidden; border: 3px solid var(--gold-400); position: relative; padding: 5px; background: white; display: flex; align-items: center; justify-content: center; }
.niche svg { width: 60%; height: 60%; color: var(--maroon-900); stroke-width: 1.5; }
.musician-card h4 { font-family: var(--font-decorative); color: var(--maroon-900); margin-bottom: 0.25rem; font-size: 1.1rem; }
.musician-card p { font-family: var(--font-serif); color: var(--stone-600); font-style: italic; }

/* Gallery */
#gallery { padding: 6rem 0; }
#gallery .section-title { margin-bottom: 3rem; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1; /* Default square */
}

.gallery-item.large {
    grid-row: span 2;
    aspect-ratio: auto;
}

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

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

/* RSVP Section */
#rsvp,#repertoire {
    padding: 6rem 0;
    background-color: var(--maroon-900);
    position: relative;
    overflow: hidden;
}

.bg-decor {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    border: 20px solid var(--gold-400);
    opacity: 0.1;
}

.bg-decor.left { left: -5rem; top: -5rem; }
.bg-decor.right { right: -5rem; bottom: -5rem; }

.relative-z { position: relative; z-index: 10; }

.rsvp-header { text-align: center; color: var(--temple-50); margin-bottom: 2.5rem; }
.text-light { color: var(--temple-50); }
.subtitle-gold { font-family: var(--font-serif); font-style: italic; color: var(--gold-200); }

.rsvp-card {
    max-width: 42rem;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-top: 4px solid var(--maroon-900);
}

.form-title {
    font-family: var(--font-decorative);
    text-align: center;
    color: var(--maroon-900);
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.form-group { display: flex; flex-direction: column; margin-bottom: 1.5rem; }

.form-group label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--stone-600);
    margin-bottom: 0.5rem;
}

input, select, textarea {
    width: 100%;
    padding: 0.5rem 0;
    border: none;
    border-bottom: 2px solid #e5e7eb;
    background: transparent;
    outline: none;
    font-family: var(--font-sans);
    transition: border-color 0.3s;
    font-size: 1rem;
    min-height: 44px;
}

textarea {
    border: 2px solid #e5e7eb;
    padding: 0.75rem;
    border-radius: 0.375rem;
    resize: none;
    min-height: 100px;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--maroon-900);
}

.form-submit { text-align: center; }

.btn-primary:disabled { opacity: 0.7; cursor: not-allowed; }

/* Success State */
#success-message {
    text-align: center;
    padding: 2rem;
    background-color: var(--temple-100);
    border: 1px solid #bbf7d0;
    border-radius: 0.5rem;
}

.success-icon { color: #16a34a; width: 3rem; height: 3rem; margin-bottom: 1rem; }
#success-message h3 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--maroon-900); margin-bottom: 0.5rem; }
.btn-text { background: none; border: none; text-decoration: underline; color: var(--maroon-800); cursor: pointer; margin-top: 1.5rem; font-size: 0.875rem; }

/* Footer */
footer {
    background-color: var(--stone-900);
    color: var(--stone-600);
    padding: 4rem 0;
    text-align: center;
}

.footer-logo {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1.5rem;
    border: 1px solid var(--stone-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-decorative);
    font-size: 1.25rem;
    color: var(--stone-400);
}

.footer-quote {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: #e7e5e4;
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.875rem;
    font-style: italic;
    max-width: 32rem;
    margin: 0 auto 2rem;
}

.copyright {
    border-top: 1px solid var(--stone-800);
    padding-top: 2rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Floating Buttons */
.fixed-btn {
    position: fixed;
    z-index: 50;
    background-color: var(--maroon-900);
    color: var(--gold-400);
    border: 2px solid var(--gold-400);
    border-radius: 50%;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, opacity 0.3s;
}

.fixed-btn:hover { transform: scale(1.1); }
.fixed-btn button { background: none; border: none; color: inherit; cursor: pointer; display: flex; }

#audio-control { bottom: 1.5rem; right: 1.5rem; }
#scroll-top { bottom: 1.5rem; left: 1.5rem; }
#scroll-top.hidden { opacity: 0; pointer-events: none; transform: translateY(20px); }

/* Responsive */
@media (max-width: 1024px) {
    .main-heading { font-size: 2.5rem; }
    .hero-content { padding: 0 2rem; }
    .section-title { font-size: 2.5rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .desktop-only { display: none; }
    .mobile-only { display: block; }
    
    /* Hero Section */
    .main-heading { font-size: 2rem; }
    .sub-heading { font-size: 0.875rem; }
    .date-display { font-size: 1.125rem; }
    #hero { padding-top: 5rem; min-height: 85vh; }
    
    .ornate-border { display: none; }
    
    /* Navigation */
    .nav-links { margin-left: 0; }
    
    /* Section Titles */
    .section-title { font-size: 2rem; }
    
    /* About Section */
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .image-wrapper {
                /* Fix right side of image frame being cut off on mobile */
                margin-right: 10px;
            }
    .image-wrapper img { height: 400px;  }
    
    /* Details Grid */
    #details .details-grid { 
        grid-template-columns: 1fr; 
        gap: 1.5rem; 
        padding: 0 1rem;
    }
    
    /* Countdown */
    .countdown-title { font-size: 1rem; }
    #countdown-timer { 
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        flex-direction: row;
        align-items: flex-start;
        gap: 0;
    }
    .time-unit span:first-child { font-size: 1.75rem; }
    .time-unit span:first-child { font-size: 1.5rem; }
    .time-unit { margin: 0 0.5rem; }
    .separator { 
        font-size: 1.75rem; 
        transform: rotate(90deg);
        margin: 0.25rem 0;
        font-size: 1.5rem; 
        transform: none;
        margin: 0;
    }
    
    /* Form */
    .form-row { 
        grid-template-columns: 1fr; 
        gap: 1rem;
    }
    .rsvp-card { padding: 1.5rem; }
    .form-title { font-size: 1.5rem; }
    
    /* Gallery */
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.large { grid-row: span 1; aspect-ratio: 4/3; }
    
    /* Program Section */
    .program-grid { 
        grid-template-columns: 1fr; 
    }
    
    /* Footer */
    footer { padding: 2rem 0; }
    .footer-quote { font-size: 1.25rem; }
    
    /* Buttons */
    .btn-primary {
        padding: 0.65rem 1.5rem;
        font-size: 0.85rem;
    }
    
    /* Container Padding */
    .container { padding: 0 1rem; }
    
    /* Sections */
    #details { padding: 3rem 0; }
    #about { padding: 3rem 0; }
    #program { padding: 3rem 0; }
    #gallery { padding: 3rem 0; }
    #rsvp { padding: 3rem 0; }
    
    /* Fixed Buttons */
    .fixed-btn { width: 3rem; height: 3rem; }

    /* Repertoire Carousel Mobile */
    .carousel-layout { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .carousel-img-wrap { margin: 0 auto; width: 80%; transform: rotate(0deg) !important; }
    .carousel-img-wrap img { height: 350px; }
    .carousel-text h3 { font-size: 2rem; }
    .carousel-composer { text-align: center; }

    /* Orchestra Mobile */
    .orchestra-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem; }
    .niche { width: 100px; height: 100px; }
}

@media (max-width: 480px) {
    /* Extra Small Devices */
    .main-heading { font-size: 1.5rem; }
    .sub-heading { font-size: 0.75rem; }
    .section-title { font-size: 1.5rem; }
    
    /* Navigation */
    .logo { font-size: 1.25rem; }
    .nav-container { padding: 0 1rem; }
    
    /* Hero */
    #hero { 
        padding-top: 4rem;
        min-height: 75vh;
    }
    .om-symbol img { width: 9.5rem; }
    .date-display { font-size: 1rem; }
    
    /* Countdown */
    #countdown-timer { gap: 0.25rem; }
    .time-unit span:first-child { font-size: 1.5rem; }
    .separator { font-size: 1.5rem; }
    .time-unit { margin: 0 0.5rem; }
    
    /* Details */
    .detail-card h3 { font-size: 1.25rem; }
    .detail-text { font-size: 0.95rem; }
    
    /* Form */
    .form-title { font-size: 1.25rem; }
    .rsvp-card { padding: 1.25rem; }
    
    input, select, textarea { font-size: 1rem; }
    
    /* About Section */
    .image-wrapper img { height: 300px; }
    .subsection-title { font-size: 1.25rem; }
    .about-content p { font-size: 0.95rem; }
    
    /* Program Cards */
    .program-card {
        padding: 1.5rem;
    }
    .program-card h3 { font-size: 1.25rem; }
    
    /* Footer */
    .footer-quote { font-size: 1rem; }
    .footer-desc { font-size: 0.8rem; }
    
    /* Buttons */
    .btn-primary { padding: 0.6rem 1.25rem; font-size: 0.8rem; }
    .btn-outline-sm { padding: 0.2rem 0.5rem; font-size: 0.65rem; }
    
    /* Container */
    .container { padding: 0 0.75rem; }
    
    /* Background decorations */
    .bg-decor { 
        width: 15rem;
        height: 15rem;
        border-width: 12px;
    }
    .bg-decor.left { left: -3rem; top: -3rem; }
    .bg-decor.right { right: -3rem; bottom: -3rem; }
    
    /* Icon circles */
    .icon-circle { width: 3.5rem; height: 3.5rem; }
}