@font-face {
    font-family: 'Bell MT';
    src: url('../assets/fonts/BellMTStd-Regular.otf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --color-primary: #1a1a1a;
    --color-secondary: #8B7355;
    --color-accent: #C4A77D;
    --color-light: #F5F0E8;
    --color-white: #FFFFFF;
    --font-serif: 'Bell MT', serif;
    --font-sans: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    opacity: 0;
}

.animate.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate.fade-in {
    animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate.slide-left {
    animation: slideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate.slide-right {
    animation: slideInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate.slide-left {
    animation: slideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate.fade-in-down {
    animation: fadeInDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Header animation on load */
header.animate {
    opacity: 0;
    animation: fadeInDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
}

/* Hero title animation */
.hero-title.animate {
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.5s;
}

/* Hero video fade in */
.hero-video.animate {
    opacity: 0;
    animation: fadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Delays */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1.0s; }
.delay-6 { animation-delay: 1.2s; }

body {
    font-family: var(--font-sans);
    color: var(--color-primary);
    background-color: var(--color-white);
    line-height: 1.6;
}

/* ============================================
   HEADER
   ============================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px 40px;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

header.scrolled {
    background-color: #791826;
    padding: 10px 40px;
}

/* Header Left - Menu + Language */
.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.menu-btn {
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    font-family: var(--font-sans);
}

.menu-btn .menu-icon {
    display: block;
    height: 18px;
    width: auto;
}

.menu-btn .menu-text {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
}

.lang-separator {
    color: var(--color-white);
    opacity: 0.6;
    font-size: 0.9rem;
    margin: 0 5px;
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    font-family: var(--font-sans);
}

.lang-btn svg {
    transition: transform 0.3s ease;
}

.lang-dropdown.active .lang-btn svg {
    transform: rotate(180deg);
}

.lang-options {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 10px;
    background-color: var(--color-white);
    border-radius: 2px;
    padding: 8px 0;
    min-width: 50px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.lang-dropdown.active .lang-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 8px 15px;
    color: var(--color-primary);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: background-color 0.2s ease;
}

.lang-option:hover,
.lang-option.active {
    background-color: var(--color-light);
}

/* Header Center - Logo */
.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.logo {
    display: block;
    position: relative;
    margin-top: -10px;
}

.logo img {
    width: auto;
    transition: all 0.3s ease;
}

/* Logo default (grande) - se extiende hacia abajo */
.logo-default {
    height: 130px;
}

/* Logo sticky (oculto por defecto) */
.logo-sticky {
    height: 40px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
}

/* Cuando está scrolled: sacar default del flujo, mostrar sticky */
header.scrolled .logo-default {
    display: none;
}

header.scrolled .logo-sticky {
    opacity: 1;
    visibility: visible;
    position: static;
    transform: none;
    top: auto;
}

header.scrolled .logo {
    margin-top: 0;
    height: 40px;
}

/* Header Right - Contact Button */
.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.btn-contact {
    display: inline-block;
    padding: 8px 22px;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
}

.btn-contact:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

/* ============================================
   SIDE MENU
   ============================================ */
.side-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 400px;
    height: 100vh;
    background-color: #E5E2DC;
    z-index: 1001;
    padding: 60px 50px;
    transition: left 0.4s ease;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.side-menu.active {
    left: 0;
    visibility: visible;
}

.side-menu-close {
    position: absolute;
    top: 25px;
    right: 35px;
    background: none;
    border: none;
    color: #1a1a1a;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.side-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.side-menu-nav a {
    color: #1a1a1a;
    text-decoration: none;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.side-menu-nav a:hover {
    opacity: 0.6;
}

.side-menu-footer {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.side-menu-brand {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1a1a1a;
    text-transform: uppercase;
    margin: 0;
}

.side-menu-email {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: #1a1a1a;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.side-menu-email:hover {
    opacity: 0.6;
}

.side-menu-social {
    color: #1a1a1a;
    margin-top: 4px;
    transition: opacity 0.3s ease;
}

.side-menu-social:hover {
    opacity: 0.6;
}

.side-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.2));
    z-index: 1;
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--color-white);
    max-width: 900px;
    padding: 0 40px;
    z-index: 2;
    align-self: flex-end;
    margin-bottom: 20px;
}
.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-text {
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* ============================================
   SECTIONS
   ============================================ */
section {
    padding: 100px 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 600;
    color: var(--color-primary);
}

/* Intro Section - Quienes Somos */
.intro {
    background-color: #791826;
    color: #EBE8E5;
    padding: 80px 0 130px 0;
}

.intro-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px 60px;
}

.intro-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 600;
    color: #EBE8E5;
    margin-bottom: 60px;
    line-height: 1;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: end;
}

/* .intro-text-wrapper {
    max-width: 540px;
} */

.intro-text {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
    color: #EBE8E5;
    margin-bottom: 25px;
}

.intro-text strong {
    font-weight: 600;
}

.intro-box-wrapper {
    display: flex;
    align-items: flex-end;
    margin-left: 50px;
}

.intro-box {
    border: 1px solid #EBE8E5;
    border-radius: 15px 0 0 15px;
    border-right: none;
    padding: 25px 40px;
    position: relative;
}

.intro-box::after {
    content: '';
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: 100%;
    width: calc(50vw - 50% + 40px);
    border-top: 1px solid #EBE8E5;
    border-bottom: 1px solid #EBE8E5;
}

@media (max-width: 768px) {
    .intro-box::after {
        display: none;
    }
    
    .intro-box {
        border-radius: 15px;
        border-right: 1px solid #EBE8E5;
    }
}

.intro-box p {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.2;
    color: #EBE8E5;
    margin: 0;
}

/* Gallery Grid Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 400px;
    overflow: hidden;
    padding: 0;
    margin: -100px 0 0 0;
    position: relative;
    z-index: 2;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.05);
}

.gallery-video {
    background-color: #1a1a1a;
}

.gallery-video video {
    object-fit: cover;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        height: 600px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
    }
    
    .gallery-item {
        height: 200px;
    }
}

/* Gallery Grid B Section */
.gallery-grid-b {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 400px;
    overflow: hidden;
    padding: 0;
    margin: -80px 0 0 0;
    position: relative;
    z-index: 2;
}

.gallery-grid-b .gallery-item img,
.gallery-grid-b .gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .gallery-grid-b {
        grid-template-columns: repeat(2, 1fr);
        height: 600px;
    }
}

@media (max-width: 768px) {
    .gallery-grid-b {
        margin-top: -60px;
    }
}

@media (max-width: 576px) {
    .gallery-grid-b {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
    }
    
    .gallery-grid-b .gallery-item {
        height: 200px;
    }
}

/* History Section - Donde la historia dejó huella */
.history-section {
    background-color: #EBE8E5;
    padding: 80px 0 70px 0;
}

.history-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 100px;
    align-items: start;
}

.history-header h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 600;
    color: #791826;
    line-height: 1.1;
    margin: 0;
}

