@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&display=swap');

/*
=====================================================================
Paleta principal del sitio público (dark + neón).
=====================================================================
*/
:root {
    --pub-bg: #08080a;
    --pub-bg-soft: #0c0c0f;
    --pub-surface: #121622;
    --pub-text: #ffffff;
    --pub-text-soft: #b7bcc9;
    --pub-border: rgba(255, 255, 255, 0.1);
    --pub-neon-pink: #ff007f;
    --pub-neon-purple: #7b2cbf;
    --pub-neon-cyan: #00f5d4;
    --pub-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/*
=====================================================================
Base visual del home con fondo nocturno atmosférico.
=====================================================================
*/
body.page-home {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--pub-text);
    background:
        radial-gradient(circle at 8% 0%, rgba(255, 0, 127, 0.18), transparent 26%),
        radial-gradient(circle at 92% 10%, rgba(0, 245, 212, 0.1), transparent 25%),
        linear-gradient(180deg, var(--pub-bg) 0%, #090b12 100%);
}

/*
=====================================================================
Header fijo con transición al hacer scroll.
=====================================================================
*/
header {
    background: rgba(8, 8, 10, 0.74);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}

header.is-scrolled {
    background: rgba(8, 8, 10, 0.96);
    border-bottom-color: rgba(255, 0, 127, 0.24);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.nav-container {
    max-width: none;
    width: 100%;
    padding: 0.72rem 0.85rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border-radius: 0.8rem;
    background: linear-gradient(90deg, rgba(10, 4, 14, 0.45) 0%, rgba(8, 8, 10, 0.3) 45%, rgba(18, 12, 22, 0.45) 100%);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.05rem;
    font-size: clamp(1.6rem, 2vw, 2rem);
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: none;
    white-space: nowrap;
    line-height: 1;
    margin-right: 0;
}

.logo-main {
    color: #ffffff;
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.18);
}

.logo-accent {
    color: var(--pub-neon-pink);
    text-shadow: 0 0 18px rgba(255, 0, 127, 0.55);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
    position: relative;
    font-size: 1.03rem;
    font-weight: 700;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, var(--pub-neon-pink), var(--pub-neon-cyan));
    transition: transform 0.25s ease;
}

.nav-menu a:hover::after {
    transform: scaleX(1);
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-left: auto;
    padding-right: 0;
}

.nav-actions-desktop {
    display: none;
    align-items: center;
    gap: 0.6rem;
}

@media (min-width: 769px) {
    .nav-actions-desktop {
        display: inline-flex;
    }
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border-radius: 999px;
    border: 2px solid rgba(123, 44, 191, 0.9);
    padding: 0.55rem 1.2rem;
    color: #fff;
    background: rgba(123, 44, 191, 0.12);
    font-weight: 800;
    transition: all 0.25s ease;
}

.btn-nav:hover {
    background: rgba(123, 44, 191, 0.24);
    border-color: rgba(255, 0, 127, 0.9);
    box-shadow: 0 0 26px rgba(255, 0, 127, 0.3);
    color: #fff;
}

.nav-social-icons {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    margin-right: 0;
}

.social-icon {
    width: 2.05rem;
    height: 2.05rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    transition: all 0.2s ease;
}

.social-icon:hover {
    color: #fff;
    border-color: rgba(255, 0, 127, 0.55);
    background: rgba(255, 0, 127, 0.22);
    transform: translateY(-2px);
}

.nav-admin-link {
    width: 2.3rem;
    height: 2.3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0;
    border: 1px solid rgba(255, 0, 127, 0.26);
    background: rgba(255, 0, 127, 0.09);
    color: #fff;
    transition: all 0.25s ease;
}

.nav-admin-link:hover {
    border-color: rgba(255, 0, 127, 0.7);
    background: rgba(255, 0, 127, 0.25);
    box-shadow: 0 0 22px rgba(255, 0, 127, 0.35);
    color: #fff;
}

.menu-toggle {
    display: none;
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 0.55rem;
    background: rgba(255, 255, 255, 0.06);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.24rem;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 1rem;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    display: block;
    opacity: 1;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-only-link {
    display: none;
}

.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 1200px) {
    .nav-menu {
        gap: 0.85rem;
    }

    .nav-menu a {
        font-size: 0.95rem;
    }

    .btn-nav {
        padding: 0.5rem 0.95rem;
    }
}

