@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);
}


/* --- 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%;
    padding: 0 20px;
    box-sizing: border-box;
}

.banner-content h1 {
    color: #ffffff;
    font-size: clamp(50px, 5vw, 60px);
    font-weight: 800;
    letter-spacing: clamp(4px, 1.2vw, 15px);
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    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;
}

.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;
}


/* ==========================================
   SECCIÓN DE CONTACTO (ESTILO ESCRITORIO)
   ========================================== */
.contact-section {
    padding: 80px 10%;
    background: #0f0f0f;
    font-family: 'Montserrat', sans-serif;
}

.contact-container {
    display: flex;
    gap: 60px;
    width: 100%;
    align-items: flex-start;
}

/* Columna de Información */
.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info .info-title {
    color: #c5a059;
    font-size: 2.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-weight: 700;
    text-align: left;
}

.info-item {
    margin-bottom: 30px;
}

.info-item-title {
    color: #c5a059;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 8px;
}

.info-item-text {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    font-weight: 300;
}

.info-item-phone {
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
}

.info-item-hours {
    font-size: 16px;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 5px;
}

.info-item-note {
    font-size: 13px;
    color: #c5a059;
    font-style: italic;
}

/* Columna del Formulario */
.contact-form {
    flex: 1.5;
    min-width: 320px;
    background: rgba(26, 26, 26, 0.5);
    padding: 40px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    backdrop-filter: blur(10px);
    box-sizing: border-box; /* Fuerza que el padding interno no empuje los bordes hacia afuera */
}

.contact-form .form-title {
    color: #c5a059;
    font-size: 2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 700;
}

.form-subtitle {
    display: flex;
    justify-content: flex-start;
    color: #c5a059;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 500;
}

/* CORRECCIÓN INTERNA DEL FORM */
.contact-form form {
    width: 100%;
    display: block;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    width: 100%;
}

/* Campos de Entrada (Inputs y Textarea) */
.form-input, 
.form-textarea {
    padding: 15px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: white;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: 0.3s;
    border-radius: 0;
    box-sizing: border-box; /* Obliga a los paddings a vivir hacia adentro del input */
}

.form-input.half-width {
    width: calc(50% - 7.5px); /* Resta exactamente la mitad del espacio asignado al gap */
}

.form-input.full-width {
    width: 100%;
    margin-bottom: 15px;
}

.form-textarea {
    width: 100%;
    margin-bottom: 20px;
    resize: none;
}

/* Botón de Enviar */
.btn-reserva {
    color: #ffffff;
    display: inline-block;
    width: 100%;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    border: 2px solid #c5a059;
    background: transparent;
    text-transform: uppercase;
    transition: 0.4s;
    cursor: pointer;
    box-sizing: border-box;
}

.btn-reserva:hover {
    background-color: #c5a059;
    color: #000;
    transform: translateY(-3px);
}


/* --- SECCIÓN DEL MAPA --- */
.map-section {
    width: 100%;
    background: #0f0f0f;
    border-top: 2px solid #c5a059;
    line-height: 0;
}

.map-section iframe {
    filter: grayscale(0.5) invert(0.9) hue-rotate(180deg);
    transition: 0.3s;
}

.map-section iframe:hover {
    filter: none;
}

/* =========================
    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); }
}


/* ==========================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================== */

@media (max-width: 1400px) {
    .prev { left: -10px !important; }
    .next { right: -10px !important; }
}

@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; }
    
    .contact-section { padding: 80px 5%; }
    .contact-container { gap: 35px; }
}

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



    
  
    
    .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 {
        position: fixed;
        justify-content: center;
        padding: 15px 20px;
    }

    .logo { position: relative; z-index: 2000; }
    .logo img { height: 60px; }
    .logo-text { font-size: 11px; letter-spacing: 3px; }

    .menu-toggle {
        display: flex;
        position: absolute;
        left: 20px;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        font-size: 32px;
        z-index: 3000;
    }

 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;
    }

    .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-float { width: 50px; height: 50px; right: 20px; bottom: 50px; font-size: 30px; }

    /* RESPONSIVE MÓVIL OPTIMIZADO */
    .contact-section {
        padding: 60px 5%;
    }

    .contact-container {
        flex-direction: column;
        gap: 50px;
    }

    .contact-info,
    .contact-form {
        width: 100%;
        min-width: 100%;
    }

    .contact-info .info-title {
        text-align: center;
    }

    .section-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
        text-align: center;
    }

    .form-subtitle {
        justify-content: center;
    }

    .form-row {
        flex-direction: column; /* Apila el nombre y correo verticalmente en móvil */
        gap: 15px;
    }

    .form-input.half-width {
        width: 100%; /* En móviles toman el 100% real de la columna */
    }
    
    .contact-form input,
    .contact-form textarea {
        width: 100%;
        font-size: 15px;
    }

    .btn-reserva {
        width: 100%;
        text-align: center;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .contact-section { padding: 50px 20px; }
    .section-title { font-size: 1.4rem; letter-spacing: 1px; }
    .btn-reserva { font-size: 12px; letter-spacing: 1px; }
    .main-text h1 { font-size: 38px; }
    nav { width: 90%; }
    nav a { font-size: 20px; }
    .logo-text { font-size: 10px; letter-spacing: 2px; }
}