/* --- sitio_jg_dallas_completo/css/styles.css --- */



/* --- Core Palette & Variables --- */

:root {

    --primary-green: #2d8121;
    /* Deep Forest Green - Premium/Trust */

    --secondary-green: #2D5A27;
    /* Milder Green - Growth */

    --accent-gold: #D4AF37;
    /* Metallic Gold - Quality/Premium */

    --text-dark: #333333;
    /* Main Text */

    --text-light: #666666;
    /* Subtitles */

    --bg-light: #F4F7F4;
    /* Very Light Green/Grey BG */

    --white: #FFFFFF;

    --black: #000000;

    --transition: 0.3s ease;

}



/* --- Reset & Base --- */

html {
    scroll-behavior: smooth;
}

body {

    font-family: 'Playfair Display', serif;
    /* For Headers */

    font-family: 'Roboto', sans-serif;
    /* For Body */

    margin: 0;

    padding: 0;

    color: var(--text-dark);

    background-color: var(--white);

    line-height: 1.6;

}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-green);
    margin-top: 0;
}

p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}



/* --- Layout Utilities --- */

.container {
    width: 85%;
    margin: 0 auto;
    max-width: 1200px;
}

section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}



/* --- Buttons --- */

.btn {

    display: inline-block;

    padding: 15px 35px;

    background-color: var(--secondary-green);

    color: var(--white);

    font-weight: 700;

    text-transform: uppercase;

    border-radius: 2px;

    border: 2px solid transparent;

    cursor: pointer;

    transition: var(--transition);

}

.btn:hover {
    background-color: transparent;
    border-color: var(--secondary-green);
    color: var(--secondary-green);
}

.btn-gold {
    background-color: var(--accent-gold);
    color: var(--primary-green);
}

.btn-gold:hover {
    background-color: var(--primary-green);
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}



/* --- Header & Nav --- */

header {

    background-color: var(--white);

    padding: 15px 0;

    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;

    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);

}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo span {
    color: var(--accent-gold);
}



nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
    position: relative;
}

nav ul li a {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    padding: 10px 0;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-green);
}

/* Dropdown */

nav ul li ul {

    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);

    width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

    display: flex;
    flex-direction: column;
    padding: 10px 0;

    opacity: 0;
    visibility: hidden;
    transition: var(--transition);

}

nav ul li:hover ul {
    opacity: 1;
    visibility: visible;
}

nav ul li ul li {
    margin: 0;
}

nav ul li ul li a {
    padding: 10px 20px;
    text-transform: none;
    display: block;
}

nav ul li ul li a:hover {
    background-color: var(--bg-light);
}



/* --- Hero Section --- */

.hero {

    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('../images/hero.jpg') center/cover no-repeat;

    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;

    margin-top: 80px;
    /* Header offset */

}

.hero h1 {
    color: var(--white);
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    color: #e0e0e0;
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-family: 'Roboto', sans-serif;
}



/* --- Year-Round Care Plans (FONDO VERDE, TEXTO CLARO) --- */
.plans-section {
    background-color: var(--emerald) !important; /* Verde oscuro de fondo */
    padding: 80px 0;
    text-align: center;
}

/* Título Principal de la sección */
.plans-section .section-title {
    color: #ffffff !important; /* BLANCO PURO */
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.plans-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Tarjetas de los Planes */
.plan-item {
    background: rgba(255, 255, 255, 0.05); /* Fondo casi invisible para que no compita */
    border: 2px solid #c5a059; /* BORDE DORADO para definir la tarjeta */
    padding: 40px;
    border-radius: 15px;
    width: 100%;
    max-width: 400px;
    transition: all 0.3s ease;
}

/* TÍTULOS DE LOS PLANES (H4) */
.plan-item h4 {
    color: #c5a059 !important; /* DORADO BRILLANTE sobre el verde */
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5); /* Sombra para que salte a la vista */
}

