/* Custom Properties / Tokens */
:root {
    --primary-color: #2F4F4F; /* Dark Slate Gray (Nature/Forest) */
    --primary-light: #4A7070;
    --secondary-color: #D2B48C; /* Tan/Beige (Earth/Wood) */
    --accent-color: #25D366; /* WhatsApp Green */
    --bg-light: #F5F5DC; /* Beige */
    --bg-white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #F8F9FA;
    --font-main: 'Outfit', sans-serif;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ================================================
   GLAMPING SELECTOR SPLASH SCREEN
   ================================================ */

.gs-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    overflow: hidden;
    background: #000;
    /* Transition for the exit animation */
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.gs-overlay.gs-exit {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Slider track — holds both panels side by side */
.gs-track {
    display: flex;
    position: relative;
    width: 200%;
    height: 100%;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    cursor: grab;
    user-select: none;
}

.gs-track.grabbing {
    cursor: grabbing;
    transition: none;
}

/* Individual glamping panel */
.gs-panel {
    position: relative;
    width: 50%;   /* each is 50% of 200%-wide track = 100vw */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background photo */
.gs-panel-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
    filter: brightness(0.7) saturate(1.15);
}

.gs-panel.gs-active .gs-panel-bg {
    transform: scale(1.0);
}

/* Gradient overlay for readability */
.gs-panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.15) 0%,
        rgba(0,0,0,0.1) 30%,
        rgba(0,0,0,0.55) 75%,
        rgba(0,0,0,0.80) 100%
    );
    z-index: 1;
}

/* Content inside a panel */
.gs-panel-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    gap: 1rem;
}

/* Big logo */
.gs-logo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid rgba(255,255,255,0.85);
    box-shadow: 0 0 0 8px rgba(255,255,255,0.2), 0 20px 60px rgba(0,0,0,0.5);
    animation: gs-logo-pulse 3s ease-in-out infinite;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 0.5rem;
}

.gs-logo:hover {
    transform: scale(1.06);
    box-shadow: 0 0 0 12px rgba(255,255,255,0.25), 0 25px 70px rgba(0,0,0,0.6);
}

/* El Pinar logo: rectangular card — PNG has white background */
.gs-logo-pinar {
    width: 260px;
    height: auto;
    border-radius: 16px;
    object-fit: contain;
    background: #fff;
    padding: 14px 18px;
    border-radius: 18px;
}

@keyframes gs-logo-pulse {
    0%, 100% { box-shadow: 0 0 0 8px rgba(255,255,255,0.2), 0 20px 60px rgba(0,0,0,0.5); }
    50%       { box-shadow: 0 0 0 14px rgba(255,255,255,0.12), 0 20px 60px rgba(0,0,0,0.5); }
}

.gs-name {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    font-weight: 700;
    -webkit-text-stroke: 3.5px #000;
    paint-order: stroke fill;
    text-shadow: 0 2px 12px rgba(0,0,0,0.2);
    margin: 0;
    letter-spacing: -0.5px;
}

.gs-tagline {
    font-size: clamp(0.9rem, 2vw, 1.15rem);
    color: #fff;
    max-width: 340px;
    -webkit-text-stroke: 2px #000;
    paint-order: stroke fill;
    text-shadow: 0 1px 6px rgba(0,0,0,0.2);
    margin: 0;
    line-height: 1.5;
}

.gs-enter-btn {
    margin-top: 0.5rem;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.85);
    color: #fff;
    padding: 0.85rem 2.5rem;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    letter-spacing: 0.5px;
}

.gs-enter-btn:hover {
    background: rgba(255,255,255,0.9);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

/* Swipe hint bar */
.gs-hint {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 60px;
    padding: 0.6rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    white-space: nowrap;
    animation: gs-hint-appear 1.2s ease 0.6s both, gs-hint-bounce 2.5s ease 2s infinite;
    pointer-events: none;
}

.gs-hint-icon {
    font-size: 1.1rem;
    color: var(--secondary-color);
    animation: gs-hint-wiggle 2.5s ease 2s infinite;
}

.gs-hint-arrows {
    display: flex;
    gap: 6px;
    font-size: 0.8rem;
    opacity: 0.7;
}

@keyframes gs-hint-appear {
    from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes gs-hint-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(-4px); }
}

