/* ============================================================
   ESTILOS GLOBALES - MARCA LIL STUART 
   ============================================================ */
:root {
    --azul-vibrante: #007bb6;
    --azul-noche: #050a19;
    --negro-puro: #000000;
    --blanco: #ffffff;
}

body {
    background-color: var(--negro-puro);
    color: var(--blanco);
    font-family: 'Montserrat', sans-serif; 
    overflow-x: hidden;
}

/* Tipografía de marca: Negrita extrema e itálica */
.italic {
    font-style: italic;
}

.fw-black {
    font-weight: 900 !important;
}

.text-blue {
    color: var(--azul-vibrante);
}

/* ============================================================
   NAVBAR - ESTILO MINIMALISTA
   ============================================================ */
.custom-navbar {
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link {
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--azul-vibrante) !important;
}

/* --- ESTILO BOTÓN CONTRATACIONES --- */
.btn-booking {
    background-color: var(--azul-vibrante) !important; /* Azul de tu marca */
    color: white !important;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s ease-in-out;
    border: 2px solid transparent;
    display: inline-block; 
}

.btn-booking:hover {
    background-color: #005f8d !important; /* Un azul más oscuro al pasar el mouse */
    box-shadow: 0 0 15px rgba(0, 123, 182, 0.5); /* Resplandor neón */
    transform: translateY(-2px);
}

/* Ajuste para que en móviles no ocupe todo el ancho si no quieres */
@media (max-width: 991px) {
    .btn-booking {
        margin-top: 10px;
        margin-bottom: 10px;
        width: auto;
        display: inline-block;
    }
}

/* ============================================================
   SECCIÓN INICIO (NUEVA BIO CON FONDO CIUDAD)
   ============================================================ */

.main-hero-bio {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center; /* Centrado vertical */
    justify-content: center; /* Centrado horizontal */
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), 
                url('assets/ciudad.png'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0; /* Padding arriba y abajo para que no toque los bordes en móvil */
}

/* --- IMAGEN PROPORCIONAL Y ADAPTABLE --- */
.bio-img-container {
    border: 3px solid var(--azul-vibrante);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0, 123, 182, 0.4);
    
    /* Control de tamaño */
    max-width: 320px; /* Tamaño ideal para PC */
    margin: 0 auto; /* Centra el contenedor en su columna */
    transition: transform 0.3s ease;
}

/* Ajuste específico para móviles */
@media (max-width: 768px) {
    .bio-img-container {
        max-width: 250px; /* Un poco más pequeña en móviles */
    }
    
    .main-hero-bio h1 {
        font-size: 2.5rem; /* Evita que el título se desborde en pantallas pequeñas */
    }
}
/* ============================================================
   SECCIÓN VIDEOS - MARCO PREMIUM
   ============================================================ */
#videos {
    background-color: var(--azul-noche);
    padding: 80px 0;
}

.video-frame-container {
    position: relative;
    padding: 15px; /* Espacio para que respire el neón */
    background: linear-gradient(45deg, rgba(0, 119, 182, 0.1), transparent);
    border-radius: 20px;
}

.video-display {
    border: 2px solid var(--azul-vibrante);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.shadow-neon {
    box-shadow: 0 0 20px rgba(0, 119, 182, 0.3);
}

.video-frame-container:hover .video-display {
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(0, 119, 182, 0.6);
}

/* ============================================================
   GALERÍA - COLLAGE DINÁMICO (MASONRY)
   ============================================================ */
#galeria {
    background-color: var(--negro-puro);
}

.gallery-container-custom {
    column-count: 3; /* Collage de 3 columnas */
    column-gap: 15px;
    width: 100%;
}

@media (max-width: 992px) { .gallery-container-custom { column-count: 2; } }
@media (max-width: 600px) { .gallery-container-custom { column-count: 1; } }

.gallery-item {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    break-inside: avoid; /* Evita que la foto se corte entre columnas */
    transition: transform 0.3s ease;
}

.gallery-img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(30%) brightness(0.9);
    transition: all 0.5s ease;
}

/* Overlay inferior que sube en hover */
.gallery-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
}

.gallery-item:hover .gallery-overlay-bottom {
    transform: translateY(0);
}

.gallery-item:hover .gallery-img {
    filter: grayscale(0%) brightness(1.1);
    transform: scale(1.05);
}

/* ============================================================
   BOTONES Y COMPONENTES ADICIONALES
   ============================================================ */
.btn-primary-urban {
    background-color: var(--azul-vibrante);
    color: white;
    border: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary-urban:hover {
    background-color: #005f8d;
    box-shadow: 0 0 20px rgba(0, 123, 182, 0.5);
    transform: translateY(-2px);
    color: white;
}

/* Botón Ver Más de la Galería */
.btn-outline-blue {
    color: var(--azul-vibrante);
    border: 2px solid var(--azul-vibrante);
    background: transparent;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-blue:hover {
    background: var(--azul-vibrante);
    color: white;
    box-shadow: 0 0 15px rgba(0, 123, 182, 0.3);
}

/* Animación para fotos nuevas en el collage */
.show-item {
    animation: fadeIn 0.6s ease forwards;
}

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