/*
=====================================================================
Hero principal - IMPACTANTE con colores fuchsia neón prominentes.
=====================================================================
*/
@keyframes glow-pulse-hero {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(255, 0, 127, 0.4),
            0 0 40px rgba(255, 0, 127, 0.2),
            inset 0 0 20px rgba(255, 0, 127, 0.1);
    }
    50% {
        box-shadow: 
            0 0 40px rgba(255, 0, 127, 0.6),
            0 0 80px rgba(255, 0, 127, 0.3),
            inset 0 0 30px rgba(255, 0, 127, 0.15);
    }
}

@keyframes slide-up-fade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 6.2rem 1rem 2.6rem;
    position: relative;
}

.video-overlay {
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 0, 127, 0.15), transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 245, 212, 0.08), transparent 40%),
        linear-gradient(180deg, rgba(8, 8, 10, 0.25) 0%, rgba(8, 8, 10, 0.65) 40%, rgba(0, 0, 0, 0.95) 100%);
}

.hero-content {
    max-width: 900px;
    border-radius: 1.8rem;
    border: 2px solid rgba(255, 0, 127, 0.35);
    background: 
        linear-gradient(135deg, 
            rgba(12, 12, 15, 0.75) 0%, 
            rgba(20, 8, 25, 0.5) 50%, 
            rgba(12, 12, 15, 0.75) 100%);
    backdrop-filter: blur(12px);
    box-shadow: 
        0 0 60px rgba(255, 0, 127, 0.2),
        0 0 30px rgba(123, 44, 191, 0.15),
        0 30px 60px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    padding: 3rem;
    animation: glow-pulse-hero 6s ease-in-out infinite;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1.4rem;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    color: var(--pub-neon-pink);
    border: 1.5px solid rgba(255, 0, 127, 0.5);
    background: rgba(255, 0, 127, 0.12);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.15);
    animation: slide-up-fade 0.8s ease-out;
}

.hero-content h1 {
    font-size: clamp(2.8rem, 8vw, 5.8rem);
    margin-bottom: 0.8rem;
    line-height: 0.95;
    background: linear-gradient(135deg, 
        #ff007f 0%, 
        #ff3fa0 30%, 
        #ff007f 60%, 
        #7b2cbf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 0, 127, 0.4);
    font-weight: 900;
    letter-spacing: -0.02em;
    animation: slide-up-fade 0.9s ease-out 0.1s backwards;
}

.hero-content p {
    color: var(--pub-text-soft);
    max-width: 680px;
    margin: 0 auto 1.8rem;
    font-size: 1.1rem;
    line-height: 1.7;
    animation: slide-up-fade 1s ease-out 0.2s backwards;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    animation: slide-up-fade 1.1s ease-out 0.3s backwards;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pub-neon-pink), var(--pub-neon-purple));
    border-radius: 999px;
    border: 0;
    color: #fff;
    padding: 1rem 1.8rem;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.05em;
    box-shadow: 
        0 0 30px rgba(255, 0, 127, 0.4),
        0 12px 30px rgba(255, 0, 127, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 0 50px rgba(255, 0, 127, 0.6),
        0 20px 40px rgba(255, 0, 127, 0.4);
}

.btn-secondary-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 2px solid rgba(255, 0, 127, 0.4);
    padding: 0.95rem 1.6rem;
    color: #fff;
    background: rgba(255, 0, 127, 0.08);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.15);
}

.btn-secondary-ghost:hover {
    background: rgba(255, 0, 127, 0.18);
    border-color: rgba(255, 0, 127, 0.7);
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(255, 0, 127, 0.3);
    color: #fff;
}

/*
=====================================================================
Secciones principales de contenido público - MEJORADO.
=====================================================================
*/
.cartelera-section,
.gallery-section {
    padding: 6rem 0;
}

.cartelera-section {
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 0, 127, 0.12), transparent 40%),
        linear-gradient(180deg, #090a10 0%, #0c0f18 100%);
}

.gallery-section {
    background: 
        radial-gradient(circle at 90% 10%, rgba(0, 245, 212, 0.08), transparent 35%),
        linear-gradient(180deg, #0c0f18 0%, #090b12 100%);
}

.cartelera-title,
.gallery-title {
    text-align: center;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.cartelera-title span,
.gallery-title span {
    background: linear-gradient(135deg, 
        #ff007f 0%, 
        #ff3fa0 40%, 
        #7b2cbf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 0, 127, 0.4));
}

.cartelera-subtitle,
.gallery-subtitle {
    text-align: center;
    color: var(--pub-text-soft);
    margin: 0 auto 2.8rem;
    max-width: 700px;
    font-size: 1.05rem;
    line-height: 1.6;
}

/*
=====================================================================
Tarjeta de evento estilo flyer + bloque inferior legible.
=====================================================================
*/
.card-evento {
    border-radius: 1.7rem;
    background: #022033;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.72rem;
    height: auto;
    max-width: 360px;
    margin: 0 auto;
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-evento:hover {
    transform: translateY(-7px);
    box-shadow: 0 35px 55px rgba(187, 111, 111, 0.45), 0 0 28px rgba(225, 0, 255, 0.25);
}

.card-evento-poster-wrap {
    position: relative;
    border-radius: 1.3rem;
    overflow: hidden;
}

.card-evento-poster {
    width: 100%;
    aspect-ratio: 4 / 4.7;
    object-fit: cover;
    display: block;
}

.card-evento-poster-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 8, 10, 0) 55%, rgba(8, 8, 10, 0.78) 100%);
}

.card-evento-poster-caption {
    position: absolute;
    left: 0.85rem;
    bottom: 0.75rem;
    z-index: 2;
    font-size: 0.74rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.88);
}

