/* ===================================== */
/* CONFIGURACIÓN Y VARIABLES        */
/* ===================================== */
:root {
    --color-negro: #121212;
    --color-dorado: #D4AF37;
    --color-dorado-hover: #C5B358;
    --color-blanco: #FFFFFF;
    --color-texto: #E0E0E0;
    --color-texto-secundario: #A0A0A0;
    --font-titulos: 'Playfair Display', serif;
    --font-cuerpo: 'Lato', sans-serif;
}

/* ===================================== */
/* ESTILOS GENERALES          */
/* ===================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-negro);
    font-family: var(--font-cuerpo);
    color: var(--color-texto);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h1, h2, h3 {
    font-family: var(--font-titulos);
    color: var(--color-blanco);
    font-weight: 700;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 1.8rem; }

.section-title {
    text-align: center;
    margin-bottom: 60px;
    color: var(--color-dorado);
}

.text-center {
    text-align: center;
}

/* ===================================== */
/* COMPONENTES               */
/* ===================================== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-dorado);
    color: var(--color-negro);
}

.btn-primary:hover {
    background-color: var(--color-dorado-hover);
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-blanco);
    border: 2px solid var(--color-dorado);
}

.btn-secondary:hover {
    background-color: var(--color-dorado);
    color: var(--color-negro);
}

.btn-tertiary {
    color: var(--color-dorado);
    font-weight: 700;
    text-decoration: none;
}

.btn-tertiary:hover {
    text-decoration: underline;
}

.logo {
    font-family: var(--font-titulos);
    font-size: 1.8rem;
    color: var(--color-dorado);
    text-decoration: none;
    font-weight: 700;
}

/* ===================================== */
/* HEADER                  */
/* ===================================== */
.main-header {
    background-color: var(--color-negro);
    padding: 20px 0;
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav a {
    color: var(--color-blanco);
    text-decoration: none;
    font-size: 1rem;
    padding: 5px 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-dorado);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* ===================================== */
/* SECCIONES                  */
/* ===================================== */
/* --- HERO --- */
.hero-section {
    height: 90vh;
    background-image: linear-gradient(to right, rgba(18, 18, 18, 0.9) 0%, rgba(18, 18, 18, 0.2) 100%), url('https://picsum.photos/seed/spahero/1600/900');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 50%;
}

.hero-text h1 {
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--color-texto);
    margin-bottom: 30px;
    max-width: 500px;
}

/* --- ABOUT --- */
.about-section {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    color: var(--color-dorado);
    margin-bottom: 15px;
}

.about-text p {
    color: var(--color-texto-secundario);
    margin-bottom: 30px;
}

.about-text ul {
    list-style: none;
    margin-bottom: 30px;
}

.about-text ul li {
    margin-bottom: 10px;
    color: var(--color-texto);
}

.about-text ul li i {
    color: var(--color-dorado);
    margin-right: 15px;
}

/* --- SERVICES --- */
.services-section {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-info {
    padding: 25px;
}

.service-info h3 {
    color: var(--color-blanco);
    margin-bottom: 10px;
}

.service-info p {
    color: var(--color-texto-secundario);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.price {
    font-weight: 700;
    color: var(--color-dorado);
}

/* --- TESTIMONIALS --- */
.testimonials-section {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote {
    font-family: var(--font-titulos);
    font-size: 1.8rem;
    line-height: 1.4;
    color: var(--color-blanco);
    margin-bottom: 25px;
}

.author {
    font-weight: 700;
    color: var(--color-dorado);
}

/* --- BOOKING CTA --- */
.booking-section {
    padding: 100px 0;
    background-color: var(--color-negro);
}

.booking-section p {
    max-width: 600px;
    margin: 20px auto 40px auto;
    color: var(--color-texto-secundario);
}

/* ===================================== */
/* GALERÍA                              */
/* ===================================== */
.gallery-section {
    padding: 100px 0;
}

.gallery-intro {
    text-align: center;
    max-width: 600px;
    margin: -40px auto 60px auto;
    color: var(--color-texto-secundario);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: block;
}

.gallery-item img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* ===================================== */
/* LIGHTBOX (VISOR DE IMAGEN Y VIDEO)    */
/* ===================================== */
.lightbox-container {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.9);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.lightbox-image, .lightbox-video {
    max-width: 55%;  /* Reducido desde 90% */
    max-height: 55%; /* Reducido desde 85% */
    border: 3px solid var(--color-dorado);
    border-radius: 5px;
}

.lightbox-video {
    background-color: black;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--color-blanco);
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-lightbox:hover {
    color: var(--color-dorado);
}

.prev-btn, .next-btn {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.3s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.3);
}

.next-btn {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev-btn {
    left: 0;
}

.prev-btn:hover, .next-btn:hover {
    background-color: rgba(212, 175, 55, 0.8);
}

.gallery-item {
    position: relative;
    cursor: pointer;
}

.play-icon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
    pointer-events: none;
}

.gallery-item:hover .play-icon-overlay {
    opacity: 1;
}

.play-icon-overlay i {
    color: white;
    font-size: 50px;
    text-shadow: 0 0 15px rgba(0,0,0,0.5);
}

/* ===================================== */
/* PÁGINA DE PREGUNTAS FRECUENTES (FAQ)  */
/* ===================================== */
.faq-section {
    padding: 100px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #222;
}

.faq-question {
    width: 100%;
    background-color: transparent;
    border: none;
    padding: 25px 0;
    text-align: left;
    font-family: var(--font-cuerpo);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-blanco);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: var(--color-dorado);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active {
    color: var(--color-dorado);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: var(--color-texto-secundario);
    padding-left: 10px;
}

.faq-answer p {
    padding-bottom: 25px;
    line-height: 1.7;
}

/* ===================================== */
/* FOOTER                 */
/* ===================================== */
.main-footer {
    background-color: #0a0a0a;
    padding-top: 80px;
    border-top: 1px solid #222;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-size: 1.2rem;
    color: var(--color-blanco);
    margin-bottom: 20px;
}

.footer-column p {
    color: var(--color-texto-secundario);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul a {
    color: var(--color-texto-secundario);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul a:hover {
    color: var(--color-dorado);
}

.social-icons a {
    color: var(--color-texto-secundario);
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--color-dorado);
}

.footer-bottom {
    border-top: 1px solid #222;
    text-align: center;
    padding: 20px 0;
}

.footer-bottom p {
    color: var(--color-texto-secundario);
    font-size: 0.9rem;
}

/* ===================================== */
/* RESPONSIVE DESIGN          */
/* ===================================== */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .main-header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-nav ul {
        justify-content: center;
        width: 100%;
        padding-left: 0;
    }
    
    .main-nav ul li {
        margin: 0 15px;
    }

    .hero-section {
        height: 70vh;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-content {
        flex-direction: column;
        gap: 40px;
    }

    .booking-section, .about-section, .services-section, .testimonials-section, .gallery-section, .faq-section {
        padding: 60px 0;
    }

    .gallery-grid {
        gap: 15px;
    }
}