/* LISTA DE SERVICIOS (LI) */
.plan-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.plan-item ul li {
    color: #ffffff !important; /* TODO EL TEXTO EN BLANCO */
    padding: 12px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Icono de check antes del texto */
.plan-item ul li::before {
    content: '★ ';
    color: #c5a059; /* Estrella dorada */
    margin-right: 10px;
}

/* ESTILO PARA EL PLAN DESTACADO (Premium) */
.plan-item.highlighted {
    background: rgba(197, 160, 89, 0.15); /* Fondo ligeramente dorado */
    border: 3px solid #ffffff; /* Borde Blanco para diferenciarlo */
    transform: scale(1.05);
}

.plan-item.highlighted h4 {
    color: #ffffff !important; /* Título blanco en la destacada */
}



/* --- Gallery Grid (Fancybox style) --- */

.gallery {
    background-color: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {

    height: 300px;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
    cursor: pointer;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);

}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item h3 {
   color: #4ecc34;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Overlay effect */

.gallery-item::after {

    content: '+';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(26, 67, 20, 0.8);
    /* Primary Green */

    color: var(--accent-gold);
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transition: var(--transition);

}

.gallery-item:hover::after {
    opacity: 1;
}



/* --- Lightbox (Fancybox Native) --- */

.lightbox {

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);

    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transition: var(--transition);

}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    border: 5px solid var(--white);
}

.lightbox-close {

    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;

    transition: var(--transition);

}

.lightbox-close:hover {
    color: var(--accent-gold);
}



/* --- About Us --- */

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}



/* --- Contact Section --- */

.contact {
    background-color: var(--bg-light);
}

.contact-split {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {

    width: 100%;
    padding: 18px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 2px;

    font-size: 1fr;
    font-family: 'Roboto', sans-serif;

}

.contact-form textarea {
    height: 180px;
    resize: none;
}

.contact-info-card {
    background: var(--white);
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info-card h4 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-info-card p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}



/* --- Footer --- */

footer {
    background-color: var(--primary-green);
    color: #ccc;
    padding: 80px 0 30px;
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--accent-gold);
}

.footer-nav {
    margin-bottom: 40px;
}

.footer-nav a {
    margin: 0 15px;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    color: #aaa;
}

.footer-nav a:hover {
    color: var(--accent-gold);
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.6;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}



/* --- Responsive --- */

@media (max-width: 992px) {

    .hero h1 {
        font-size: 3rem;
    }

    .about-split,
    .contact-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-split {
        order: 2;
    }

}

@media (max-width: 768px) {

    header .container {
        padding: 0 20px;
    }

    nav ul {
        display: none;
    }

    /* Mobile Menu would need JS, keeping simple */

    .hero {
        padding-top: 120px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    section {
        padding: 60px 0;
    }

}

:root {

    --deep-forest: #1A4314;

    --emerald: #296b1f;

    --lush-green: #2D5A27;

    --accent-gold: #D4AF37;

    --bg-green-light: #F0F5F0;

    --white: #FFFFFF;

}



body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    background-color: var(--bg-green-light);
    color: var(--deep-forest);
}



/* Header & Nav - Solid Deep Green */

header {
    background: var(--deep-forest);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.logo {
    color: var(--white);
    font-weight: 700;
    font-size: 1.6rem;
}

.logo span {
    color: var(--accent-gold);
}

nav ul li a {
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    margin-left: 20px;
    text-transform: uppercase;
}

nav ul li a:hover {
    color: var(--accent-gold);
}



/* Hero Section */

.hero {
    height: 90vh;
    background: linear-gradient(rgba(13, 43, 9, 0.7), rgba(13, 43, 9, 0.7)), url('../images/hero.jpg') center/cover;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
}

.hero p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
}



/* Verde en secciones antes blancas */

#services.py-5 {
    background-color: var(--primary-green) !important; /* Fondo verde de la sección */
    padding: 80px 0;
}

/* Título principal de la sección (Professional Services) */
#services .section-title {
    color: var(--white) !important; /* BLANCO PURO */
    margin-bottom: 40px;
    text-align: center;
}

/* Descripción general debajo del título */
#services p[style*="text-align: center"] {
    color: #e0e0e0 !important; /* Blanco grisáceo para que se lea sobre verde */
    margin-bottom: 50px !important;
}

.services-section {
    background-color: var(--emerald);
    color: var(--white);
}

.services-section .section-title {
    color: var(--white);
}

.service-card {
    background: var(--deep-forest);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--lush-green);
}

.service-card h3 {
    color: var(--accent-gold);
}

.service-card p {
    color: #d1d1d1;
}



/* Galería Grid */

