/* ---------- RESET ---------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');





:root {
    /* Fonts */
    --font-primary: "Montserrat", sans-serif;
    --font-secondary: "Playfair Display", serif;

    /* Weights */
    --weight-light: 300;
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-bold: 700;
}

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

body {
    font-family: var(--font-primary);
    color: #333;
    background: #fafafa;
    overflow-x: hidden;
    width: 100%;
}

.text-highlight {
    font-family: var(--font-secondary);
    font-style: italic;
    font-weight: 400;
}

/* Texture Pattern for alternate sections */
section:nth-of-type(even) {
    background-color: #fafafa;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%239C92AC' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

section:nth-of-type(odd) {
    background: #fff;
}

/* Remove texture from specific sections as requested */
#experiencias,
#galeria,
#contacto {
    background-image: none;
    background-color: #fff;
}

img {
    display: block;
    max-width: 100%;
}

/* ---------- NAVBAR AWASI STYLE ---------- */

.awasi-nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    /* Changed to space-between for Left/Center/Right layout */
    align-items: center;
    padding: 20px 40px;
    z-index: 1002;
    transition: all 0.35s ease;
    background: transparent;
    /* Gradient added in HTML or just transparent */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
}

.awasi-nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 15px 40px;
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #eee;
}

.awasi-nav.scrolled .logo-refugio,
.awasi-nav.scrolled .logo-alma {
    color: #333;
}

.awasi-nav.scrolled .btn-reservar {
    border-color: #333;
    color: #333;
}

.awasi-nav.scrolled .btn-reservar:hover {
    background: #333;
    color: #fff;
}

/* Layout Containers */
.nav-left,
.nav-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-left {
    justify-content: flex-start;
}

.nav-right {
    justify-content: flex-end;
}

/* Logo Styles */
.nav-logo {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-refugio {
    font-family: var(--font-primary);
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
}

.logo-alma {
    font-family: var(--font-secondary);
    font-size: 28px;
    letter-spacing: 1px;
    font-weight: 400;
    text-transform: uppercase;
}

.logo-lodge {
    font-family: var(--font-primary);
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: uppercase;
    color: #c5a065;
    /* Gold/Brown tone */
}

/* Reservar Button in Navbar */
.btn-reservar {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    font-weight: 500;
}

.btn-reservar:hover {
    background: #fff;
    color: #000;
}

/* Burger Menu - Always Visible */
.nav-toggle {
    display: flex;
    /* Always flex */
    flex-direction: column;
    width: 30px;
    cursor: pointer;
    z-index: 1001;
    /* Above overlay */
}

.nav-toggle span {
    background: white;
    height: 2px;
    margin: 4px 0;
    transition: 0.3s;
    width: 100%;
}

.awasi-nav.scrolled .nav-toggle span {
    background: #333;
}

/* Toggle Animation when Active */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
    background: #fff;
    /* Keep white on overlay */
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
    background: #fff;
}

/* ---------- Mobile Overlay Menu ---------- */

/* ---------- Mobile Overlay Menu ---------- */

.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(20, 20, 20, 0.98);
    /* Dark overlay like Awasi */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1000;
}

.mobile-menu a {
    text-decoration: none;
    font-family: var(--font-secondary);
    font-size: 32px;
    text-transform: capitalize;
    /* Or uppercase, Awasi uses elegant mix */
    letter-spacing: 1px;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s ease;
}