.history-content p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
    color: #1D1D1B;
    margin-bottom: 25px;
}

.history-highlight {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 800 !important;
    color: #791826 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 35px;
    line-height: 1.6;
}

/* Parallax Section - Efecto fondo fijo */
.parallax-section {
    height: 500px;
    background-image: url('../assets/images/fondo-parallax.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

@media (max-width: 768px) {
    .parallax-section {
        height: 400px;
        background-attachment: scroll;
    }
}

.lodge-cta-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px 80px 20px;
    background-color: var(--color-white);
    background-color: #F5F0E8;
}

.btn-lodge-cta {
    display: inline-block;
    background-color: #791826;
    color: var(--color-white);
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    padding: 5px 40px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-lodge-cta:hover {
    background-color: #5a121c;
    transform: translateY(-2px);
}

/* El Lodge / Location Section */
.lodge-location {
    background-color: #EBE8E5;
    padding:  80px 0 70px 0;
}

.lodge-location-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.lodge-info h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 600;
    color: #1D1D1B;
    margin-bottom: 25px;
}

.lodge-info > p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
    color: #1D1D1B;
    margin-bottom: 30px;
    max-width: 450px;
}

.btn-info {
    display: inline-block;
    padding: 8px 22px;
    border: 1px solid #1a1a1a;
    color: #1D1D1B;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-bottom: 50px;
}

.btn-info:hover {
    background-color: #1D1D1B;
    color: #F5F0E8;
}

