﻿/* =========================================
   VARIABLES DE MARCA (Sofisticación y Romance)
   ========================================= */
:root {
   /* --oro-principal: #c5a059;
    --oro-brillante: #e2c28d;*/
    --negro-elegante: #1a1a1a;
    --gris-suave: #f8f9fa;
    --blanco-puro: #ffffff;
    --oro-principal: #c5a059;
    --oro-oscuro: #8c7251; /* Añade esta si no la tienes */
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--negro-elegante);
    background-color: var(--blanco-puro);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* --- TIPOGRAFÍA --- */
h1, h2, h3, .font-serif {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- REPARACIÓN INTEGRAL DEL HERO --- */
.hero-section {
    min-height: 80vh !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 100px 20px !important;
    text-align: center !important;
    /* PROBEMOS ESTA RUTA DIRECTA */
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url('/images/5.jpg') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important; /* Cambiamos fixed por scroll por si acaso */
    color: white !important;
}

    /* --- AJUSTE OPCIONAL PARA EL TÍTULO (Para que sea más imponente) --- */
    .hero-section h1 {
        font-size: 3.5rem !important; /* Más grande */
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* Sombra sutil al texto para más lujo */
        letter-spacing: 3px !important;
    }
    /* --- AJUSTE OPCIONAL PARA EL TÍTULO (Para que sea más imponente) --- */
    .hero-section h1 {
        font-size: 3.5rem !important; /* Más grande */
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* Sombra sutil al texto para más lujo */
        letter-spacing: 3px !important;
    }

    /* --- EL BOTÓN (LIMPIO Y SIN DEFORMACIONES) --- */
    .hero-section .btn-gold {
        background-color: #D4AF37 !important;
        color: white !important;
        padding: 15px 30px !important;
        border-radius: 50px !important;
        font-weight: bold !important;
        text-decoration: none !important; /* Quita subrayados */
        display: inline-block !important; /* Evita que se estire a lo ancho de la pantalla */
        width: auto !important; /* Obliga al botón a medir solo lo que mide su texto */
        margin: 20px auto !important; /* Lo centra y le da aire arriba y abajo */
        border: none !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
    }

        /* --- HOVER QUE SÍ FUNCIONA --- */
        .hero-section .btn-gold:hover {
            background-color: #b8962e !important; /* Un dorado un poco más oscuro */
            color: white !important;
            transform: scale(1.05); /* Crece un poquito en lugar de ponerse blanco */
            box-shadow: 0 6px 20px rgba(0,0,0,0.3) !important;
        }

/* --- DEVOLVIENDO EL DORADO A LA BARRA DE AGENDA --- */
.agenda-bar {
    background-color: #D4AF37 !important; /* El dorado oficial de Haydee */
    color: white !important; /* Letras blancas para que se lean bien */
    font-weight: bold !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    padding: 15px 0 !important;
    /*margin-top: 40px !important;*/ /* Espacio para que no choque con el botón */
    width: 100% !important;
    display: block !important;
    text-align: center !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
}

    /* Aseguramos que el emoji y el texto sean blancos */
    .agenda-bar span, .agenda-bar div {
        color: white !important;
    }


/* --- SECCIÓN DE PAQUETES --- */
.package-card {
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    background: var(--blanco-puro);
    position: relative;
    overflow: hidden;
    height: 100%;
}

    .package-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(197, 160, 89, 0.2);
        border-color: var(--oro-principal);
    }

    .package-card.featured {
        border: 2px solid var(--oro-principal);
        background-color: #fffdf9;
    }

.package-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--oro-principal);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.7rem;
    font-weight: 700;
}

.price-tag {
    font-size: 2.5rem;
    color: var(--oro-principal);
    font-family: 'Cormorant Garamond', serif;
    margin: 20px 0;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

    .package-features li {
        padding: 8px 0;
        border-bottom: 1px solid #f0f0f0;
        font-size: 0.9rem;
    }

/* --- TESTIMONIOS (Corrección de Comillas) --- */
.testimonio-card {
    background: white;
    border: 1px solid #eee;
    padding: 60px 25px 30px;
    border-radius: 15px;
    position: relative;
    margin-bottom: 30px;
    min-height: 200px;
    display: flex;
    align-items: center;
}

    .testimonio-card::before {
        content: '“'; /* Texto real, evita el símbolo feo */
        position: absolute;
        top: 5px;
        left: 20px;
        font-family: 'Cormorant Garamond', serif;
        font-size: 90px;
        color: var(--oro-principal);
        line-height: 1;
    }

/* --- BOTONES (Ajuste Mobile-First) --- */
.btn-reserve, .btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--oro-brillante) 0%, var(--oro-principal) 100%);
    color: white !important;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: none;
    -webkit-appearance: none;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
    transition: 0.3s;
}

    .btn-reserve:hover {
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4);
    }

/* --- FOOTER --- */
.main-footer {
    background-color: var(--gris-suave);
    padding: 60px 20px;
    text-align: center;
    margin-top: 50px;
}

/* --- CORRECCIÓN ICONOS AZULES EN EL FOOTER --- */
.social-icons-footer a {
    /* Quitamos el azul y ponemos negro o gris muy oscuro */
    color: #1a1a1a !important;
    font-size: 1.8rem;
    margin: 0 15px;
    text-decoration: none !important; /* Quita el subrayado azul */
    transition: all 0.3s ease;
    display: inline-block;
}

    /* El efecto al pasar el mouse o tocar en el celular */
    .social-icons-footer a:hover {
        color: var(--oro-principal) !important;
        transform: translateY(-3px);
    }

        /* Específicamente para el icono de WhatsApp si lo quieres verde al tocarlo */
        .social-icons-footer a:hover .fa-whatsapp {
            color: #25d366 !important;
        }

.gallery-item img {
    width: 100%;
    height: 250px; /* Esto obliga a todas a medir lo mismo */
    object-fit: cover; /* Esto hace que la foto se corte un poquito pero no se estire feo */
    border-radius: 15px; /* Les da un toque más suave y moderno */
    transition: transform 0.3s ease;
}

    .gallery-item img:hover {
        transform: scale(1.05); /* Un efecto lindo cuando pasas el mouse */
    }

.bg-light.py-5 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

/* --- HACIENDO EL LOGO MÁS IMPONENTE --- */
.navbar-brand img {
    height: 80px !important; /* Estaba muy chiquito, con 80px ya se nota */
    width: auto !important; /* Mantiene la proporción para que no se vea estirado */
    transition: transform 0.3s ease;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1)); /* Un sombreado sutil para que resalte */
}

    /* Efecto elegante cuando pasas el mouse */
    .navbar-brand img:hover {
        transform: scale(1.1);
    }

/* --- AJUSTE PARA MÓVILES (Celulares) --- */
@media (max-width: 768px) {
    .navbar-brand img {
        height: 60px !important; /* Un poquito más chico en cel para que no estorbe */
    }
}