.mobile-menu a:hover {
    color: #c5a065;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu.active a {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for links */
.mobile-menu.active a:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu.active a:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-menu.active a:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-menu.active a:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-menu.active a:nth-child(5) {
    transition-delay: 0.5s;
}

.mobile-menu.active a:nth-child(6) {
    transition-delay: 0.6s;
}

/* ---------- HERO ---------- */

.hero {
    height: 100vh;
    /* background-image removed for slideshow */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

#heroVideo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.35));
}

.hero-content {
    position: relative;
    max-width: 700px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 52px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-hero {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 30px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: transparent;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.btn-hero:hover {
    background: #fff;
    color: #000;
}

.btn-outline {
    border-color: #333;
    color: #333;
}

.btn-outline:hover {
    background: #333;
    color: #fff;
}

.btn-dark {
    background: #111;
    border-color: #111;
    color: #fff;
}

/* ---------- SECTIONS ---------- */

section {
    padding: 100px 10%;
    background: #fafafa;
}



h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

p {
    line-height: 1.7;
    max-width: 800px;
}

/* ---------- GRID & CARDS ---------- */

.grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.card {
    flex: 1;
    min-width: 280px;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card img {
    width: 100%;
    transition: transform 0.6s ease;
}

.card:hover img {
    transform: scale(1.05);
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    margin-bottom: 10px;
}

/* ---------- BROKEN GRID / NOSOTROS ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.about-image-wrapper {
    position: relative;
    padding-left: 20px;
    padding-bottom: 20px;
}

.about-img-main {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 20px 20px 0 rgba(0, 0, 0, 0.03);
    /* Subtle offset shadow */
    position: relative;
    z-index: 2;
}

.about-decorative-box {
    position: absolute;
    top: -20px;
    left: 0;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1;
}


/* ---------- CINEMA CARDS / EXPERIENCIAS ---------- */
.cinema-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 60px;
}

.cinema-card {
    position: relative;
    display: block;
    width: 100%;
    height: 400px;
    /* Tall immersive card */
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cinema-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
    z-index: 0;
}

.cinema-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    transition: background 0.5s ease;
}

.cinema-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Text at bottom */
    padding: 40px;
}

.cinema-subtitle {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-bottom: 8px;
    display: block;
}

.cinema-content h3 {
    font-size: 36px;
    font-family: var(--font-secondary);
    margin-bottom: 10px;
    line-height: 1.1;
}

.cinema-desc {
    font-size: 15px;
    max-width: 500px;
    margin-bottom: 20px;
    opacity: 0.9;
    color: #eee;
    transform: translateY(20px);
    opacity: 0;
    /* Hidden initially or visible? Let's hide to reveal on hover for desktop */
    transition: all 0.5s ease;
    height: 0;
    /* Collapse space */
    overflow: hidden;
}

.btn-text-white {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 4px;
    display: inline-block;
    align-self: flex-start;
    transition: all 0.3s ease;
}

/* Hover Effects */
.cinema-card:hover .cinema-bg {
    transform: scale(1.05);
    /* Slow zoom */
}

.cinema-card:hover .cinema-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
    /* Darker bottom */
}

.cinema-card:hover .cinema-desc {
    opacity: 1;
    transform: translateY(0);
    height: auto;
    /* Expand */
    margin-bottom: 24px;
}

.cinema-card:hover .btn-text-white {
    border-color: #fff;
    transform: translateX(5px);
}

/* Tablet/Mobile Adjustments */
@media (max-width: 768px) {
    .cinema-card {
        height: 350px;
    }

    .cinema-content h3 {
        font-size: 28px;
    }

    /* On mobile, show description always or just keep simplistic? 
       Let's show description always for better UX implies no hover */
    .cinema-desc {
        opacity: 1;
        transform: none;
        height: auto;
        margin-bottom: 20px;
    }
}


/* ---------- ATMOSPHERIC LOCATION ---------- */
.location-atmospheric {
    position: relative;
    height: 600px;
    width: 100%;
    overflow: hidden;
    padding: 0 !important;
    /* Override generic section padding */
    display: block;
    /* Ensure block */
}

.location-map-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.location-map-layer iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.location-cover-layer {
    position: absolute;
    inset: 0;
    z-index: 10;
    background-color: #1a1a1a;
    display: flex;
    flex-direction: row;
    /* Split screen default */
    width: 100%;
    height: 100%;
    transition: opacity 1s ease, visibility 1s ease;
    opacity: 1;
    visibility: visible;
}

.cover-text-panel {
    flex: 1;
    background: #111;
    /* Dark solid background for text */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* Left align text */
    padding: 60px 80px;
    z-index: 2;
}

.cover-video-panel {
    flex: 1.2;
    /* Video takes slightly more space */
    position: relative;
    overflow: hidden;
    height: 100%;
}

.cover-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Update content styles for split screen */
.cover-content {
    max-width: 100%;
    text-align: left;
    color: #fff;
    padding: 0;
}

.cover-content h2 {
    font-size: 48px;
    margin-bottom: 24px;
}