.gallery-section {
    padding: 80px 0;
    background: var(--bg-green-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.gallery-item {
    height: 250px;
    cursor: pointer;
    border: 3px solid var(--white);
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}



/* Lightbox con Navegación */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 85%;
    max-height: 80%;
    border: 4px solid var(--accent-gold);
}

.nav-arrow {
    position: absolute;
    top: 50%;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    padding: 20px;
    transition: 0.3s;
}

.nav-arrow:hover {
    color: var(--accent-gold);
}

.left-arrow {
    left: 5%;
}

.right-arrow {
    right: 5%;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
}



/* Mantenimiento Plan Section */

.plans-section {
    background: var(--emerald);
    color: var(--white);
    text-align: center;
}

.plans-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.plan-item {
    transform: scale(1.0);
    background: var(--lush-green);
    padding: 30px;
    width: 300px;
    border-radius: 8px;
    border: 1px solid var(--accent-gold);
}

.plan-item.highlighted {
    transform: scale(1.0);
    background: var(--lush-green);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}



footer {
    background: var(--deep-forest);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    border-top: 5px solid var(--accent-gold);
}

.btn-gold {
    background: var(--accent-gold);
    color: var(--deep-forest);
}



@media (max-width: 992px) {

    .about-split,
    .contact-split {

        grid-template-columns: 1fr !important;

        gap: 30px !important;

    }

    .about-img {

        order: 2;

    }

    .hero h1 {

        font-size: 2.5rem;

    }

}



/* Estilo para los inputs del formulario para que resalten sobre el verde */

input:focus,
textarea:focus,
select:focus {

    outline: 2px solid var(--accent-gold);

}



/* --- Corrección de Imágenes en Servicios --- */



.services-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 30px;

    align-items: stretch;
    /* Asegura que todos los cuadros tengan la misma altura */

}



.service-card {

    background: var(--deep-forest);

    border-radius: 12px;

    overflow: hidden;
    /* IMPORTANTE: Corta cualquier cosa que intente salirse */

    display: flex;

    flex-direction: column;

    border: 1px solid var(--lush-green);

    transition: transform 0.3s ease;

}



.service-card:hover {

    transform: translateY(-10px);

    border-color: var(--accent-gold);

}



.service-card img {

    width: 100%;
    /* Ocupa todo el ancho del cuadro */

    height: 220px;
    /* Altura fija para que todos los cuadros se vean iguales */

    object-fit: cover;
    /* Recorta la imagen para que llene el espacio sin deformarse */

    display: block;
    /* Elimina espacios en blanco extraños debajo de la imagen */

}



.service-card h3,

.service-card p {

    padding: 0 25px;
    /* Espaciado interno para que el texto no toque los bordes */

}



.service-card h3 {

    margin-top: 25px;

    color: var(--accent-gold);

    font-size: 1.5rem;

}



.service-card p {

    margin-bottom: 30px;

    color: #d1d1d1;

    font-size: 0.95rem;

    line-height: 1.6;

}



.nav-arrow {

    user-select: none;

    background: rgba(0, 0, 0, 0.2);

    border-radius: 50%;

    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

}

.nav-arrow:hover {

    background: var(--accent-gold);

    color: var(--deep-forest);

}



/* Estilos para las estadísticas del Home */

.stat h3 {

    font-family: 'Playfair Display', serif;

}

.stat p {

    color: var(--white);

    font-weight: 700;

    text-transform: uppercase;

    font-size: 0.8rem;

    letter-spacing: 1px;

    margin-top: 5px;

}



/* Efecto para la imagen del Intro */

.intro-image img {

    transition: transform 0.5s ease;

}

.intro-image:hover img {

    transform: translate(-10px, -10px);

}



/* Responsividad para las columnas */

@media (max-width: 992px) {

    .two-col {

        grid-template-columns: 1fr !important;

        text-align: center;

    }

    .intro-image {

        order: 2;
        /* Pone la imagen debajo del texto en moviles */

        margin-top: 40px;

    }

    .intro-image img {

        box-shadow: 10px 10px 0px var(--accent-gold) !important;

    }

}



/* --- Corrección de Responsividad para Secciones de Dos Columnas --- */