.location-details h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: #791826;
    margin-bottom: 30px;
}

.location-item {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 20px;
    align-items: start;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.location-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.location-icon {
    width: 65px;
    height: 65px;
}

.location-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.location-text h4 {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.location-text p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
    color: #444;
    margin-bottom: 8px;
}

.location-note {
    grid-column: 1 / -1;
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
    margin-top: 8px;
}

.lodge-map {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lodge-map img {
    width: 100%;
    max-width: 550px;
    height: auto;
}

@media (max-width: 992px) {
    .lodge-location-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    
    
    .lodge-map img {
        max-width: 400px;
    }
}

/* Coto de Caza Section */
.coto-section {
    background-color: #791826;
    color: #CBC4BA;
    padding: 80px 0 140px 0;
    position: relative;
    z-index: 1;
}

.coto-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.coto-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 600;
    color: #CBC4BA;
    margin-bottom: 60px;
}

.coto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.coto-left h4 {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    color: #CBC4BA;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.coto-left p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #CBC4BA;
}

.coto-highlight {
    margin-top: 30px;
}

.coto-highlight strong {
    font-weight: 600;
}

.coto-right > p {
    font-size: 1rem;
    margin-bottom: 25px;
}

.coto-features {
    list-style: none;
    margin-bottom: 40px;
}

.coto-features li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.coto-features img {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    margin-top: 3px;
}

.coto-features span {
    font-size: 1rem;
    margin-top: 5px;
    line-height: 1.6;
    color: #CBC4BA;
}

.coto-box {
    position: relative;
    border: 1px solid #CBC4BA;
    border-radius: 15px 0 0 15px;
    border-right: none;
    padding: 25px 40px;
}

.coto-box::after {
    content: '';
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: 100%;
    width: calc(50vw - 50% + 40px);
    border-top: 1px solid rgba(255,255,255,0.4);
    border-bottom: 1px solid rgba(255,255,255,0.4);
}

.coto-box p {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
    color: #CBC4BA;
    margin: 0;
}

.especies-section {
    text-align: center;
    padding-top: 0px;
    padding-bottom: 30px;
}

.especies-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: #CBC4BA;
    margin-bottom: 30px;
}

.especies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 40px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.especie-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.especie-item img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    transition: transform 0.1s ease;
}

.especie-item:hover img {
    transform: scale(1.15);
}

.especie-item span {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: #CBC4BA;
    text-align: center;
    line-height: 1.3;
}

@media (max-width: 992px) {
    .coto-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .coto-box {
        border-radius: 15px;
        border-right: 1px solid rgba(255,255,255,0.4);
    }
    
    .coto-box::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .coto-section {
        padding: 60px 0;
        padding-bottom: 180px;
    }
    
    .coto-container {
        padding: 0 20px;
    }
    
    .coto-title {
        font-size: 2.8rem;
        margin-bottom: 40px;
    }
    
    .especies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 100%;
    }
    
    .lodge-location {
        padding: 60px 0;
    }
    
    .lodge-location-container {
        padding: 0 20px;
    }
    
    .lodge-info h2 {
        font-size: 2.8rem;
    }
}

/* Temporada y Operación Section */
.temporada-section {
    background-image: url('../assets/images/estancia-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 160px 40px 100px;
    position: relative;
    height: 100vh;
}

.temporada-card {
    position: relative;
    z-index: 2;
}

.temporada-card {
    background-color: #E8E2D9;
    border-radius: 10px;
    padding: 40px 60px;
    margin-top: -270px !important;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    will-change: opacity;
}

.temporada-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.temporada-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.temporada-block h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: #791826;
    margin-bottom: 20px;
}

.temporada-right h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: #791826;
    margin-bottom: 20px;
}

.temporada-list {
    list-style: none;
}

.temporada-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 5px;
}

.temporada-list img {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 3px;
}

.temporada-list span {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #444;
    margin-top: 3px;
}

.temporada-list strong {
    font-weight: 600;
    color: #333;
}

@media (max-width: 992px) {
    .temporada-card {
        padding: 40px;
    }
    
    .temporada-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .temporada-section {
        padding: 100px 20px 60px;
        background-attachment: scroll;
    }
    
    .temporada-card {
        padding: 30px;
        margin-top: -80px;
    }
}