/* Adjust button for left alignment */
.btn-outline-white {
    align-self: flex-start;
}

/* Responsive adjustment */
@media (max-width: 900px) {
    .location-atmospheric {
        height: auto;
        /* Allow section to grow */
    }

    .location-cover-layer {
        position: relative;
        /* Make relative so parent sees height */
        flex-direction: column-reverse;
        /* Text bottom, Video top */
        height: auto;
    }

    .cover-video-panel {
        flex: none;
        width: 100%;
        height: 400px;
        /* Fixed height for video area */
    }

    .cover-text-panel {
        flex: none;
        width: 100%;
        height: auto;
        padding: 60px 30px;
        /* Comfortable padding */
        justify-content: center;
        align-items: center;
        /* Center content on mobile */
        text-align: center;
    }

    .cover-content {
        text-align: center;
        width: 100%;
        max-width: 500px;
        /* Readability constraint */
        padding: 0;
    }

    .cover-content h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .cover-content h3 {
        font-size: 14px;
        margin-bottom: 15px;
        display: block;
    }

    .cover-content p {
        display: block;
        /* Show description again */
        font-size: 16px;
        margin-bottom: 25px;
        opacity: 0.9;
    }


    .btn-outline-white {
        align-self: center;
        /* Center button */
        margin-top: 10px;
    }
}

.cover-overlay {
    position: absolute;
    inset: 0;
    /* Reduced darkness to show video clearly */
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}



.cover-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 20px;
    max-width: 600px;
}

.cover-content h2 {
    font-family: var(--font-secondary);
    font-size: 42px;
    margin-bottom: 20px;
}

.cover-content h3 {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.cover-content p {
    font-size: 18px;
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 30px;
}


.btn-outline-white {
    background: rgba(255, 255, 255, 0.05);
    /* Glassy touch */
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 16px 36px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(4px);
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-outline-white:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline-white::after {
    content: "→";
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-outline-white:hover::after {
    transform: translateX(4px);
}

/* State: Map Visible */
.location-atmospheric.map-visible .location-cover-layer {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    /* Let clicks pass through to map */
}

/* Close Map Button */
.btn-close-map {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    color: #111;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 20;
    /* Keep above map */
    display: flex;
    align-items: center;
    gap: 5px;
}

.location-atmospheric.map-visible .btn-close-map {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.btn-close-map:hover {
    background: #111;
    color: #fff;
}


/* ---------- GLASSMORPHISM CARD (New) ---------- */
.glass-card {
    background: rgba(0, 0, 0, 0.3);
    /* Dark glass for contrast with white text */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 50px 40px;
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.35);
}


/* ---------- MINIMALIST CONTACT ---------- */
.contact-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-size: 48px;
    margin-bottom: 10px;
}

.contact-subtitle {
    margin-bottom: 50px;
    color: #666;
    font-size: 16px;
}

.minimalist-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: left;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 15px 0;
    font-size: 18px;
    font-family: var(--font-secondary);
    color: #333;
    transition: border-color 0.3s, padding-left 0.3s;
    border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #111;
    padding-left: 10px;
    /* Subtle visual cue */
}

.form-group textarea {
    resize: none;
    height: 100px;
}

.btn-text-only {
    background: none;
    border: none;
    font-family: var(--font-primary);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    cursor: pointer;
    font-weight: 600;
    padding: 10px 0;
    align-self: flex-start;
    transition: opacity 0.3s, transform 0.3s;
}

.btn-text-only:hover {
    opacity: 0.7;
    transform: translateX(10px);
}

/* Mobile Adjustments */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrapper {
        order: -1;
        /* Image first on mobile */
    }

    .tours-container {
        grid-template-columns: 1fr;
    }

    .tour-card:nth-child(even) {
        transform: none;
        /* Disable stagger on mobile */
    }

    /* Atmospheric Location Mobile override handled in main media query */
    /* .location-atmospheric height is now auto */

    .cover-content h2 {
        font-size: 32px;
    }
}

/* ---------- PHOTO CARDS (Suites & Galeria) ---------- */

.photo-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    /* Ensure it takes full width of grid cell if needed, or behaves like a block */
    display: block;
}

