/* ==============================================
   INCARITUALS - TURISMO Y NATURALEZA
   Diseño elegante, místico y moderno
   ============================================== */

/* Variables globales */
:root {
    --primary: #2c5f2d;
    --primary-dark: #1e3a1e;
    --accent: #d4af37;
    --accent-light: #f5e7a3;
    --dark: #0a1a0f;
    --light: #f9f7f1;
    --text-dark: #2c2c2c;
    --text-light: #f3efdf;
    --shadow-sm: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.2);
    --transition: all 0.3s ease;
    --border-glow: rgba(212, 175, 55, 0.3);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--light);
    color: var(--text-dark);
    line-height: 1.6;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

h1 { font-size: 3.5rem; letter-spacing: -0.02em; }
h2 { font-size: 2.5rem; position: relative; display: inline-block; margin-bottom: 2rem; }
h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
}




















/* ===== HEADER Y MENÚ  ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 20, 8, 0.7);
    backdrop-filter: blur(12px);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

header.scrolled {
    background: rgba(5, 12, 4, 0.95);
    backdrop-filter: blur(16px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    padding: 0.3rem 0;
}

nav {
    
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.3s;
}

/* Logo */
.logo a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #d4af37, #f5e7a3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
    letter-spacing: 1px;
    transition: transform 0.3s;
    display: inline-block;
}

.logo a:hover {
    transform: scale(1.02);
}

/* Menú principal (escritorio) */
.menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.menu li {
    position: relative;
}

.menu a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #f3efdf;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s;
    position: relative;
}

/* Efecto de subrayado animado */
.menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.menu a:hover::after {
    width: 100%;
}

.menu a:hover {
    color: #d4af37;
}

/* Submenú */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(15, 25, 12, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 0.8rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.menu li:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li a {
    display: block;
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: 0;
    color: #e0d6b0;
}

.submenu li a::after {
    display: none;
}

.submenu li a:hover {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    padding-left: 1.8rem;
}

/* Selector de idioma (desktop) */
.desktop-lang .language-switcher {
    display: flex;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.3rem 0.8rem;
    border-radius: 40px;
    backdrop-filter: blur(4px);
}

.lang-option {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
    border-radius: 30px;
    text-decoration: none;
    color: #f3efdf;
    transition: all 0.2s;
}

.lang-option.active {
    background: #d4af37;
    color: #1a2a1a;
}

.lang-option:hover:not(.active) {
    background: rgba(212, 175, 55, 0.3);
    color: #d4af37;
}

/* Botón hamburguesa (móvil) */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: #d4af37;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Menú móvil */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .desktop-lang {
        display: none;
    }
    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(5, 12, 4, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.8rem;
        transition: right 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        z-index: 1000;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
        padding: 2rem;
        margin: 0;
        list-style: none;
    }
    .menu.active {
        right: 0;
    }
    .menu li {
        width: 100%;
        text-align: center;
    }
    .menu a {
        font-size: 1.1rem;
        letter-spacing: 2px;
        display: block;
        padding: 0.8rem;
    }
    .menu a::after {
        bottom: 0.2rem;
    }
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
        border: none;
        padding-left: 1rem;
        transform: none;
        display: none;
    }
    .menu li:hover .submenu,
    .menu li:focus-within .submenu {
        display: block;
    }
    .submenu li a {
        padding: 0.4rem 0;
        font-size: 0.9rem;
    }
    .mobile-lang {
        display: block;
        margin-top: 1rem;
    }
    .mobile-lang .language-switcher {
        justify-content: center;
        gap: 1rem;
    }
    .lang-option {
        font-size: 0.9rem;
        padding: 0.3rem 1rem;
    }
    /* Animación del botón hamburguesa a X */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

@media (min-width: 769px) {
    .mobile-lang {
        display: none;
    }
}
























/* Hero mejorado */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background: url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,31,15,0.7), rgba(0,0,0,0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

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

.hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background: var(--accent);
    color: var(--dark);
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    background: #c4a02e;
}









