/* ============================================================
   Party Ever After — Main Stylesheet
   ============================================================ */

/* 1. Custom Properties */
:root {
    --black:      #0a0a0a;
    --dark:       #111111;
    --card:       #1a1a1a;
    --card-hover: #212121;
    --gold:       #C9A96E;
    --gold-light: #E8C97A;
    --gold-dark:  #9A7A4A;
    --gold-glow:  rgba(201, 169, 110, 0.15);
    --white:      #f5f5f5;
    --gray:       #888888;
    --gray-light: #cccccc;
    --border:     rgba(201, 169, 110, 0.2);
    --nav-height: 72px;
    --transition: 0.3s ease;
    --radius:     4px;
    --shadow:     0 8px 40px rgba(0,0,0,0.5);
}

/* 2. Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Montserrat', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.7;
    font-size: 15px;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }
input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* 3. Typography */
h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    font-weight: 600;
}

/* 4. Layout Utilities */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}
.section { padding: 100px 0; }
.section-dark { background: var(--dark); }
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}
.section-title {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--white);
    margin-bottom: 16px;
}
.section-subtitle {
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 15px;
}
.category-label {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 32px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

/* 5. Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: all var(--transition);
    cursor: pointer;
    text-align: center;
}
.btn-gold {
    background: var(--gold);
    color: var(--black);
    border: 2px solid var(--gold);
}
.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,169,110,0.3);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
    border-color: var(--white);
    transform: translateY(-2px);
}
.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}
.btn-outline-gold:hover {
    background: var(--gold-glow);
    transform: translateY(-2px);
}
.btn-full { width: 100%; display: block; }

/* 6. Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
    background: rgba(10,10,10,0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.nav-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
}
.logo-text-fallback {
    display: none;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--gold);
    font-weight: 600;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-link {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-light);
    padding: 8px 12px;
    border-radius: var(--radius);
    transition: color var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-cta {
    background: var(--gold);
    color: var(--black) !important;
    padding: 9px 20px;
    margin-left: 8px;
}
.nav-cta:hover {
    background: var(--gold-light);
    color: var(--black) !important;
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 7. Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at 50% 60%, #1c1405 0%, #0a0a0a 65%);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(201,169,110,0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201,169,110,0.04) 0%, transparent 50%);
    pointer-events: none;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: calc(var(--nav-height) + 40px) 24px 80px;
    max-width: 800px;
}
.hero-logo-wrap {
    margin-bottom: 28px;
}
.hero-logo-img {
    max-height: 220px;
    max-width: 480px;
    margin: 0 auto;
    object-fit: contain;
}
.hero-title-fallback {
    display: none;
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 6vw, 70px);
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 2px;
}
.hero-tagline {
    font-size: clamp(13px, 2vw, 16px);
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}
.hero-sub {
    font-size: clamp(14px, 2vw, 17px);
    color: var(--gray-light);
    margin-bottom: 10px;
    font-weight: 300;
}
.hero-cities {
    font-size: 12px;
    color: var(--gray);
    letter-spacing: 1.5px;
    margin-bottom: 44px;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.1); }
}

/* 8. About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-img-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--card);
    border: 1px solid var(--border);
}
.about-img-wrap.img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 13px;
    letter-spacing: 1px;
}
.about-img-wrap.img-placeholder::after {
    content: 'Photo Coming Soon';
}
.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 16px;
}
.stat {
    background: var(--card);
    padding: 20px 12px;
    text-align: center;
}
.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--gold);
    font-weight: 700;
}
.stat-label {
    display: block;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 4px;
}
.about-content { display: flex; flex-direction: column; gap: 16px; }
.about-content p { color: var(--gray-light); }
.about-content .btn { align-self: flex-start; margin-top: 8px; }

/* 9. Services / Packages */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.package-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.package-card:hover {
    border-color: rgba(201,169,110,0.5);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.pkg-featured {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold), var(--shadow);
}
.pkg-platinum {
    background: linear-gradient(145deg, #1e1a10 0%, #1a1a1a 100%);
    border-color: var(--gold);
}
.pkg-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--card);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
}
.pkg-badge-gold {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}
.pkg-header { display: flex; flex-direction: column; gap: 6px; }
.pkg-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--white);
}
.pkg-price {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--gold);
    font-weight: 700;
}
.pkg-features { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.pkg-features li {
    font-size: 13.5px;
    color: var(--gray-light);
    padding-left: 18px;
    position: relative;
}
.pkg-features li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 11px;
}

/* Events Card */
.events-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.events-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 6px;
}
.events-rate {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: var(--gold);
    font-weight: 700;
}
.events-rate span { font-size: 20px; color: var(--gray); font-weight: 300; }
.events-min { font-size: 12px; color: var(--gray); letter-spacing: 1px; margin-bottom: 12px; }
.events-includes { color: var(--gray-light); font-size: 13.5px; max-width: 480px; margin-bottom: 16px; }
.events-examples {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.events-examples span {
    font-size: 13px;
    color: var(--gray-light);
    background: rgba(201,169,110,0.08);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: 2px;
}
.events-corporate {
    font-size: 12.5px;
    color: var(--gray);
    font-style: italic;
}

/* Enhancements */
.enhancements { margin-top: 4.5rem; }
.enhancements-sub {
    color: var(--gray-light);
    margin-bottom: 32px;
    font-size: 14px;
}
.enhancements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}
.enhance-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: border-color var(--transition);
}
.enhance-card:hover { border-color: rgba(201,169,110,0.4); }
.enhance-icon {
    font-size: 16px;
    color: var(--gold);
    margin-bottom: 10px;
}
.enhance-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    color: var(--white);
    margin-bottom: 6px;
}
.enhance-price {
    font-size: 22px;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 12px;
}
.enhance-card p { font-size: 13px; color: var(--gray); line-height: 1.65; }
.enhancements-note {
    font-size: 12px;
    color: var(--gray);
    font-style: italic;
    padding: 16px;
    border-left: 2px solid var(--border);
}