.photo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.photo-card:hover img {
    transform: scale(1.05);
}

/* ---------- PARALLAX ---------- */

.parallax {
    background-image: url(/assets/5.jpeg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    height: 60vh;
}



/* ---------- FOOTER ---------- */

footer {
    padding: 60px 10%;
    background: #111;
    color: #888;
    font-size: 13px;
    border-top: 1px solid #222;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

/* BRAND Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.footer-logo {
    max-width: 80px;
    height: auto;
    margin-bottom: 5px;
    opacity: 0.9;
}

.footer-brand span:first-of-type {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: #fff;
    letter-spacing: 1px;
}

.footer-rights {
    font-size: 11px;
    opacity: 0.6;
}

/* SOCIAL Section */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.social-link {
    color: #aaa;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: #c5a065;
    transform: translateY(-3px);
}

/* LINKS Section */
.footer-links {
    text-align: right;
}

/* CONTACT Section */
.footer-contact {
    text-align: left;
    /* Or center, or match structure */
}

.footer-contact h4,
.footer-links h4 {
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 500;
}

.footer-contact ul,
.footer-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact a,
.footer-links a {
    text-decoration: none;
    color: #888;
    transition: color 0.3s ease;
}

.footer-contact a:hover,
.footer-links a:hover {
    color: #c5a065;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .footer-brand {
        text-align: center;
        order: 2;
        /* Put brand/copyright at bottom */
    }

    .footer-social {
        order: 1;
        /* Icons first */
        margin-bottom: 10px;
    }

    .footer-links {
        text-align: center;
        order: 0;
        /* Links top or middle? Let's put Links Top or Middle. Actually, standard is usually Links -> Social -> Copy. Let's try Social -> Links -> Copy */
        order: 0;
    }
}

/* ---------- RESPONSIVE ---------- */

/* Mobile Bottom Bar (Hidden by default on Desktop) */
.mobile-bottom-bar {
    display: none;
}

/* Responsiveness */
@media (max-width: 900px) {
    .awasi-nav {
        padding: 18px 24px;
    }

    /* Hide Navbar Button on Mobile */
    .nav-right .btn-reservar {
        display: none;
    }

    /* Show Bottom Bar on Mobile */
    .mobile-bottom-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 15px 24px;
        justify-content: center;
        align-items: center;
        z-index: 1005;
        border-top: 1px solid #eee;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);

        /* Transition for Fade Out */
        transition: opacity 0.5s ease, visibility 0.5s ease;
        opacity: 1;
        visibility: visible;
    }

    .mobile-bottom-bar.hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .mobile-bottom-bar a {
        display: block;
        width: 100%;
        text-align: center;
        background: #111;
        color: #fff;
        padding: 14px;
        text-decoration: none;
        text-transform: uppercase;
        font-family: var(--font-primary);
        font-size: 13px;
        letter-spacing: 2px;
        border-radius: 4px;
        font-weight: 500;
    }

    /* Adjust footer or content so it's not hidden behind the bar */
    footer {
        padding-bottom: 90px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 16px;
    }

    section {
        padding: 80px 7%;
    }

    .form-row {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .hero {
        height: 100vh;
    }
}

/* Audio Control Button */
.audio-control {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;

    /* Modern Glassmorphism */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;

    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;

    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.audio-control:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.audio-control svg {
    /* Ensure icon size */
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}


/* ---------- MASONRY GALLERY ---------- */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.masonry-grid .photo-card {
    width: 100%;
    height: 300px;
    /* Fixed height for uniformity */
    margin: 0;
    display: block;
    overflow: hidden;
    break-inside: auto;
}

/* Hover Overlay extension */
.photo-card {
    position: relative;
    /* Maintain existing styles but ensure relative for overlay */
}

/* Enhanced Hover Effect */
.photo-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.photo-card:hover::after {
    opacity: 1;
}

.photo-card:hover img {
    transform: scale(1.08);
    /* Slightly stronger zoom */
}

/* Grid responsiveness is handled by auto-fill */




/* ---------- ABOUT / NOSOTROS SPLIT LAYOUT ---------- */
.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content {
    flex: 1;
    text-align: left;
    padding: 20px;
}

.about-subtitle,
.section-subtitle {
    display: block;
    font-family: var(--font-primary);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c5a065;
    margin-bottom: 16px;
    font-weight: 500;
}

.about-content h2 {
    font-family: var(--font-secondary);
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #222;
    text-transform: none;
    letter-spacing: 0;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.about-highlight {
    border-left: 3px solid #c5a065;
    padding-left: 24px;
    margin: 30px 0;
}

.about-highlight p {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-style: italic;
    color: #333;
    line-height: 1.6;
}

.about-text-secondary {
    font-size: 14px;
    color: #777;
    margin-top: 20px;
}

/* Responsiveness */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        gap: 40px;
    }

}

/* ---------- TOURS 2-CARD LAYOUT ---------- */
.tours-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.tour-card {
    background: #fff;
    width: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.tour-image {
    height: 280px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.08);
    /* Mild zoom */
}

.tour-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.tour-content h3 {
    font-family: var(--font-secondary);
    font-size: 26px;
    margin-bottom: 12px;
    color: #222;
    text-transform: none;
    /* Keep natural reading */
}

.tour-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 24px;
    flex: 1;
    /* Pushes button down if text varies */
}