.card-evento-content {
    padding: 1rem 0.6rem 0.35rem;
    text-align: center;
}

.card-evento-date-block {
    margin-bottom: 0.95rem;
    line-height: 1;
}

.card-evento-day {
    display: block;
    font-size: clamp(2.1rem, 4.5vw, 2.55rem);
    font-weight: 900;
    color: #04d1f5;
    letter-spacing: 0.02em;
}

.card-evento-month {
    display: block;
    margin-top: 0.2rem;
    color: #ff1f5e;
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.card-evento-title {
    margin: 0 0 0.35rem;
    font-size: 1.35rem;
    line-height: 1.05;
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
}

.card-evento-desc {
    margin: 0 auto 1rem;
    max-width: 90%;
    color: #04d1f5;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
}

.card-evento-cta {
    display: inline-block;
    width: 100%;
    border-radius: 999px;
    padding: 0.82rem 1rem;
    background: linear-gradient(135deg, #f11548 0%, #c80f3e 100%);
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.card-evento-cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.07);
    color: #ffffff;
}

.no-events {
    padding: 1rem;
    border-radius: 0.8rem;
    border: 1px dashed rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.03);
}

.no-events-note {
    color: var(--pub-neon-cyan);
}

/*
=====================================================================
Galería pública con thumbs fluidos, glow fuchsia y lightbox.
=====================================================================
*/
@keyframes thumb-glow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 0, 127, 0.2), 0 8px 20px rgba(0, 0, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 35px rgba(255, 0, 127, 0.4), 0 8px 20px rgba(0, 0, 0, 0.4);
    }
}

.gallery-thumb-btn {
    display: block;
    width: 100%;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.gallery-thumb-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 1.2rem;
    border: 2px solid rgba(255, 0, 127, 0.25);
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.2), 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}

.gallery-thumb-img:hover {
    transform: translateY(-6px) scale(1.03);
    border-color: rgba(255, 0, 127, 0.6);
    box-shadow: 
        0 0 50px rgba(255, 0, 127, 0.5),
        0 15px 35px rgba(255, 0, 127, 0.2),
        0 8px 20px rgba(0, 0, 0, 0.6);
    animation: thumb-glow 2s ease-in-out;
}

.empty-public-gallery {
    border-radius: 1rem;
    border: 2px dashed rgba(255, 0, 127, 0.3);
    background: rgba(255, 0, 127, 0.05);
    color: var(--pub-text-soft);
    padding: 2rem 1rem;
    text-align: center;
}

.gallery-modal-content {
    position: relative;
    border: 2px solid rgba(255, 0, 127, 0.3);
    background: #050507;
    border-radius: 1.2rem;
}

.gallery-modal-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    z-index: 2;
    background: rgba(255, 0, 127, 0.2);
    border: 1px solid rgba(255, 0, 127, 0.4);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