@keyframes gs-hint-wiggle {
    0%, 60%, 100% { transform: rotate(0deg); }
    20%            { transform: rotate(-15deg); }
    40%            { transform: rotate(15deg); }
}

/* Dot indicators */
.gs-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    display: flex;
    gap: 14px;
    align-items: center;
}

.gs-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    border: 2px solid rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.35s ease;
    padding: 0;
}

.gs-dot.active {
    background: #fff;
    width: 28px;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(255,255,255,0.5);
}

/* Bottom brand watermark */
.gs-brand {
    position: absolute;
    bottom: 4.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    color: rgba(255,255,255,0.55);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    font-weight: 500;
}

/* Left / Right labels on panels (desktop only) */
@media (min-width: 768px) {
    .gs-panel::before {
        content: attr(data-label);
        position: absolute;
        top: 50%;
        z-index: 3;
        color: rgba(255,255,255,0.18);
        font-size: 10vw;
        font-weight: 900;
        letter-spacing: -2px;
        pointer-events: none;
        user-select: none;
    }
    #gs-panel-bh::before { content: ''; right: 2rem; transform: translateY(-50%); }
    #gs-panel-ep::before { content: ''; left: 2rem; transform: translateY(-50%); }
}

/* Mobile tweaks */
@media (max-width: 600px) {
    .gs-logo { width: 140px; height: 140px; }
    .gs-logo-pinar { width: 200px; height: auto; padding: 10px 14px; }
    .gs-hint { font-size: 0.78rem; padding: 0.5rem 1.1rem; }
    .gs-enter-btn { padding: 0.75rem 2rem; font-size: 0.95rem; }
}

/* Panel content entrance animation */
.gs-panel-content {
    animation: gs-content-appear 1s ease 0.3s both;
}

@keyframes gs-content-appear {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Vertical center divider between panels on desktop */
@media (min-width: 769px) {
    .gs-track::after {
        content: '';
        position: absolute;
        left: 50%;
        top: 10%;
        height: 80%;
        width: 1px;
        background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.35) 30%, rgba(255,255,255,0.35) 70%, transparent);
        transform: translateX(-50%);
        pointer-events: none;
        z-index: 5;
    }
}

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; color: var(--primary-color); }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: #555;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    image-rendering: auto;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    backface-visibility: hidden;
}

