@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0f0f0f;
    font-family: 'Montserrat', sans-serif;
    color: white;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 10px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}



.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 80px; }
.logo-text {
    font-size: 18px;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 400;
    opacity: 0.9;
    color: white;
}

nav { display: flex; gap: 40px; }
nav a {
    text-decoration: none;
    color: white;
    font-size: 13px; 
    font-weight: 700; 
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.3s;
}
nav a:hover { color: #c5a059; }

/* =========================================
   NAV EXTRA
========================================= */

.nav-extra{
    width: 100%;
    margin-top: 35px;
    display: none;
}
/* =========================================
   SOCIAL NAV
========================================= */

.nav-social{
    justify-content: flex-start;
    margin-bottom: 30px;
}

.nav-social a{
    width: 42px;
    height: 42px;

    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.02);

    transition: all 0.3s ease;
}

.nav-social a:hover{
    background: #c5a059;
    border-color: #c5a059;
    color: black;

    transform: translateY(-3px);
}

/* =========================================
   NEWSLETTER
========================================= */

.newsletter-box{
    width: 100%;
}

.newsletter-box h3{
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;

    margin-bottom: 15px;

    color: white;
}

.newsletter-input{
    display: flex;
    align-items: center;

    width: 100%;
    height: 56px;

    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;

    background: rgba(255,255,255,0.03);

    overflow: hidden;
}

.newsletter-input input{
    flex: 1;
    height: 100%;

    background: transparent;
    border: none;
    outline: none;

    padding: 0 18px;

    color: white;

    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-input input::placeholder{
    color: rgba(255,255,255,0.45);
}

.newsletter-input button{
    width: 56px;
    height: 56px;

    border: none;

    background: transparent;
    color: white;

    cursor: pointer;

    transition: 0.3s ease;
}

.newsletter-input button:hover{
    background: #c5a059;
    color: black;
}

.newsletter-box p{
    margin-top: 15px;

    font-size: 12px;
    line-height: 1.6;

    color: rgba(255,255,255,0.5);
}


/* =========================
   CONTENIDO LEGAL
========================= */

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 70px 30px 100px;
}

.legal-updated {
    font-size: 13px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.legal-intro {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 50px;
    border-left: 3px solid #c5a059;
    padding-left: 20px;
}

.legal-section {
    margin-bottom: 45px;
}

.legal-section h2 {
    font-size: 20px;
    letter-spacing: 1px;
    color: #c5a059;
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.legal-section h2 .num {
    font-size: 14px;
    color: rgba(197, 160, 89, 0.5);
    font-weight: 700;
}

.legal-section p {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 14px;
}

.legal-section ul {
    margin: 0 0 14px 0;
    padding-left: 22px;
}

.legal-section ul li {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 8px;
}

.legal-section strong {
    color: #ffffff;
    font-weight: 600;
}

.legal-highlight {
    background: rgba(197, 160, 89, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 10px;
    padding: 20px 24px;
    margin-bottom: 14px;
}

.legal-highlight p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}

.legal-contact {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-contact h2 {
    font-size: 20px;
    color: #c5a059;
    margin-bottom: 16px;
}

.legal-contact ul {
    list-style: none;
    padding: 0;
}

.legal-contact ul li {
    font-size: 15px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.78);
}

.legal-contact i {
    width: 20px;
    color: #c5a059;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 50px 20px 70px;
    }
    .legal-section h2 {
        font-size: 17px;
    }
}

/* --- BANNER DE PÁGINA --- */
.page-banner {
    position: relative;
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px; 
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    /* Añade un colchón a los lados para que el texto nunca toque el borde de la pantalla */
    padding: 0 20px; 
    box-sizing: border-box;
}

.banner-content h1 {
    color: #ffffff;
    /* Fluido: mínimo 28px, ideal 5vw (5% del ancho de pantalla), máximo 60px */
    font-size: clamp(50px, 5vw, 60px);
    font-weight: 800;
    /* Fluido: se encoge en móviles (mínimo 4px) y crece en PC (máximo 15px) */
    letter-spacing: clamp(4px, 1.2vw, 15px);
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    
    /* Control de desborde por si la palabra sigue siendo muy larga */
    word-wrap: break-word;
    overflow-wrap: break-word;
}
/* MENU ICON */

.menu-toggle {
    position: absolute;
    left: 25px;

    display: none;

    font-size: 34px;
    color: rgb(172, 172, 172);

    cursor: pointer;

    z-index: 3000;

    transition: 0.3s ease;
}
.menu-toggle i{
    width:35px;
    text-align:center;
}

.menu-toggle:hover {
    color: #c5a059;
}



.nav-mobile-logo{
    display: none;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}
/* Forzamos tamaños elegantes para que no rompa el diseño del panel */
.nav-mobile-logo img {
    
    height: 50px; 
    width: auto;
}

.nav-mobile-logo .logo-text {
    font-size: 11px;
    letter-spacing: 3px;
    line-height: 1.3;
    text-transform: uppercase;
    font-weight: 400;
    color: white;
    opacity: 0.9;
}

.menu-toggle i{
    width:35px;
    text-align:center;
}

.menu-toggle:hover {
    color: #c5a059;
}

/* =========================
    FOOTER
========================= */


.liv-style-footer {
    padding: 20px 60px 40px;
    background: #000;
    color: rgb(190, 176, 176);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-top: 30px;
}

/* BRAND */
.footer-brand-section {
    
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.footer-description{
    font-size: larger;
font-family: "Cormorant Garamond", serif;
font-style: italic;
    text-align: center;
    max-width: 320px;
    margin: 15px auto;
    line-height: 1.7;
}
.footer-logo {
    align-self: center;
    width: 120px;
}

/* SOCIAL */
.social-row {
    display: flex;
    gap: 15px;
    align-self: center;
    margin-bottom: 50px;
}

.social-row a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.social-row a:hover {
    background: white;
    color: black;
}

/* FOOTER LINKS */
.footer-right-group {
    display: flex;
    gap: 100px;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.76);
    text-decoration: none;
    font-size: 17px;

    transition: 0.3s;
}

.footer-column a:hover {
    color: #c5a059;
    opacity: 1;
}

/* FOOTER BOTTOM */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    opacity: 0.6;
}