/* Contenedor principal - ancho completo */
main {
    max-width: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Eliminar padding lateral y contenedor restrictivo en el contenido de página */
.page-content {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    background: transparent; /* o el color que quieras de fondo */
    border-radius: 0;
    box-shadow: none;
}



/* Para módulos y otros elementos, también ancho completo */
.module {
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 0;
    padding: 2rem 5%;
}

/* Si quieres que el hero ocupe todo el ancho y tenga altura completa */
.hero {
    width: 100%;
    border-radius: 0;
}

/* Ajuste para el header y footer (ya ocupan todo el ancho normalmente) */
header, footer {
    width: 100%;
    border-radius: 0;
}









.module:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Formulario de reserva elegante */
.reservation-modern {
    background: linear-gradient(135deg, #fff, #f5f7fa);
    border-radius: 32px;
    padding: 2rem;
    border: 1px solid var(--border-glow);
}

.reservation-header h3 {
    color: var(--primary);
    font-size: 1.8rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.form-group {
    flex: 1;
    min-width: 200px;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212,175,55,0.2);
}

.total-price {
    text-align: right;
    font-size: 1.2rem;
    margin: 1.5rem 0;
    padding: 0.5rem;
    border-top: 1px solid var(--border-glow);
}

.btn-reserve {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: bold;
    width: 100%;
    transition: var(--transition);
    cursor: pointer;
}

.btn-reserve:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--text-light);
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
    border-radius: 30px 30px 0 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: var(--accent);
    margin-bottom: 1rem;
}

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    background: rgba(255,255,255,0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-light);
}

.social-links a:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* WhatsApp float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: var(--transition);
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128C7E;
}

/* Scroll to top */
.scroll-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--accent);
    color: var(--dark);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.scroll-top:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 1001;
    }
    .menu-toggle span {
        width: 28px;
        height: 3px;
        background: var(--accent);
        margin: 4px 0;
        transition: 0.3s;
    }
    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(10,20,8,0.95);
        backdrop-filter: blur(16px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        transition: right 0.4s ease;
        z-index: 1000;
        padding: 2rem;
    }
    .menu.active {
        right: 0;
    }
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        background: transparent;
        box-shadow: none;
        padding-left: 1rem;
        display: none;
    }
    .menu li:hover .submenu {
        display: block;
    }
    .desktop-lang {
        display: none;
    }
    .mobile-lang {
        display: block;
        margin-top: 1rem;
    }
    h1 {
        font-size: 2rem;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero {
        height: 60vh;
    }
}

@media (min-width: 769px) {
    .mobile-lang {
        display: none;
    }
    .desktop-lang {
        display: block;
    }
}

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

[data-aos] {
    opacity: 0;
    transition: opacity 0.6s, transform 0.6s;
}

[data-aos].aos-animate {
    opacity: 1;
}




/* Enlace de edición compacto (escritorio) */
.desktop-lang {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.edit-link {
    font-size: 0.75rem;
    text-decoration: none;
    color: #d4af37;
    background: rgba(0,0,0,0.3);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    transition: 0.2s;
    white-space: nowrap;
}
.edit-link:hover {
    background: #d4af37;
    color: #1a2a1a;
}
/* Edición en móvil */
.edit-link-mobile {
    display: inline-block;
    font-size: 0.7rem;
    text-decoration: none;
    color: #d4af37;
    background: rgba(0,0,0,0.3);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    margin-top: 0.5rem;
}
.edit-link-mobile:hover {
    background: #d4af37;
    color: #1a2a1a;
}







/* Compensar el menú fijo para que no tape el contenido */
main {
    scroll-margin-top: 90px; /* Para anclajes */
}

/* Opcional: dar un padding-top al primer elemento visible dentro de main */
main > :first-child {
    margin-top: 0;
    padding-top: 90px; /* Ajusta según la altura de tu header */
}

/* En móvil, la altura del header es menor */
@media (max-width: 768px) {
    main > :first-child {
        padding-top: 70px;
    }
}


/* Contenedor del logo con posición relativa para que el hijo absoluto se posicione respecto a él */
.logo {
    position: relative;
    display: flex;
    align-items: center;
    /* Si quieres que el logo sobresalga hacia arriba, agrega un margen superior negativo al contenedor */
    margin-top: -10px; /* Ajusta según necesites */
}







/* Logo redondo sin bordes */
.logo-img {
width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: none;
  box-shadow: none;
  margin-right: -10px;
  position: absolute;
  top: -25px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.41);
  transition: box-shadow 0.3s ease;
}

/* Ajusta el texto del logo para que no se desplace */
.logo-text {
    line-height: 1.2;
    font-size: 1.2rem;
}