/* ==========================
   VARIABLES DE COLOR
========================== */
:root {
    --fuchsia: #d300e0;     /* Fucsia para Headings y Detalles */
    --hot-pink: #d300e0;    /* Rosa intenso para hover */
    --light-pink: #FFC0CB;  /* Rosa claro para acentos sutiles */
    --dark-blue: #001524;   /* Color de Fondo de Página */
    --dark-blue-card: #022c46;   /* Color de Fondo de Página */
    --card-background-base: #181835; /* Fondo de card de respaldo */
    --gradient-blue-start: rgba(13, 13, 31, 0.0); /* Inicio del degradado transparente */
    --gradient-blue-end: rgba(13, 13, 31, 0.9);   /* Fin del degradado azul oscuro */
    --white: #FFFFFF;
    --soft-white: #f8f8f8;
}

/* ==========================
   ESTILOS BASE
========================== */
body {
    background-color: var(--dark-blue);
    color: var(--soft-white);
    font-family: 'Arial', sans-serif; 
    margin: 0;
    padding: 0;
}

.fancy-header {
    color: var(--fuchsia); 
    font-weight: 300; 
    letter-spacing: 5px; 
    font-size: 3rem;
    padding-bottom: 0.5rem;
}

/* ==========================
   MODEL CARD
========================== */
.model-card {
    background-color: var(--card-background-base);
    border: 1px solid transparent;
    position: relative; 
    overflow: hidden; 
    transition: border-color 0.3s ease;
    border-radius: 5px; 
    box-shadow: none !important; 
}

.model-card:hover {
    border-color: var(--hot-pink);
    transform: none; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.model-card-img {
    height: 350px;
    object-fit: cover;
    width: 100%;
    display: block;
    filter: brightness(0.8);
    transition: transform 0.4s ease;
    border-radius: 5px;
}

.model-card:hover .model-card-img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%; 
    background: linear-gradient(to top, var(--dark-blue-card) 0%, var(--gradient-blue-end) 50%, var(--gradient-blue-start) 100%);
    pointer-events: none; 
    z-index: 1;
    border-radius: 0 0 5px 5px;
}

.card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    z-index: 2;
    text-align: left;
    color: var(--soft-white);
}