/* Tradition Section -->
.tradition {
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
}

.tradition .section-title {
    color: var(--color-white);
}

.tradition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.tradition-item {
    padding: 30px;
}

.tradition-item h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-accent);
}

.tradition-item p {
    font-weight: 300;
    line-height: 1.8;
    opacity: 0.9;
}

/* Hunt Section */
.hunt {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.hunt-image {
    height: 500px;
    background: linear-gradient(135deg, #2C3E50 0%, #4A5F7A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-family: var(--font-serif);
    font-size: 1.5rem;
}

.hunt-content h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hunt-content p {
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.hunt-features {
    list-style: none;
    margin-top: 30px;
}

.hunt-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-weight: 400;
}

.hunt-features li::before {
    content: "›";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-size: 1.2rem;
}

.hunt-note {
    margin-top: 30px;
    padding: 20px;
    background-color: var(--color-light);
    border-left: 3px solid var(--color-secondary);
    font-style: italic;
}

/* Species Section */
.species {
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
}

.species .section-title {
    color: var(--color-white);
}

.species-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.species-item {
    padding: 40px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.species-item:hover {
    background-color: rgba(255,255,255,0.05);
    border-color: var(--color-accent);
}

.species-item h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Location Section */
.location {
    background-color: var(--color-light);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.location-card {
    text-align: center;
    padding: 40px;
    background-color: var(--color-white);
}

.location-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.location-card p {
    font-weight: 300;
    line-height: 1.8;
}

.location-map {
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    height: 300px;
    background: linear-gradient(135deg, #D4C5B0 0%, #E8DFD0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--color-primary);
}

/* Season Section */
.season {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.season-box {
    display: inline-block;
    padding: 40px 80px;
    border: 2px solid var(--color-secondary);
    margin-bottom: 40px;
}

.season-box h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.season-box p {
    font-size: 1.2rem;
    color: var(--color-secondary);
    font-weight: 500;
}

.season-modalities {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.modality {
    text-align: center;
}

.modality h4 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Operation Section */
.operation {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.operation .section-title {
    color: var(--color-white);
}

.operation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.operation-item {
    text-align: center;
    padding: 30px;
}

.operation-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 15px;
}

.operation-item p {
    font-weight: 300;
    line-height: 1.7;
}

/* Lodge Page Section */
.lodge-hero {
    height: 70vh;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6)), 
                linear-gradient(135deg, #5D4E37 0%, #8B7355 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
}

.lodge-hero h1 {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 600;
}

.lodge-intro {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: #555;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background-color: var(--color-white);
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.feature-card p {
    font-weight: 300;
    line-height: 1.7;
    color: #666;
}

.cta-section {
    background-color: var(--color-secondary);
    color: var(--color-white);
    text-align: center;
    padding: 80px 40px;
}

.cta-section h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--color-white);
    color: var(--color-secondary);
}

.btn-dark {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-dark:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Contact Page */
.contact-hero {
    height: 50vh;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5)),
                linear-gradient(135deg, #4A5F7A 0%, #2C3E50 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
}

.contact-hero h1 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 600;
}

.contact-intro {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
}

.contact-email {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-secondary);
    text-decoration: none;
    display: block;
    margin-bottom: 60px;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #666;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--color-secondary);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-message--success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message--error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

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

.operator-info {
    background-color: var(--color-light);
    margin-top: 60px;
    padding: 40px;
    text-align: center;
}

.operator-info h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--color-secondary);
}

.operator-info p {
    font-weight: 300;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
/* Footer */
.footer {
    background-color: #1a1a1a;
    color: var(--color-white);
    padding: 60px 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-ath {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    flex: 1;
}

.footer-ath-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-white);
    text-transform: uppercase;
    margin: 0;
}

.footer-ath-logo {
    height: 70px;
    width: auto;
    margin-top: 20px;
    transition: transform 0.1s ease;
    display: block;
}

.footer-ath a:hover .footer-ath-logo {
    transform: scale(1.05);
}

.footer-logo {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    align-self: flex-end;
}

.footer-logo img {
    height: 130px;
    width: auto;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
    flex: 1;
    position: relative;
    padding-left: 40px;
}

.footer-contact::before {
    content: '';
    position: absolute;
    left: -21px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: rgba(255,255,255,0.4);
}

.footer-contact h3 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-white);
    margin: 0;
    text-transform: uppercase;
}