/*
=====================================================================
Bloques VIP y contacto con tarjetas elegantes.
=====================================================================
*/
.vip-section {
    background: linear-gradient(180deg, #090b12 0%, #0c0f18 100%);
}

.vip-text,
.contact-info,
.contact-map-card {
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: var(--pub-shadow);
    padding: 1.45rem;
}

.vip-image {
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: var(--pub-shadow);
    padding: 1rem;
}

.vip-image img {
    width: 100%;
    min-height: 320px;
    border-radius: 0.85rem;
    object-fit: contain;
    background: rgba(8, 8, 10, 0.75);
}

.contact-grid {
    display: flex !important;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.contact-grid > [class*='col-'] {
    display: flex;
}

.contact-info {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 350px;
    background:
        linear-gradient(145deg, rgba(18, 23, 34, 0.92), rgba(11, 14, 24, 0.92));
}

.contact-info h3 {
    margin-bottom: 1.35rem;
    font-size: clamp(2rem, 2.8vw, 3rem);
    line-height: 1.04;
    letter-spacing: -0.01em;
    font-weight: 900;
}

.contact-info p {
    margin-bottom: 0.9rem;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.6;
}

.contact-line {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-line i {
    margin-top: 0.22rem;
    font-size: 1rem;
    color: #ff2f98;
    filter: drop-shadow(0 0 8px rgba(255, 47, 152, 0.45));
}

.contact-line strong {
    color: #ffffff;
}

.contact-map-card {
    height: 100%;
    width: 100%;
    min-height: 350px;
    border: 1px solid rgba(255, 0, 127, 0.35);
    box-shadow:
        0 22px 45px rgba(0, 0, 0, 0.45),
        0 0 28px rgba(255, 0, 127, 0.22);
    background: rgba(8, 10, 16, 0.8);
}

.contact-map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    aspect-ratio: 16 / 10;
    border: 0;
    border-radius: 0.9rem;
}

@media (min-width: 992px) {
    .contact-grid {
        gap: 2rem 0;
    }

    .contact-info {
        padding: 2rem;
        min-height: 360px;
    }

    .contact-map-card {
        padding: 0.75rem;
        min-height: 360px;
    }

    .contact-map-card iframe {
        min-height: 360px;
    }
}

@media (max-width: 991px) {
    .contact-info {
        min-height: auto;
    }

    .contact-info h3 {
        font-size: clamp(1.8rem, 6.5vw, 2.35rem);
    }

    .contact-map-card {
        min-height: 290px;
    }

    .contact-map-card iframe {
        min-height: 290px;
    }
}

footer {
    background: #06070b;
    color: rgba(255, 255, 255, 0.62);
}

/*
=====================================================================
Ajustes responsive finales para pantallas pequeñas.
=====================================================================
*/
@media (max-width: 768px) {
    .nav-actions-desktop {
        display: none !important;
    }

    .nav-actions-desktop,
    .nav-actions-desktop * {
        display: none !important;
    }

    .nav-container {
        width: 94vw;
        padding: 0.62rem 0.62rem;
        gap: 0.45rem;
        border-radius: 0.6rem;
    }

    .logo {
        margin-right: 0;
        font-size: 1.5rem;
        z-index: 4;
    }

    .nav-right {
        gap: 0.28rem;
        margin-left: auto;
        margin-right: 0.12rem;
        z-index: 4;
    }

    .nav-social-icons {
        gap: 0.22rem;
    }

    .social-icon {
        width: 1.72rem;
        height: 1.72rem;
        font-size: 0.82rem;
    }

    .menu-toggle {
        display: inline-flex;
        z-index: 5;
        margin-left: 0.2rem;
    }

    .menu-toggle .bar {
        width: 18px !important;
        height: 2px !important;
        margin: 0 !important;
        background: #ffffff !important;
        opacity: 1 !important;
    }

    .nav-menu {
        position: fixed;
        left: 50%;
        top: 5.1rem !important;
        transform: translateX(-50%) translateY(-16px);
        width: min(92vw, 460px);
        border-radius: 0.95rem;
        border: 1px solid rgba(236, 17, 17, 0.16);
        background: rgba(7, 8, 12, 0.96);
        box-shadow: 0 18px 34px rgba(0, 0, 0, 0.45);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.18rem;
        padding: 0.6rem;
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
        z-index: 3;
    }

    .nav-menu.active {
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
        top: 5.1rem !important;
    }

    .nav-menu a {
        padding: 0.64rem 0.72rem;
        border-radius: 0.6rem;
        background: rgba(255, 255, 255, 0.03);
        font-size: 0.96rem;
    }

    .mobile-only-link {
        display: inline-flex;
        align-items: center;
        gap: 0.55rem;
        justify-content: center;
        margin-top: 0.3rem;
        border: 1px solid rgba(255, 0, 127, 0.5);
        background: rgba(255, 0, 127, 0.15) !important;
        color: #ffffff !important;
        font-weight: 800;
    }

    .hero {
        min-height: 92svh;
        padding: 5.8rem 0.65rem 2rem;
    }

    .hero-content {
        padding: 1.6rem 1.05rem;
    }

    .hero-content h1 {
        font-size: clamp(2.4rem, 11vw, 4rem);
    }

    .nav-menu a::after {
        display: none;
    }

    .gallery-thumb-img {
        height: 190px;
    }

    .contact-map-card iframe {
        min-height: 250px;
        aspect-ratio: 4 / 3;
    }

    .contact-info,
    .contact-map-card {
        min-height: auto;
    }

    .contact-grid > [class*='col-'] {
        display: block;
    }

    .contact-grid {
        display: block;
    }

}