.card-title {
    color: var(--fuchsia);
    font-weight: 600; 
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.card-subtitle {
    color: var(--light-pink); 
    margin-bottom: 0.4rem;
    font-size: 1rem;
    font-weight: 400;
}

.card-text {
    color: var(--soft-white);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
}

/* ==========================
   BOTONES
========================== */
.btn-details {
    background-color: var(--fuchsia); 
    border: 1px solid var(--fuchsia);
    color: var(--dark-blue); 
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 3px; 
    transition: background-color 0.2s, border-color 0.2s, color 0.2s;
    box-shadow: none;
    display: inline-block;
}

.btn-details:hover {
    background-color: var(--hot-pink); 
    border-color: var(--hot-pink);
    transform: none; 
    box-shadow: none;
    color: var(--dark-blue); 
}

.btn-filter {
    background-color: transparent;
    border: 1px solid var(--light-pink);
    color: var(--light-pink);
    transition: background-color 0.2s, border-color 0.2s, color 0.2s;
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    border-radius: 3px; 
    margin: 0.25rem;
    box-shadow: none;
}

.btn-filter:hover {
    background-color: var(--fuchsia);
    border-color: var(--fuchsia);
    color: var(--dark-blue); 
    transform: none; 
    box-shadow: none;
}

.btn-filter.active {
    background-color: var(--fuchsia);
    border-color: var(--fuchsia);
    color: var(--dark-blue);
    font-weight: bold;
    box-shadow: none;
}

.btn-filter.active:hover {
    background-color: var(--fuchsia);
    border-color: var(--fuchsia);
    color: var(--dark-blue);
    transform: none;
}

.text-secondary {
    color: #888 !important;
}

/* ==========================
   FOOTER
========================== */
footer {
    border-color: #333 !important;
    background-color: var(--dark-blue);
}

.detail-footer {
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* ==========================
   DETALLE MODELO - PERFIL
========================== */
.profile-column {
    margin-top: 20px;
    text-align: center;
}

.profile-image-container {
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.profile-image {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-image-container:hover .profile-image {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}

.contact-buttons {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn-contact {
    min-width: 140px;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 5px;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* ==========================
   DETALLE MODELO - COLUMNA DERECHA TARJETA
========================== */
.detail-card {
    background: var(--card-background-base);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 2rem;
}

.detail-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}

.detail-card .detail-title {
    color: var(--fuchsia);
}

.detail-card .description-text {
    color: var(--soft-white);
}

.detail-card .section-subtitle {
    color: var(--light-pink);
    font-weight: 600;
}

.detail-card .detail-list li {
    margin-bottom: 0.6rem;
}

.detail-card .detail-label {
    font-weight: 600;
    color: var(--soft-white);
}

.detail-card .accent-text {
    color: var(--fuchsia);
    font-weight: 600;
}

/* ==========================
   GALERÍA DE FOTOS
========================== */
.gallery-photo {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.gallery-photo:hover {
    transform: scale(1.05);
}

/* ==========================
   VIDEOS
========================== */
.video-container {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    border-radius: 5px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--fuchsia);
    font-size: 2rem;
    pointer-events: none;
}

/* ==========================
   SECCIONES
========================== */
.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--fuchsia);
    margin-bottom: 0.5rem;
}

.section-divider {
    border-color: var(--fuchsia);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* ==========================
   INFO CARDS - DATOS IMPORTANTES
========================== */

.info-card {
    background: var(--card-background-base);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform .2s ease, box-shadow .2s ease;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 1rem;
    min-height: 110px;
    justify-content: flex-start;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(211, 0, 224, 0.25);
}

/* Iconos grandes en fucsia */
.info-icon {
    font-size: 58px;
    color: var(--fuchsia);
    min-width: 58px;
    line-height: 1;
}

/* Título */
.info-title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--soft-white);
}

/* Subtexto */
.info-sub {
    margin: 0;
    font-size: 0.85rem;
    color: var(--light-pink);
    opacity: 0.85;
}


/* ==========================
   RESPONSIVE – INFO CARDS
========================== */

/* Móviles (pantallas menores a 576px) */
@media (max-width: 576px) {
    .info-icon {
        font-size: 30px !important;
        min-width: 30px !important;
    }

    .info-title {
        font-size: 1.1rem !important;
    }

    .info-sub {
        font-size: 0.75rem !important;
    }

    .info-card {
        padding: 0.8rem !important;
    }
}

/* Tablets pequeñas (576px – 768px) */
@media (max-width: 768px) {
    .info-icon {
        font-size: 45px;
        min-width: 45px;
    }

    .info-title {
        font-size: 1.05rem;
    }
}

.btn-header {
    background-color: var(--dark-blue-card) !important; 
}
/* ==========================
   MENU MOBILE
========================== */


/* DESACTIVAR SUBRAYADO SOLO EN DESKTOP */
.desktop-title-link {
    text-decoration: none !important;
}
.desktop-title-link:hover {
    text-decoration: none !important;
}

/* OFFCANVAS CON EFECTO VIDRIO (GLASSMORPHISM) */
.glass-offcanvas {
    background: rgba(10, 10, 10, 0.75) !important;
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animación suave */
.offcanvas {
    transition: transform 0.35s ease-in-out;
}

/* Hamburguesa blanca */
.navbar-toggler-icon {
    filter: invert(1);
}

/* Botones más suaves dentro del offcanvas */
.offcanvas .btn {
    border-radius: 12px;
    font-size: 1rem;
    box-shadow: 0 0 10px rgba(255,255,255,0.05);
}

/* Títulos */
.fancy-header {
    font-family: 'Playfair Display', serif;
}