video {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 5rem 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.bg-dark h2, .bg-dark p {
    color: var(--text-light);
}

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

.section-title {
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

/* Buttons */
.btn-primary, .btn-outline-light, .btn-outline, .btn-whatsapp {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
    font-family: var(--font-main);
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(210, 180, 140, 0.4);
}

.btn-primary:hover {
    background-color: #c0a07a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(210, 180, 140, 0.6);
}

.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--primary-color);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

.btn-whatsapp {
    background-color: var(--accent-color);
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp-outline {
    background: rgba(37, 211, 102, 0.2);
    color: #fff;
    border: 1px solid #25D366;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    backdrop-filter: blur(5px);
}

.btn-whatsapp-outline:hover {
    background: #25D366;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background-color: rgba(47, 79, 79, 0.95);
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

/* Tabs Wrapper */
.nav-tabs-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.nav-tabs-title {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Tabs */
.nav-tabs {
    display: flex;
    gap: 6px;
    background: rgba(0, 0, 0, 0.3);
    padding: 5px;
    border-radius: 40px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    flex-wrap: nowrap;
}

.nav-tab {
    background: transparent;
    border: none;
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.nav-logo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.4);
    flex-shrink: 0;
}

.nav-tab.active .nav-logo {
    border-color: #fff;
}

.nav-tab:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.nav-tab.active {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transform: translateY(-1px);
}

/* Glamping Views */
.glamping-view {
    display: none;
    animation: fadeIn 0.5s ease;
}

.glamping-view.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero */
.hero {
    height: 100vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    /* Improvements for video quality */
    filter: contrast(1.1) saturate(1.1) brightness(1.05);
    transform: translate3d(0, 0, 0); /* Force hardware acceleration */
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient only at the bottom for text legibility, clear at the top/center */
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, transparent 40%, transparent 60%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1rem;
    color: #fff;
    -webkit-text-stroke: 3.5px #000;
    paint-order: stroke fill;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 2rem;
    -webkit-text-stroke: 2px #000;
    paint-order: stroke fill;
    text-shadow: 0 1px 6px rgba(0,0,0,0.2);
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.hero .btn-primary {
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

.hero-buttons .btn-primary, 
.hero-buttons .btn-whatsapp-outline {
    animation: none; /* override the previous generic animation so they animate together as a group */
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary-color);
    border-radius: var(--border-radius);
    z-index: -1;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Accommodations */
.acc-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    margin-bottom: 4rem;
    transition: var(--transition);
}

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

.acc-card.reverse {
    flex-direction: row-reverse;
}

.acc-gallery {
    width: 50%;
    padding: 1.5rem;
}

.acc-main-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: opacity 0.3s ease;
    filter: contrast(1.03) saturate(1.05);
    transform: translateZ(0);
    backface-visibility: hidden;
}

.acc-thumbnails {
    display: flex;
    gap: 10px;
}

.acc-thumb {
    width: calc(33.333% - 7px);
    height: 80px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.75;
    filter: contrast(1.03) saturate(1.05);
    transform: translateZ(0);
}

.acc-thumb:hover, .acc-thumb.active-thumb {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.acc-info {
    width: 50%;
    padding: 2rem 3rem 2rem 1rem;
    display: flex;
    flex-direction: column;
}

.acc-card.reverse .acc-info {
    padding: 2rem 1rem 2rem 3rem;
}

/* Push buttons to the bottom of the info column */
.acc-info > div:last-child {
    margin-top: auto;
    padding-top: 1.5rem;
}

.acc-info h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.acc-desc {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.acc-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.acc-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-weight: 500;
}

.acc-features i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

/* Gallery Carousel Section */
.gallery-carousel-section {
    padding-top: 0; /* Attach closely to previous section */
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    background-color: #000;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide img, .carousel-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity 0.5s ease;
    /* Improvements for video quality */
    filter: contrast(1.1) saturate(1.1) brightness(1.05);
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.carousel-slide.active img, .carousel-slide.active video {
    opacity: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary-color);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

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

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

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    background: rgba(0,0,0,0.3);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.indicator.active {
    background: #fff;
    transform: scale(1.3);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 2.5rem 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

/* Reviews */
.reviews {
    background-color: #f8f9fa;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.review-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid #eee;
}

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

.stars {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.review-text-container {
    position: relative;
    max-height: 120px;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-bottom: 0.5rem;
}

.review-text-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(transparent, #fff);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.review-text-container.expanded {
    max-height: 1500px;
}

.review-text-container.expanded::after {
    opacity: 0;
}

.review-text-container.no-gradient::after {
    display: none;
}

.review-text {
    font-size: 1rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 0;
    line-height: 1.6;
}

.btn-read-more {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    text-decoration: underline;
}

.btn-read-more:hover {
    color: var(--secondary-color);
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.reviewer-info h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--text-dark);
}

.reviewer-info span {
    font-size: 0.8rem;
    color: #888;
}

/* Location */
.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.location-map {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    height: 350px;
}

/* Booking */
.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info {
    margin-top: 2rem;
}

.contact-info p {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-info p i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.booking-form-container {
    background: #fff;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

input, select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
    color: var(--text-dark);
}

input:focus, select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(47, 79, 79, 0.1);
}

/* Footer */
.footer {
    background-color: #1a2a2a;
    color: #fff;
    padding: 3rem 0;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.footer p {
    color: #aaa;
    margin: 0;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebe57;
}

/* Floating Instagram */
.instagram-float-wrapper {
    position: fixed;
    bottom: 105px; /* Above WhatsApp button */
    right: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 999;
}

.instagram-tooltip {
    background-color: #fff;
    color: var(--text-dark);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    white-space: nowrap;
    position: relative;
    animation: bounceTooltip 2s infinite;
}

.instagram-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 8px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

@keyframes bounceTooltip {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-5px); }
}

.instagram-float {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: var(--transition);
    text-decoration: none;
}

.instagram-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: white;
}

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

.scroll-anim {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-anim.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   RESPONSIVE — COMPREHENSIVE
   =========================== */

/* ---- Tablet & small desktop (≤992px) ---- */
@media (max-width: 992px) {
    /* Navbar: 2-row layout — logo+reservar on top, tabs below */
    .nav-container {
        flex-direction: column;
        gap: 6px;
        padding: 0.5rem 0;
        align-items: center;
    }

    /* First row: logo + Reservar button side by side */
    .nav-container > .logo {
        /* Floated by JS tab logic — keep natural flow */
    }

    .navbar {
        padding: 0.7rem 0;
    }

    .navbar.scrolled {
        padding: 0.5rem 0;
    }

    /* Show the Reservar button — make it compact */
    .nav-book-btn {
        display: inline-block;
        padding: 0.45rem 1.1rem;
        font-size: 0.82rem;
        border-radius: 20px;
        border-width: 1.5px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* Wrap logo + nav-book-btn in a row */
    .nav-container {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        grid-template-rows: auto auto;
        gap: 6px 12px;
        align-items: center;
        padding: 0.6rem 0;
    }

    /* Logo: left cell */
    .nav-container > .logo {
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
    }

    /* Reserve button: right cell */
    .nav-container > .nav-book-btn {
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
    }

    /* Tabs wrapper: full width, second row */
    .nav-container > .nav-tabs-wrapper {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-self: center;
    }

    /* About / Location / Booking: single column */
    .about-grid,
    .location-content,
    .booking-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
    }

    .about-image::before {
        display: none;
    }

    /* Accommodation cards: stack vertically */
    .acc-card,
    .acc-card.reverse {
        flex-direction: column;
    }

    .acc-gallery,
    .acc-info {
        width: 100%;
    }

    .acc-gallery {
        padding: 1.2rem 1.2rem 0;
    }

    .acc-info {
        padding: 1.5rem 1.5rem 2rem;
    }

    .acc-card.reverse .acc-info {
        padding: 1.5rem 1.5rem 2rem;
    }

    .acc-main-img {
        height: 280px;
    }

    /* Gallery carousel: shorter on tablet */
    .carousel-container {
        height: 420px;
        border-radius: 8px;
    }

    /* Section spacing */
    .section {
        padding: 3.5rem 0;
    }
}

/* ---- Mobile (≤768px) ---- */
@media (max-width: 768px) {

    /* Base typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }
    h3 { font-size: 1.3rem; }

    .section {
        padding: 2.8rem 0;
    }

    .container {
        width: 94%;
    }

    /* Navbar: tighter grid */
    .nav-container {
        gap: 5px 8px;
        padding: 0.5rem 0;
    }

    .logo {
        font-size: 1.1rem;
    }

    /* Reservar button: even more compact on mobile */
    .nav-book-btn {
        padding: 0.38rem 0.85rem;
        font-size: 0.76rem;
        border-radius: 16px;
    }

    .nav-tabs-title {
        font-size: 0.6rem;
        letter-spacing: 1.2px;
    }

    .nav-tab {
        padding: 0.4rem 0.75rem;
        font-size: 0.78rem;
        gap: 5px;
    }

    .nav-logo {
        width: 22px;
        height: 22px;
    }

    /* Hero section */
    .hero {
        height: 100svh; /* safe viewport height on mobile */
        min-height: 580px;
    }

    .hero h1 {
        font-size: clamp(1.9rem, 7vw, 2.8rem);
        margin-bottom: 0.75rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-whatsapp-outline {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* About */
    .about-image img {
        height: 260px;
    }

    .about-text p {
        font-size: 1rem;
    }

    /* Accommodation cards */
    .acc-main-img {
        height: 240px;
    }

    .acc-info h3 {
        font-size: 1.5rem;
    }

    .acc-desc {
        font-size: 1rem;
    }

    .acc-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    /* Accommodation card action buttons */
    .acc-info > div[style*="flex"] {
        flex-direction: column !important;
        gap: 12px !important;
        margin-top: 1.2rem;
    }

    .acc-info > div[style*="flex"] a {
        flex: none !important;
        width: 100% !important;
        text-align: center !important;
        box-sizing: border-box;
        display: block !important;
        padding: 0.85rem 1rem !important;
        font-size: 1rem !important;
    }

    .acc-thumbnails {
        gap: 8px;
    }

    .acc-thumb {
        height: 60px;
    }

    /* Gallery carousel */
    .carousel-container {
        height: 260px;
        border-radius: 8px;
    }

    .carousel-btn {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .carousel-btn.prev { left: 12px; }
    .carousel-btn.next { right: 12px; }

    .carousel-indicators {
        bottom: 14px;
        padding: 7px 14px;
        gap: 8px;
    }

    .indicator {
        width: 9px;
        height: 9px;
    }

    /* Services grid */
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    .service-card i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    /* Reviews */
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    /* Location map */
    .location-map {
        height: 260px;
    }

    /* Booking form */
    .booking-form-container {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Policies grid: single column */
    div[style*="grid-template-columns:1fr 1fr"] {
        display: flex !important;
        flex-direction: column;
    }

    /* Floating buttons */
    .whatsapp-float {
        bottom: 18px;
        right: 16px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .instagram-float-wrapper {
        bottom: 80px;
        right: 16px;
    }

    .instagram-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .instagram-tooltip {
        font-size: 0.78rem;
        padding: 5px 10px;
    }

    /* Section title */
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
}

/* ---- Small mobile (≤480px) ---- */
@media (max-width: 480px) {

    /* Nav: compact tabs */
    .nav-tabs {
        padding: 3px;
        gap: 3px;
    }

    .nav-tab {
        padding: 0.38rem 0.6rem;
        font-size: 0.75rem;
    }

    .nav-logo {
        width: 20px;
        height: 20px;
    }

    /* Even smaller Reservar button */
    .nav-book-btn {
        padding: 0.32rem 0.7rem;
        font-size: 0.72rem;
    }

    .logo {
        font-size: 1rem;
    }

    /* Hero */
    .hero h1 {
        font-size: clamp(1.7rem, 8vw, 2.2rem);
    }

    /* Services: 1 column only on very small screens */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Accommodation card gallery padding */
    .acc-gallery {
        padding: 0.8rem 0.8rem 0;
    }

    .acc-info {
        padding: 1.2rem 1rem 1.5rem;
    }

    .acc-main-img {
        height: 210px;
    }

    /* Carousel even shorter */
    .carousel-container {
        height: 220px;
    }

    /* Gallery carousel buttons hidden to save space — swipe is enough */
    .carousel-btn {
        display: none;
    }

    /* Booking */
    .booking-form-container {
        padding: 1.2rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 0;
        text-align: center;
    }

    /* Section spacing */
    .section {
        padding: 2.2rem 0;
    }

    .section-title {
        font-size: 1.4rem;
    }
}

/* ---- Extra small (≤360px) ---- */
@media (max-width: 360px) {
    /* Only show logo icon on ultra-small tabs — hide text to save space */
    .nav-tab span {
        display: none;
    }

    .nav-tab {
        padding: 0.38rem 0.55rem;
    }

    /* Logo & button: ultra compact */
    .logo {
        font-size: 0.9rem;
    }

    .nav-book-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.68rem;
    }

    .hero h1 {
        font-size: 1.55rem;
    }

    .hero p {
        font-size: 0.9rem;
    }
}



/* ===========================
   ACCOMMODATION MODAL - PREMIUM
   =========================== */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    overflow-y: auto;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.acc-modal-content {
    background: #fff;
    width: 100%;
    max-width: 960px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    margin: auto;
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: scale(0.92) translateY(30px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0,0,0,0.55);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}
.modal-close:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

/* Hero image at the top */
.modal-hero-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: opacity 0.4s ease;
    filter: contrast(1.03) saturate(1.05);
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Thumbnail strip */
.modal-thumbnails {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 12px 20px;
    background: #f8f6f2;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color) #e8e4de;
}
.modal-thumbnails::-webkit-scrollbar { height: 5px; }
.modal-thumbnails::-webkit-scrollbar-track { background: #e8e4de; border-radius: 3px; }
.modal-thumbnails::-webkit-scrollbar-thumb { background: var(--secondary-color); border-radius: 3px; }

.modal-thumb {
    width: 90px;
    height: 62px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    flex-shrink: 0;
    opacity: 0.75;
    filter: contrast(1.03) saturate(1.05);
    transform: translateZ(0);
}
.modal-thumb:hover,
.modal-thumb.active-thumb {
    opacity: 1;
    border-color: var(--primary-color);
    transform: scale(1.05);
}

/* Body layout */
.acc-modal-body {
    padding: 28px 32px 36px;
}

.modal-header-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.modal-title {
    color: var(--primary-color);
    margin-bottom: 0;
    font-size: 1.9rem;
    line-height: 1.2;
}

.modal-book-top-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 0.7rem 1.6rem;
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(210,180,140,0.4);
    flex-shrink: 0;
}
.modal-book-top-btn:hover {
    background: #c0a07a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(210,180,140,0.6);
}

/* Two-column grid */
.modal-body-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 1.5rem;
}

.modal-desc {
    color: #555;
    line-height: 1.75;
    font-size: 1.05rem;
    margin-bottom: 0;
}

.modal-specs-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
}

.modal-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.modal-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #444;
    font-size: 0.97rem;
    font-weight: 500;
}
.modal-features-list li i {
    color: var(--secondary-color);
    font-size: 1rem;
    width: 22px;
    text-align: center;
    flex-shrink: 0;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .modal-hero-img { height: 260px; }
    .acc-modal-body { padding: 20px 18px 28px; }
    .modal-title { font-size: 1.5rem; }
    .modal-body-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .modal-header-row { flex-direction: column; align-items: flex-start; }
    .modal-book-top-btn { width: 100%; justify-content: center; }
    .modal-thumb { width: 75px; height: 54px; }

    /* Food menu grid: 1 column on mobile */
    .food-menu-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================== */
/* SECCIÓN ESPACIOS                               */
/* ============================================== */
.espacios-section {
    background: linear-gradient(180deg, #fff 0%, #f5f5dc 100%);
}

/* Grid principal de fotos */
.espacios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
    margin-bottom: 4rem;
}

.espacios-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    cursor: pointer;
    aspect-ratio: 4/3;
}

.espacios-item.espacios-featured {
    grid-column: span 1;
    grid-row: span 2;
    aspect-ratio: auto;
    min-height: 420px;
}

.espacios-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.4s ease;
    display: block;
}

.espacios-item:hover img {
    transform: scale(1.07);
    filter: brightness(0.85);
}

.espacios-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 1.2rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.espacios-item:hover .espacios-overlay {
    opacity: 1;
}

.espacios-overlay span {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* BBQ Feature */
.bbq-feature {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(135deg, #fefefe 0%, #fdf6ed 100%);
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.10);
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(210,180,140,0.18);
}

.bbq-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    height: 380px;
    padding: 16px;
    background: transparent;
}

.bbq-img-main {
    grid-column: 1 / 2;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}

.bbq-img-secondary {
    grid-column: 2 / 3;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}

.bbq-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.4s ease;
    border-radius: 18px;
}

.bbq-images img:hover {
    transform: scale(1.04);
    filter: brightness(0.92);
}

.bbq-info {
    padding: 2.5rem 3rem 2.5rem 0;
}

.bbq-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--secondary-color), #c0955a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(210,180,140,0.4);
}

.bbq-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.bbq-info h3 {
    color: var(--primary-color);
    font-size: 1.7rem;
    margin-bottom: 1rem;
}

.bbq-info p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.bbq-info strong {
    color: var(--primary-color);
}

.bbq-tags {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.bbq-tags span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #444;
}

.bbq-tags i {
    color: var(--secondary-color);
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Responsive Espacios */
@media (max-width: 900px) {
    .espacios-grid {
        grid-template-columns: 1fr 1fr;
    }
    .espacios-item.espacios-featured {
        grid-column: span 2;
        min-height: 280px;
    }
    .bbq-feature {
        grid-template-columns: 1fr;
    }
    .bbq-images {
        height: 260px;
    }
    .bbq-info {
        padding: 2rem;
    }
}

@media (max-width: 600px) {
    .espacios-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .espacios-item.espacios-featured {
        grid-column: span 1;
        min-height: 240px;
    }
    .espacios-item {
        aspect-ratio: 4/3;
    }
    .bbq-images {
        grid-template-columns: 1fr;
        height: 200px;
    }
    .bbq-img-secondary {
        display: none;
    }
}