.footer-contact-person {
    display: flex;
    flex-direction: column;
}

.footer-contact-person strong {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.5px;
}

.footer-contact-person span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
}

.footer-contact-person a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-contact-person a:hover {
    color: var(--color-accent);
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 20px;
    }
    
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .footer-ath {
        align-items: center;
    }
    
    .footer-logo {
        align-self: center;
    }
    
    .footer-logo img {
        height: 120px;
    }
    
    .footer-contact {
        align-items: center;
        text-align: center;
        padding-left: 0;
    }
    
    .footer-contact::before {
        display: none;
    }
}
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-copy {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .logo-default {
        height: 90px;
    }
    
    .logo-sticky {
        height: 32px;
    }
    
    header.scrolled .logo {
        height: 32px;
    }
    
    .btn-contact {
        padding: 10px 20px;
        font-size: 0.7rem;
    }
    
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px 25px;
    }
    
    header.scrolled {
        padding: 8px 20px;
    }
    
    .menu-btn .menu-text {
        display: none;
    }
    
    .lang-dropdown {
        display: block;
    }
    
    .btn-contact {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }

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

    .history,
    .hunt {
        grid-template-columns: 1fr;
    }

    .history-image,
    .hunt-image {
        height: 300px;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .season-modalities {
        flex-direction: column;
        gap: 30px;
    }

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

    .side-menu {
        width: 100%;
        left: -100%;
    }

    section {
        padding: 60px 20px;
    }
    
    .intro {
        padding: 60px 0;
    }
    
    .gallery-grid {
        margin-top: -60px;
        height: 400px;
    }
    
    .intro-container {
        padding: 0 20px 50px 20px;
    }
    
    .intro-title {
        font-size: 3rem;
        margin-bottom: 40px;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-box-wrapper {
        padding-left: 0;
        justify-content: flex-start;
        margin-left: 30px;
    }
    
    .intro-box {
        border-radius: 0 20px 20px 0;
        border-left: none;
        border-right: 2px solid rgba(255,255,255,0.3);
        margin-right: 0;
        margin-left: calc(-50vw + 50%);
        padding: 30px 40px;
        padding-left: calc(50vw - 50% + 20px);
    }
    
    .intro-box p {
        font-size: 1.4rem;
    }
    
    .header-container {
        flex-wrap: nowrap;
        align-items: center;
    }
    
    .header-left {
        order: 1;
        flex: 0 0 auto;
    }
    
    .lang-separator {
        display: block;
        margin: 0 2px;
    }
    
    .header-right {
        order: 3;
        flex: 0 0 auto;
        display: none;
    }
    
    .header-center {
        order: 2;
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }
    
    .logo-default {
        height: 95px;
    }
    
    .logo-sticky {
        height: 40px;
    }
    
    .logo {
        margin-top: 0;
    }
    
    header.scrolled .logo {
        height: 40px;
    }
}

@media (max-width: 992px) {
    .history-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .history-header h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .history-section {
        padding: 60px 0;
    }
    
    .history-container {
        padding: 0 20px;
    }
    
    .history-header h2 {
        font-size: 2.5rem;
    }
}
/* ============================================
   CONTACTO PAGE
   ============================================ */

.contact-hero-bar {
    background-color: #791826;
    height: 150px;
    width: 100%;
}

.contact-section {
    background-color: #CBC4BA;
    padding: 40px 40px 80px;
    min-height: calc(100vh - 200px);
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.contact-subtitle {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 60px;
}

.contact-form {
    margin-top: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
    max-width: 50%;
}

.form-group label {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0px;
    letter-spacing: 0.5px;
}

.form-group input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    padding: 10px 0;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder {
    color: #666;
}

.form-group input:focus {
    border-bottom-color: #8B2635;
}

.form-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 20px;
    padding-top: 30px;
}

.contact-email a {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    color: #8B2635;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.contact-email a:hover {
    opacity: 0.8;
}

.btn-submit {
    background-color: transparent;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 15px 40px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    border-radius: 10px;
}

.btn-submit:hover {
    background-color: #1a1a1a;
    color: #C9C1B5;
}

/* Argentina Top Hunts Section */
.ath-section {
    background-color: #fff;
    padding: 60px 40px;
}

.ath-container {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.ath-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ath-label {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
}

.ath-logo {
    width: 200px;
    height: auto;
}

.ath-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ath-person {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ath-person strong {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

.ath-person span {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 400;
    color: #666;
}

.ath-person a {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: #791826;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ath-person a:hover {
    color: #5a121c;
}

.ath-divider {
    height: 1px;
    background-color: #791826;
    opacity: 0.4;
    margin: 5px 0;
}

/* Responsive Contact Page */
@media (max-width: 768px) {
    .contact-section {
        padding: 100px 20px 60px;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .form-group-full {
        max-width: 100%;
    }
    
    .form-footer {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .btn-submit {
        border-radius: 10px;
    }
    
    .ath-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ath-logo {
        width: 160px;
    }
}

/* ============================================
   LODGE PAGE
   ============================================ */

/* Hero with background image */
.hero-image {
    background: none;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* Lodge Info Section */
.lodge-info-section {
    background-color: #F5F0E8;
    padding: 80px 40px 70px 40px;
}

.lodge-info-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.lodge-info-left {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: #8B2635;
    line-height: 1.3;
}

.lodge-info-left p {
    margin: 0;
}

.lodge-info-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.lodge-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lodge-features li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.lodge-features img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.lodge-features span {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 400;
    color: #444;
    line-height: 1.5;
}

.lodge-cta-box {
    position: relative;
    border: 1px solid #8B2635;
    border-radius: 15px 0 0 15px;
    border-right: none;
    padding: 20px 30px;
    margin-top: 20px;
}

.lodge-cta-box::after {
    content: '';
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: 100%;
    width: calc(50vw - 50% + 40px);
    border-top: 1px solid #8B2635;
    border-bottom: 1px solid #8B2635;
}

.lodge-cta-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #8B2635;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.cta-arrow {
    width: 16px;
    height: 16px;
    transform: rotate(90deg);
}

/* Lodge Gallery Carousel */
.lodge-gallery-section {
    background-color: #F5F0E8;
    padding: 0px 0 100px;
    overflow: hidden;
}

.lodge-gallery-container {
    display: flex;
    align-items: flex-end;
    gap: 30px;
    padding-left: 40px;
    padding-right: 0;
}

.lodge-gallery-carousel {
    overflow: hidden;
}

.lodge-gallery-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

.lodge-gallery-slide {
    flex-shrink: 0;
    width: 380px;
    height: 280px;
    overflow: hidden;
    border-radius: 8px;
}

.lodge-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.lodge-gallery-slide:hover img {
    transform: scale(1.05);
}

.lodge-gallery-arrows {
    display: flex;
    padding-bottom: 20px;
    flex-shrink: 0;
}

.gallery-nav {
    background: transparent;
    border: none;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.gallery-nav:hover {
    transform: scale(1.15);
}

.gallery-nav img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Responsive Lodge Page */
@media (max-width: 992px) {
    .lodge-info-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .lodge-info-left {
        font-size: 1.6rem;
    }
    
    .lodge-gallery-container {
        padding-left: 20px;
        gap: 20px;
    }
    
    .lodge-gallery-slide {
        width: 300px;
        height: 220px;
    }
    
    .gallery-nav {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .lodge-info-section {
        padding: 60px 20px;
    }
    
    .lodge-cta-box::after {
        display: none;
    }
    
    .lodge-cta-box {
        border-radius: 15px;
        border-right: 1px solid #8B2635;
    }
    
    .lodge-gallery-slide {
        width: 260px;
        height: 180px;
    }
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    z-index: 10;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    line-height: 1;
}

.lightbox-close:hover {
    opacity: 0.7;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.lightbox-nav:hover {
    transform: translateY(-50%) scale(1.15);
}

.lightbox-nav img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Responsive Lightbox */
@media (max-width: 768px) {
    .lightbox-nav {
        width: 40px;
        height: 40px;
    }
    
    .lightbox-nav img {
        width: 35px;
        height: 35px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 2.5rem;
    }
}