@media (max-width: 992px) {

    /* Forzamos a que todos los contenedores de 2 columnas se vuelvan una sola */

    .two-col,

    .two-col-reverse,

    .about-split,

    .contact-split {

        display: flex !important;

        flex-direction: column !important;

        gap: 30px !important;

        text-align: center;

    }



    /* En la sección de "Quality and Detail", el texto debe ir PRIMERO */

    .two-col-reverse {

        flex-direction: column-reverse !important;

    }



    /* Ajuste de imágenes para que no se vean gigantes en el celular */

    .intro-image img,

    .details-image img,

    .about-img img {

        max-width: 100%;

        height: auto;

        box-shadow: 10px 10px 0px var(--accent-gold) !important;
        /* Sombra más pequeña para móvil */

    }



    /* Ajuste de los botones para que no se peguen en móvil */

    .hero-btns {

        display: flex;

        flex-direction: column;

        gap: 15px;

        align-items: center;

    }



    .hero-btns .btn {

        margin-left: 0 !important;

        width: 80%;
        /* Botones más cómodos para el pulgar */

    }



    /* Títulos más pequeños para que no se corten */

    .hero h1 {

        font-size: 2.2rem !important;

    }



    .section-title {

        font-size: 1.8rem !important;

    }

}



/* --- Botones de Compartir --- */

.share-btn {

    padding: 12px 25px;

    border-radius: 50px;

    color: white;

    font-weight: 700;

    font-size: 0.9rem;

    cursor: pointer;

    border: none;

    transition: transform 0.3s ease, background 0.3s ease;

    text-decoration: none;

    display: inline-flex;

    align-items: center;

}



.share-btn:hover {

    transform: translateY(-3px);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

}



.whatsapp {
    background-color: #25D366;
}

.facebook {
    background-color: #1877F2;
}

.copy {
    background-color: var(--emerald);
    border: 1px solid var(--accent-gold);
}



.copy:active {
    transform: scale(0.95);
}



/* Ajuste móvil */

@media (max-width: 600px) {

    .share-buttons {

        flex-direction: column;

        align-items: center;

    }

    .share-btn {

        width: 80%;

        justify-content: center;

    }

}



/* Botón Flotante de WhatsApp */

.whatsapp-sticky {

    position: fixed;

    bottom: 30px;

    right: 30px;

    background-color: #25D366;

    width: 60px;

    height: 60px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);

    z-index: 3000;

    transition: transform 0.3s ease;

}



.whatsapp-sticky:hover {

    transform: scale(1.1);

    background-color: #128C7E;

}



/* Ocultar la barra flotante si el usuario está en el formulario de contacto para no repetir */

@media (max-width: 768px) {

    .whatsapp-sticky {

        bottom: 20px;

        right: 20px;

        width: 50px;

        height: 50px;

    }

}



/* Estilos para el nuevo Logo y Eslogan */

.logo-wrapper {

    transition: transform 0.3s ease;

}



.logo-wrapper:hover {

    transform: translateY(-2px);

}



.logo-text-group {

    display: flex;

    flex-direction: column;

}



.brand-name {

    font-family: 'Playfair Display', serif;

}



.brand-slogan {

    font-family: 'Montserrat', sans-serif;

}



/* Responsividad para el Header */

@media (max-width: 768px) {

    header .container {

        flex-direction: column;

        padding: 10px 0;

    }



    .logo-wrapper {

        margin-bottom: 15px;

    }



    .brand-name {

        font-size: 1.1rem !important;

    }



    .brand-slogan {

        font-size: 0.7rem !important;

        letter-spacing: 1px !important;

    }



    header img {

        height: 45px !important;
        /* Logo un poco más pequeño en móviles */

    }

}



/* --- Header General --- */

header {

    background: var(--deep-forest);

    padding: 10px 0;
    /* Altura reducida */

    position: fixed;

    width: 100%;

    top: 0;

    z-index: 1000;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);

}



.header-flex {

    display: flex;

    justify-content: space-between;

    align-items: center;

}



.logo-wrapper {

    display: flex;

    align-items: center;

    text-decoration: none;

}



.logo-wrapper img {

    height: 50px;
    /* Tamaño controlado del logo */

    width: auto;

    margin-right: 12px;

}



.logo-text-group {

    display: flex;

    flex-direction: column;

}



.brand-name {

    color: var(--white);

    font-weight: 700;

    font-size: 1.2rem;

    line-height: 1;

}



.brand-slogan {

    color: var(--accent-gold);

    font-size: 0.7rem;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-top: 4px;

}



/* --- Menú Escritorio --- */

nav ul {

    display: flex;

    list-style: none;

    margin: 0;

    padding: 0;

}



nav ul li {
    margin-left: 25px;
}



nav ul li a {

    color: var(--white);

    text-decoration: none;

    font-weight: 600;

    font-size: 0.9rem;

    transition: 0.3s;

}



