:root {
    --color-bg: #0a0a0a;
    --color-card: #1a1a1a;
    --color-text: #ffffff;
    --color-text-dim: #b3b3b3;
    --color-primary: #FF007F; /* Magenta Neón */
    --color-secondary: #00FFC0; /* Verde Cian */
    --gradient-main: linear-gradient(135deg, var(--color-primary), #9900ff);
    --nav-height: 70px;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    padding-top: var(--nav-height); /* Espacio para el navbar fijo */
}

/* --- NAVIGATION BAR (PUBLIC) --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    z-index: 1000;
    box-sizing: border-box;
}

.nav-brand {
    font-weight: 900;
    font-size: 1.5rem;
    text-transform: uppercase;
    text-decoration: none;
    color: white;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-item {
    color: var(--color-text-dim);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-item:hover, .nav-item.active {
    color: var(--color-secondary);
    text-shadow: 0 0 10px rgba(0, 255, 192, 0.4);
}

.btn-reservar-nav {
    background: var(--color-primary);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: transform 0.2s;
}

.btn-reservar-nav:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.5);
}

.admin-toggle {
    background: none;
    border: 1px solid #333;
    color: #555;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
    transition: all 0.3s;
}

.admin-toggle:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.bar { width: 25px; height: 3px; background-color: white; transition: 0.3s; }

/* --- ADMIN SIDEBAR (PRIVATE) --- */
.admin-sidebar {
    position: fixed;
    top: 0;
    right: -300px; /* Oculto por defecto */
    width: 300px;
    height: 100vh;
    background: #111;
    border-left: 1px solid var(--color-primary);
    z-index: 2000;
    transition: right 0.3s ease-in-out;
    padding: 2rem;
    box-shadow: -10px 0 30px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
}

.admin-sidebar.open {
    right: 0;
}

.admin-header {
    border-bottom: 1px solid #333;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-title {
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.admin-menu-item {
    display: block;
    padding: 1rem;
    color: #ccc;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: background 0.2s;
    border-left: 3px solid transparent;
}

.admin-menu-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-left-color: var(--color-primary);
}

.admin-section-label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1500;
    display: none;
}
.overlay.show { display: block; }

/* --- HERO SECTION --- */
.hero {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: radial-gradient(circle at 50% 50%, #1a0b1a 0%, var(--color-bg) 70%);
    position: relative;
}

.brand-logo {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 0.9;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.text-hiper { color: white; }
.text-escape { color: var(--color-primary); text-shadow: 0 0 15px rgba(255, 0, 127, 0.5); }
.accent-lock { color: var(--color-secondary); }

.tagline {
    font-size: 1.2rem;
    color: var(--color-secondary);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.cta-button {
    background: var(--gradient-main);
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.4);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 3rem;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 0, 127, 0.6);
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    animation: bounce 2s infinite;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* --- ZONES GRID --- */
.zones-container {
    padding: 2rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, #fff, var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.card {
    background: var(--color-card);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid #333;
    transition: transform 0.3s;
    position: relative;
}

.card:hover {
    border-color: var(--color-secondary);
    transform: translateY(-5px);
}

.card-img-placeholder {
    height: 200px;
    width: 100%;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #555;
    background-size: cover;
    background-position: center;
}

/* Estilos específicos para placeholders de imágenes */
.img-hp { background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1551269901-5c5e14c25df7?auto=format&fit=crop&q=80'); }
.img-st { background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1626265774643-f1943311a86b?auto=format&fit=crop&q=80'); }
.img-vr { background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1622979135228-d387755869a7?auto=format&fit=crop&q=80'); }
.img-cafe { background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1511920170033-f8396924c348?auto=format&fit=crop&q=80'); }

.card-content {
    padding: 1.5rem;
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-primary);
    color: white;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.card-title {
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
    color: white;
}

.card-desc {
    color: var(--color-text-dim);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.card-btn {
    display: block;
    width: 100%;
    padding: 0.8rem;
    text-align: center;
    background: transparent;
    border: 2px solid var(--color-secondary);
    color: var(--color-secondary);
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
}

.card-btn:hover {
    background: var(--color-secondary);
    color: black;
}

/* --- FOOTER --- */
.footer {
    background: #000;
    padding: 3rem 1.5rem;
    text-align: center;
    border-top: 1px solid #222;
}

.footer-info p {
    margin: 0.5rem 0;
    color: var(--color-text-dim);
}

.highlight { color: var(--color-secondary); }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* MEDIA QUERIES */
@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: #0a0a0a;
        flex-direction: column;
        padding: 2rem 0;
        border-bottom: 1px solid #333;
    }

    .nav-links.mobile-open {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }
}

@media (min-width: 768px) {
    .zones-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .hero { min-height: 90vh; }
    .brand-logo { font-size: 5rem; }
}
.text-escape { color: var(--color-primary); text-shadow: 0 0 15px rgba(255, 0, 127, 0.5); }
.accent-lock { color: var(--color-secondary); }

.tagline {
    font-size: 1.2rem;
    color: var(--color-secondary);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.cta-button {
    background: var(--gradient-main);
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.4);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 3rem;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 0, 127, 0.6);
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    animation: bounce 2s infinite;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* --- ZONES GRID --- */
.zones-container {
    padding: 2rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    color: var(--color-text);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, #fff, var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.card {
    background: var(--color-card);
    color: var(--color-text);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid #333;
    transition: transform 0.3s;
    position: relative;
}


.card:hover {
    border-color: var(--color-secondary);
    transform: translateY(-5px);
}

.card-img-placeholder {
    height: 200px;
    width: 100%;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #555;
    background-size: cover;
    background-position: center;
}

/* Estilos específicos para placeholders de imágenes */
.img-hp { background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1551269901-5c5e14c25df7?auto=format&fit=crop&q=80'); }
.img-st { background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1626265774643-f1943311a86b?auto=format&fit=crop&q=80'); }
.img-vr { background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1622979135228-d387755869a7?auto=format&fit=crop&q=80'); }
.img-cafe { background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1511920170033-f8396924c348?auto=format&fit=crop&q=80'); }

.card-content {
    padding: 1.5rem;
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-primary);
    color: white;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.card-title {
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
    color: white;
}

.card-desc {
    color: var(--color-text-dim);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.card-btn {
    display: block;
    width: 100%;
    padding: 0.8rem;
    text-align: center;
    background: transparent;
    border: 2px solid var(--color-secondary);
    color: var(--color-secondary);
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
}

.card-btn:hover {
    background: var(--color-secondary);
    color: black;
}

/* --- FOOTER --- */
.footer {
    background: #000;
    padding: 3rem 1.5rem;
    text-align: center;
    border-top: 1px solid #222;
}

.footer-info p {
    margin: 0.5rem 0;
    color: var(--color-text-dim);
}

.highlight { color: var(--color-secondary); }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* Tablet/Desktop Tweaks */
@media (min-width: 768px) {
    .zones-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .hero { min-height: 90vh; }
    .brand-logo { font-size: 5rem; }
}