.legal-links {
    display: flex;
    gap: 30px;
}

.legal-links a {
    color: white;
    text-decoration: none;
}

/* =========================
   WHATSAPP FLOAT
========================= */
.whatsapp-float {
    position: fixed;
    right: 40px;
    bottom: 90px;
    z-index: 1000;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 60px;
    height: 60px;

    border-radius: 50px;

    background-color: #25d366;
    color: #fff;

    font-size: 35px;
    text-align: center;
    text-decoration: none;

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

    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    color: #fff;
    transform: scale(1.1);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1400px) {

    .prev{
        left:-10px !important;
    }

    .next{
        right:-10px !important;
    }

}

/* =========================
   TABLET
========================= */

@media (max-width: 1024px) {

    .event-card,
    .news-card{
        flex:0 0 calc(50% - 15px);
    }

    .footer-right-group{
        gap:30px;
    }

    .main-text h1{
        font-size:65px;
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
    /* fix: banner margin mobile */
    .page-banner {
        margin-top: 90px;
    }


    .btn-reserva {
        padding: 12px 28px;
        font-size: 12px;
    }

.nav-mobile-logo {
    display: flex;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;

    align-items: center;
    gap: 12px;

    position: absolute;
    top: 20px;
    left: 75px;

    padding-bottom: 15px;
    width: calc(100% - 90px);

    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-extra {
    display: flex;
    flex-direction: column;
    position: static;
    width: 100%;
    margin-top: 20px;
}
    body{
        overflow-x: hidden;
    }

    /* HEADER */

    header{
        position: fixed;

        justify-content: center;

        padding: 15px 20px;
    }

    /* LOGO */

    .logo{
        position: relative;
        z-index: 2000;
    }

    .logo img{
        height: 60px;
    }

    .logo-text{
        font-size: 11px;
        letter-spacing: 3px;
    }

    /* MENU TOGGLE */

    .menu-toggle{
        display: flex;

        position: absolute;
        left: 20px;

        align-items: center;
        justify-content: center;

        width: 42px;
        height: 42px;

        font-size: 32px;

        z-index: 3000;

        transition: color 0.25s ease;
    }

    .menu-toggle:hover{
        color: #c5a059;
    }

    .menu-toggle i{
        width: 35px;
        text-align: center;

        transform: translateZ(0);
    }


     .nav-extra{
        
        margin-top: 30px;
    }

    .newsletter-box h3{
        font-size: 16px;
    }

    .newsletter-input{
        height: 54px;
    }


    /* =========================
       NAV MOBILE PREMIUM
    ========================= */

    nav{
        position: fixed;

        top: 0;
        left: 0;

        width: 85%;
        height: 100vh;

        padding: 120px 30px;

        display: flex;
        flex-direction: column;

        justify-content: flex-start;
        align-items: flex-start;

        gap: 0;

        background: rgba(8,8,8,0.96);

        /* MÁS LIGERO */
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);

        border-right: 1px solid rgba(255,255,255,0.08);

        /* SOMBRA PREMIUM */
        box-shadow: 10px 0 40px rgba(0,0,0,0.55);

        /* ANIMACIÓN FLUIDA */
        transform: translateX(-100%);

        transition:
            transform 0.32s cubic-bezier(0.77, 0, 0.175, 1);

        will-change: transform;

        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;

        z-index: 2500;
    }

    nav.active{
        transform: translateX(0);
    }

    nav a{
        width: 100%;

        padding: 22px 0;

        border-bottom: 1px solid rgba(255, 255, 255, 0.451);

        font-size: 17px;
        letter-spacing: 1px;

        text-align: left;

        transform: translateZ(0);

        transition:
            color 0.25s ease,
            padding-left 0.25s ease;
    }

    nav a:hover{
        color: #c5a059;
        padding-left: 8px;
    }

    /* HERO */

    .main-text h1{
        font-size: 50px;
        letter-spacing: 3px;
        line-height: 1.1;
    }

    .subtitle{
        font-size: 10px;
        letter-spacing: 2px;
    }

    /* FOOTER */

    .footer-top{
        flex-direction: column;
        align-items: center;

        text-align: center;
    }

    .footer-right-group{
        flex-direction: column;
        gap: 40px;
    }

    .footer-bottom{
        flex-direction: column;
        gap: 20px;

        text-align: center;
    }

    .legal-links{
        justify-content: center;
        gap: 15px;

        flex-wrap: wrap;
    }

    /* WHATSAPP */

    .whatsapp-float{
        width: 50px;
        height: 50px;

        right: 20px;
        bottom: 50px;

        font-size: 30px;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .main-text h1{
        font-size:38px;
    }

    nav{
        width:90%;
    }

    nav a{
        font-size:20px;
    }

   
    .logo-text{
        font-size:10px;
        letter-spacing:2px;
    }


}