/* 10. Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.gallery-item {
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.img-placeholder {
    background: var(--card);
    border: 1px dashed var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* 11. Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}
.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}
.testimonial-card::after {
    content: "View on Google \2197";
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 1px;
    opacity: 0.55;
    transition: opacity 0.25s ease;
}
.testimonial-card:hover::after { opacity: 1; }
.t-stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }
.testimonial-card p {
    color: var(--gray-light);
    font-size: 14px;
    line-height: 1.75;
    font-style: italic;
    flex: 1;
}
.t-author { display: flex; flex-direction: column; gap: 3px; }
.t-name { font-weight: 600; color: var(--white); font-size: 13px; }
.t-event { font-size: 11px; color: var(--gray); letter-spacing: 1px; }
.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 8px 20px;
    margin-top: 12px;
}
.stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
.rating-text { font-size: 12px; color: var(--gray-light); font-weight: 500; }
.review-cta { text-align: center; }

/* 12. Mixes */
.mixes-wrap {
    max-width: 700px;
    margin: 0 auto 40px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}
.mix-placeholder {
    background: var(--card);
    padding: 64px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.mix-note { font-size: 48px; color: var(--gold); opacity: 0.4; }
.mix-placeholder p { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--gray-light); }
.mix-placeholder span { font-size: 12px; color: var(--gray); }
.mixes-social { text-align: center; }
.mixes-social p { color: var(--gray); font-size: 13px; margin-bottom: 16px; }
.social-pill-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.social-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--gray-light);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    transition: all var(--transition);
}
.social-pill:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-glow);
}

/* 13. Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: start;
}
.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 28px;
}
.contact-item {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.contact-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}
.contact-item a, .contact-item span {
    font-size: 14px;
    color: var(--gray-light);
}
.contact-item a:hover { color: var(--gold); }
.contact-socials {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.contact-socials a { color: var(--gray-light); font-size: 14px; }
.contact-socials a:hover { color: var(--gold); }
.contact-booking-link { margin-top: 32px; }
.contact-booking-link p { font-size: 13px; color: var(--gray); margin-bottom: 12px; }

/* Form */
.contact-form {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-light);
}
.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    color: var(--white);
    padding: 13px 16px;
    transition: border-color var(--transition);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(201,169,110,0.04);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group select { cursor: pointer; }
.form-group select option { background: #1a1a1a; color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.5) sepia(1) saturate(2) hue-rotate(5deg);
    cursor: pointer;
}

/* 14. Footer */
.footer {
    background: #070707;
    border-top: 1px solid var(--border);
    padding: 72px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 56px;
}
.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
}
.footer-logo-fallback {
    display: none;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 16px;
}
.footer-tagline {
    color: var(--gray-light);
    font-size: 13.5px;
    margin-bottom: 8px;
}
.footer-cities {
    color: var(--gray);
    font-size: 12px;
    line-height: 1.6;
}
.footer-links h5, .footer-social-col h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    font-size: 13.5px;
    color: var(--gray);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-social-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}
.footer-social-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--gray);
    transition: color var(--transition);
}
.footer-social-links a:hover { color: var(--gold); }
.footer-email {
    font-size: 13px;
    color: var(--gray);
    transition: color var(--transition);
    display: block;
}
.footer-email:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
    color: var(--gray);
}
.footer-alias a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* 14b. Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.93);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.lightbox.open { display: flex; }

.lightbox-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 90vw;
    max-height: 88vh;
}
.lightbox-img-wrap img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 8px 48px rgba(0,0,0,0.7);
    user-select: none;
}
.lightbox-close {
    position: absolute;
    top: 18px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 44px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.75;
    transition: opacity 0.2s;
    z-index: 10000;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(201,169,110,0.12);
    border: 1px solid rgba(201,169,110,0.35);
    color: #C9A96E;
    font-size: 52px;
    line-height: 1;
    cursor: pointer;
    padding: 6px 18px;
    border-radius: 4px;
    transition: background 0.2s;
    z-index: 10000;
    user-select: none;
}
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(201,169,110,0.28); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-counter {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    letter-spacing: 1.5px;
    font-family: 'Montserrat', sans-serif;
}
.gallery-item img { cursor: pointer; }
@media (max-width: 600px) {
    .lightbox-prev { left: 6px; padding: 4px 12px; }
    .lightbox-next { right: 6px; padding: 4px 12px; }
}

/* 15. Animations */

/* Content is always visible by default — JS adds .js-animate to body to enable fade-in */
.fade-in { opacity: 1; }

body.js-animate .fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
body.js-animate .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 16. Responsive */
@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-image-col { max-width: 480px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .events-card { flex-direction: column; text-align: center; }
    .events-examples { justify-content: center; }
}
@media (max-width: 768px) {
    .section { padding: 72px 0; }
    .nav-menu {
        display: none;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: rgba(10,10,10,0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-top: 1px solid var(--border);
    }
    .nav-menu.open { display: flex; }
    .nav-link { padding: 12px 16px; font-size: 12px; }
    .nav-cta { margin-left: 0; margin-top: 8px; text-align: center; }
    .nav-toggle { display: flex; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 28px 20px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .packages-grid { grid-template-columns: 1fr; }
    .enhancements-grid { grid-template-columns: 1fr; }
    .events-card { padding: 28px 24px; }
}
@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; align-items: center; }
    .gallery-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(3, 1fr); }
}