.mobile-only {
    display: none;
}



/* --- Responsividad (Móvil) --- */

@media (max-width: 992px) {

    .menu-toggle {

        display: flex;

        flex-direction: column;

        gap: 5px;

        cursor: pointer;

    }



    .menu-toggle span {

        width: 25px;

        height: 3px;

        background: var(--white);

        transition: 0.3s;

    }



    .hide-mobile {
        display: none;
    }

    .mobile-only {
        display: block;
        margin-top: 20px;
    }



    nav {

        position: absolute;

        top: 100%;

        left: 0;

        width: 100%;

        background: var(--deep-forest);

        display: none;
        /* Oculto por defecto */

        padding: 20px 0;

        border-top: 1px solid var(--lush-green);

    }



    nav.active {

        display: block;
        /* Se muestra al hacer clic */

    }



    nav ul {

        flex-direction: column;

        align-items: center;

    }



    nav ul li {

        margin: 15px 0;

    }

}



/* Efecto para que las imágenes aparezcan suavemente al cargar */

.gallery-item img {

    opacity: 0;

    transition: opacity 0.5s ease-in-out;

}



/* Cuando la imagen termina de descargar, se vuelve visible */

.gallery-item img[src] {

    opacity: 1;

}



/* Opcional: Color de fondo mientras carga para que no se vea vacío */

.gallery-item {

    background-color: #e8eee7;
    /* Un verde muy pálido */

    overflow: hidden;

}

/* Botón Flotante WhatsApp */
.whatsapp-sticky {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    z-index: 2000;
    transition: transform 0.3s ease;
}

.whatsapp-sticky:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .whatsapp-sticky {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}

.album-card {
    position: relative;
    display: block;
    overflow: hidden;
    border: 2px solid var(--accent-gold);
    transition: var(--transition);
}

.album-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 60, 52, 0.85); /* Verde oscuro semi-transparente */
    color: white;
    padding: 15px;
    text-align: center;
}

.album-overlay h3 {
    margin: 0;
    text-transform: capitalize; /* Pone la primera letra en mayúscula */
    font-size: 1.1rem;
}



/* --- New Hero Section with Glass Panel --- */
.hero-section {
    position: relative;
    height: 100vh; /* Pantalla completa */
    min-height: 650px;
    background: url('../images/hero-bg.webp') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center; /* Centra el panel */
    overflow: hidden;
    padding: 20px;
}

/* Reducimos el overlay general para que la foto luzca */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Capa muy suave */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    width: 100%;
}

/* --- EL PANEL BLANCO TRANSPARENTE (Glassmorphism) --- */
.hero-text-box {
    max-width: 800px;
    /* Bajamos la opacidad a 0.7 (70%) para que se vea más lo de atrás */
    background: rgba(255, 255, 255, 0.7) !important; 
    
    /* Efecto de desenfoque (vidrio esmerilado) */
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    
    padding: 60px 50px;
    border-radius: 24px;
    
    /* Un borde blanco muy fino ayuda a que se note la transparencia */
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    color: var(--primary-green); /* Ahora el subtítulo puede ser verde */
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.hero-text-box h1 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-green); /* Título Principal en VERDE (¡Se lee perfecto!) */
    font-size: clamp(2.5rem, 5vw, 3.8rem); /* Tamaño fluido y elegante */
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-text-box h1 span {
    color: var(--accent-gold); /* Mantenemos la palabra clave en dorado */
    font-style: italic;
}

.hero-text-box p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    color: #444; /* Gris muy oscuro para máxima lectura */
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Botones del Hero */
.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center; /* Centra los botones */
    flex-wrap: wrap;
}

.btn-gold {
    background: var(--accent-gold);
    color: var(--primary-green);
    padding: 16px 36px;
    border-radius: 5px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

.btn-outline {
    border: 2px solid var(--primary-green); /* Borde verde */
    color: var(--primary-green);
    padding: 16px 36px;
    border-radius: 5px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    font-size: 1rem;
}

.btn-gold:hover { background: #b8952d; transform: translateY(-3px); }
.btn-outline:hover { background: var(--primary-green); color: var(--white); }

/* Animación */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Adaptación para móviles */
@media (max-width: 768px) {
    .hero-text-box {
        padding: 40px 25px;
        margin: 10px;
    }
}


#album-content-* {
    transition: all 0.3s ease;
}