/* Elegant Button for Tours */
.btn-tour {
    align-self: center;
    padding: 12px 30px;
    background: #fdfdfd;
    border: 1px solid #c5a065;
    color: #c5a065;
    font-family: var(--font-primary);
    font-size: 13px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.btn-tour:hover {
    background: #c5a065;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 900px) {
    .tours-container {
        flex-direction: column;
        align-items: center;
    }

    .tour-card {
        width: 100%;
        max-width: 450px;
    }
}

/* ---------- REFUGIOS PAGE ---------- */

.hero-internal {
    height: 60vh;
    background-image: url('../assets/hero4.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.unit-section {
    padding: 80px 10%;
    background: #fff;
}

.unit-section.alt-bg {
    background: #fafafa;
}

.unit-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.unit-container.reverse {
    flex-direction: row-reverse;
}

.unit-content {
    flex: 1;
}

.unit-gallery {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
}

.unit-subtitle {
    display: block;
    font-family: var(--font-primary);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c5a065;
    margin-bottom: 10px;
    font-weight: 600;
}

.unit-content h2 {
    font-family: var(--font-secondary);
    font-size: 42px;
    margin-bottom: 10px;
    color: #222;
    text-transform: none;
}

.unit-price {
    font-family: var(--font-primary);
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 300;
}

.unit-price span {
    font-size: 14px;
    color: #777;
}

.unit-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.unit-features {
    list-style: none;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.unit-features li {
    font-size: 14px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 8px;
}

.unit-features li::before {
    content: "•";
    color: #c5a065;
    font-size: 20px;
}

.unit-note {
    font-size: 13px;
    color: #888;
    font-style: italic;
    margin-bottom: 30px;
}

/* Carousel Styles */
.carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
}

.carousel-track::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.carousel-track img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    scroll-snap-align: start;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    transition: all 0.3s ease;
    opacity: 1;
    /* Always visible */
}

.carousel-btn:hover {
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

/* Responsive Refugios */
@media (max-width: 900px) {

    .unit-container,
    .unit-container.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .unit-gallery {
        width: 100%;
        aspect-ratio: 16/9;
    }
}

/* Refugios Carousel (Index) */
.refugios-section {
    position: relative;
    height: 80vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    /* Remove default padding */
}

.refugios-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.refugios-carousel img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.refugios-carousel img.active {
    opacity: 1;
}

.refugios-overlay-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    padding: 40px;
    border-radius: 4px;
    max-width: 600px;
}

.refugios-overlay-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
}

.refugios-overlay-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #f0f0f0;
}

/* Location Section */
.location-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.location-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.location-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.location-content h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.5;
}

.location-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.location-map {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.location-map iframe {
    display: block;
    width: 100%;
    height: 450px;
}

@media (max-width: 768px) {
    .location-container {
        flex-direction: column;
    }

    .location-content {
        text-align: center;
    }
}

/* ---------- VIDEO HIGHLIGHT SECTION ---------- */


/* Gallery Video Support */
.photo-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.photo-card:hover video {
    transform: scale(1.05);
    /* Match image zoom */
}

.cover-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}