/* ========================================
   PENSIUNEA CLARISIA - Premium Styles
   ======================================== */

:root {
    --primary: #1a3a1a;
    --primary-light: #2d5a2d;
    --primary-dark: #0f240f;
    --gold: #c8860a;
    --gold-light: #e6a832;
    --gold-dark: #9a6800;
    --white: #ffffff;
    --cream: #faf8f5;
    --cream-dark: #f0ebe3;
    --gray-100: #f7f7f7;
    --gray-200: #e8e8e8;
    --gray-300: #d4d4d4;
    --gray-500: #737373;
    --gray-700: #404040;
    --gray-900: #1a1a1a;
    --text: #2c2c2c;
    --text-light: #6b6b6b;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-xl: 0 30px 80px rgba(0,0,0,0.18);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
    position: relative;
}

/* ========================================
   LOADER
   ======================================== */
.loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.loader-monogram {
    font-family: var(--font-heading);
    font-size: 72px;
    color: var(--gold);
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--white);
    margin-top: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.8;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin: 24px auto 0;
    border-radius: 2px;
    overflow: hidden;
}

.loader-bar-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
    animation: loadBar 2s ease-in-out forwards;
}

@keyframes loadBar {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* ========================================
   CUSTOM CURSOR
   ======================================== */


/* ========================================
   GRAIN OVERLAY
   ======================================== */
.grain-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9000;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ========================================
   TOP BAR
   ======================================== */
.top-bar {
    background: var(--primary-dark);
    color: var(--white);
    font-size: 13px;
    padding: 8px 0;
    transition: transform 0.4s, opacity 0.4s;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.top-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left { display: flex; gap: 24px; align-items: center; }

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.9;
}

.top-bar-right { display: flex; gap: 12px; }

.top-bar-social {
    opacity: 0.7;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.top-bar-social:hover { opacity: 1; color: var(--gold); }

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s;
    background: transparent;
}

.header.scrolled {
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

.header.scrolled .logo-name,
.header.scrolled .logo-tagline,
.header.scrolled .nav-link {
    color: var(--text);
}

.header.scrolled .logo-monogram {
    background: var(--gold);
    color: var(--white);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.logo-monogram {
    width: 44px;
    height: 44px;
    background: rgba(200, 134, 10, 0.15);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--gold);
    transition: var(--transition);
}

.logo-text { display: flex; flex-direction: column; }

.logo-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    transition: var(--transition);
}

.logo-tagline {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

/* Nav */
.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    border-radius: 24px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    background: rgba(200, 134, 10, 0.15);
    color: var(--gold);
}

.nav-link.cta-btn {
    background: var(--gold);
    color: var(--white);
    padding: 10px 24px;
    font-weight: 600;
}

.nav-link.cta-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(200, 134, 10, 0.4);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    z-index: 10;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.header.scrolled .hamburger span { background: var(--text); }

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 992px) {
    .nav { display: none; }
    .hamburger { display: flex; }
}

/* ========================================
   MOBILE DRAWER
   ======================================== */
.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
}

.mobile-drawer.active {
    pointer-events: all;
    opacity: 1;
}

.mobile-drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
}

.mobile-drawer-content {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: var(--white);
    padding: 32px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer.active .mobile-drawer-content {
    transform: translateX(0);
}

.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.mobile-drawer-close {
    font-size: 32px;
    color: var(--gray-500);
}

.mobile-nav { display: flex; flex-direction: column; gap: 4px; flex: 1; }

.mobile-nav-link {
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-nav-link:hover {
    background: var(--cream);
    color: var(--gold);
}

.mobile-drawer-footer { border-top: 1px solid var(--gray-200); padding-top: 24px; }

.mobile-cta {
    display: block;
    text-align: center;
    background: var(--gold);
    color: var(--white);
    padding: 14px;
    border-radius: var(--radius-md);
    font-weight: 600;
    margin-bottom: 16px;
}

.mobile-info {
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
}

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

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

.hero-slide.active { opacity: 1; }

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 36, 15, 0.4) 0%,
        rgba(15, 36, 15, 0.2) 40%,
        rgba(15, 36, 15, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 134, 10, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 134, 10, 0.4);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gold-light);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 10vw, 100px);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 20px;
}

.hero-title-line {
    display: block;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    transition: var(--transition);
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(200, 134, 10, 0.4);
}

.btn-outline {
    border: 2px solid rgba(255,255,255,0.5);
    color: var(--white);
}

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

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
    background: var(--gold);
    color: var(--white);
    border-radius: 24px;
}

.btn-sm:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 16px;
}

/* Hero scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* Hero dots */
.hero-slider-dots {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    transition: var(--transition);
    cursor: pointer;
}

.hero-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.3);
}

/* ========================================
   ANIMATIONS
   ======================================== */
.animate-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   STATS BAR
   ======================================== */
.stats-bar {
    background: var(--primary);
    padding: 40px 0;
    position: relative;
    z-index: 10;
}

.stats-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item { color: var(--white); }

.stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 8px;
    display: block;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
}

/* ========================================
   SECTION COMMON
   ======================================== */
.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title em {
    color: var(--gold);
    font-style: italic;
}

.section-desc {
    font-size: 17px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

/* ========================================
   ABOUT
   ======================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 600px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 75%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img,
.about-img-secondary img,
.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.about-img-accent {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--gold);
    box-shadow: var(--shadow-md);
}

.about-content .section-title { text-align: left; }

.about-text {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(200, 134, 10, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.about-feature strong {
    display: block;
    font-size: 15px;
    margin-bottom: 2px;
}

.about-feature span {
    font-size: 13px;
    color: var(--text-light);
}

@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-images { height: 400px; }
}

/* ========================================
   ROOMS
   ======================================== */
.rooms { background: var(--white); }

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.room-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.room-card-img {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.room-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.room-card:hover .room-card-img img {
    transform: scale(1.08);
}

.room-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.room-card-badge.accent { background: var(--gold); }
.room-card-badge.premium { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }

.room-card-content {
    padding: 28px;
}

.room-card-content h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.room-card-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.amenity {
    padding: 5px 12px;
    background: var(--white);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-light);
    border: 1px solid var(--gray-200);
}

.room-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.room-price { font-size: 14px; color: var(--text-light); }
.price-amount {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
}

@media (max-width: 768px) {
    .rooms-grid { grid-template-columns: 1fr; }
}

/* ========================================
   GALLERY
   ======================================== */
.gallery { background: var(--cream); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    grid-auto-rows: 250px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

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

.gallery-item:hover img { transform: scale(1.1); }

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 58, 26, 0.8) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

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

.gallery-item-overlay span {
    display: none;
}

.gallery-item.hidden {
    display: none;
}

@media (max-width: 992px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
}

@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .gallery-item.wide { grid-column: span 1; }
    .gallery-item.tall { grid-row: span 1; }
}

/* ========================================
   VIDEO SECTION
   ======================================== */
.video-section {
    background: linear-gradient(180deg, #fff 0%, #f7f4ed 100%);
}

.video-heading {
    text-align: center;
    margin-bottom: 20px;
}

.video-heading .section-title {
    margin-bottom: 0;
}

.video-stage {
    max-width: 900px;
    margin: 0 auto;
    padding: 18px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(193, 155, 92, 0.2), rgba(26, 58, 26, 0.14));
    box-shadow: var(--shadow-lg);
}

.video-wrapper {
    max-width: 680px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    background: #000;
    box-shadow: var(--shadow-xl);
}

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

@media (max-width: 768px) {
    .video-stage {
        padding: 10px;
        border-radius: 16px;
    }

    .video-wrapper {
        border-radius: 12px;
    }
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 36px;
    color: var(--white);
    z-index: 10;
    transition: var(--transition);
}

.lightbox-close:hover { color: var(--gold); transform: rotate(90deg); }

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 36px;
    color: var(--white);
    padding: 16px;
    z-index: 10;
    transition: var(--transition);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover, .lightbox-next:hover { color: var(--gold); }

.lightbox-img-wrapper {
    max-width: 90vw;
    max-height: 85vh;
}

.lightbox-img-wrapper img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

/* ========================================
   ACTIVITIES
   ======================================== */
.activities { background: var(--white); }

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.activity-card {
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    background: var(--cream);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s;
    transform-origin: left;
}

.activity-card:hover::before { transform: scaleX(1); }

.activity-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.activity-icon {
    width: 64px;
    height: 64px;
    background: rgba(200, 134, 10, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 20px;
    transition: var(--transition);
}

.activity-card:hover .activity-icon {
    background: var(--gold);
    color: var(--white);
}

.activity-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.activity-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.activity-tag {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.5px;
}

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

@media (max-width: 480px) {
    .activities-grid { grid-template-columns: 1fr; }
}

/* ========================================
   PARALLAX DIVIDER
   ======================================== */
.parallax-divider {
    height: 450px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-divider-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 36, 15, 0.7);
}

.parallax-divider-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 24px;
    max-width: 800px;
}

.parallax-divider-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 16px;
}

.parallax-divider-content p {
    font-size: 16px;
    color: var(--gold-light);
    font-weight: 500;
}

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

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials { background: var(--cream); overflow: hidden; }

.testimonials-carousel {
    overflow: hidden;
    position: relative;
    margin: 0 -24px;
    padding: 0 24px;
}

.testimonial-track {
    display: flex;
    gap: 24px;
    animation: scrollTestimonials 30s linear infinite;
    width: max-content;
}

.testimonial-track:hover { animation-play-state: paused; }

@keyframes scrollTestimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    min-width: 360px;
    max-width: 400px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 15px;
    color: var(--primary-dark);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 280px;
        max-width: 320px;
        padding: 28px;
    }
     
    .testimonial-card p {
        font-size: 14px;
    }
     
    .testimonial-stars {
        font-size: 16px;
    }
     
    .testimonial-track {
        animation: scrollTestimonials 25s linear infinite;
    }
}

@media (max-width: 480px) {
    .testimonials-carousel {
        margin: 0 -16px;
        padding: 0 16px;
    }
     
    .testimonial-card {
        min-width: 100%;
        max-width: 100%;
        padding: 24px;
    }
     
    .testimonial-track {
        animation: none;
        transform: translateX(0) !important;
        flex-direction: column;
        gap: 16px;
    }
     
    .testimonial-card:hover {
        transform: none;
    }
     
    .testimonial-card p {
        font-size: 13px;
    }
}

/* ========================================
   LOCATION
   ======================================== */
.location { background: var(--white); }

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: stretch;
}

.location-info { display: flex; flex-direction: column; gap: 32px; }

.location-info h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.location-info p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.location-distances { display: flex; flex-direction: column; gap: 12px; }

.distance-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--cream);
    border-radius: var(--radius-sm);
}

.distance-city { font-weight: 500; }
.distance-value { color: var(--gold); font-weight: 600; }

.location-map {
    min-height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}

.maps-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.maps-link:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(200, 134, 10, 0.3);
}

@media (max-width: 768px) {
    .location-grid { grid-template-columns: 1fr; }
    .location-map { min-height: 300px; }
}

/* ========================================
   CONTACT
   ======================================== */
.contact { background: var(--cream); }

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

.form-group {
    position: relative;
}

.form-group.full { margin-bottom: 24px; }

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: inherit;
    background: var(--cream);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(200, 134, 10, 0.1);
}

.form-group label {
    position: absolute;
    left: 18px;
    top: 16px;
    font-size: 15px;
    color: var(--text-light);
    transition: var(--transition);
    pointer-events: none;
    background: transparent;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -8px;
    left: 14px;
    font-size: 12px;
    color: var(--gold);
    background: var(--white);
    padding: 0 6px;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    padding: 32px;
    border-radius: var(--radius-lg);
}

.contact-info-card.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-sm);
}

.contact-info-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    color: var(--gold);
}

.contact-detail div strong {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-detail div a {
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
}

.contact-detail div a:hover { color: var(--gold); }

.contact-info-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 24px; }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 80px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.7;
}

.footer-brand .logo { margin-bottom: 8px; }
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-tagline { color: rgba(255,255,255,0.5); }

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-links a {
    display: block;
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-links a:hover { opacity: 1; color: var(--gold); padding-left: 6px; }

.footer-contact p {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer-contact a { color: var(--gold-light); }
.footer-contact a:hover { color: var(--gold); }

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

.footer-bottom p {
    font-size: 13px;
    opacity: 0.5;
}

@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
    .container { padding: 0 32px; }
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .top-bar-left { gap: 12px; }
    .top-bar-item:last-child { display: none; }
    .hero-slider-dots { right: 20px; bottom: 20px; }
}

@media (max-width: 480px) {
    .section { padding: 60px 0; }
    .container { padding: 0 16px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .stats-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-number { font-size: 36px; }
}

/* ===== GDPR Cookie Banner ===== */
.gdpr-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 58, 26, 0.97);
    backdrop-filter: blur(10px);
    padding: 1.2rem 2rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -4px 30px rgba(0,0,0,0.2);
}
.gdpr-banner.show { transform: translateY(0); }
.gdpr-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.gdpr-text p {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}
.gdpr-text a {
    color: var(--gold, #c8860a);
    text-decoration: underline;
    cursor: pointer;
}
.gdpr-actions {
    display: flex;
    gap: 0.8rem;
    flex-shrink: 0;
}
.gdpr-btn {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.gdpr-btn-accept {
    background: var(--gold, #c8860a);
    color: #fff;
}
.gdpr-btn-accept:hover { background: #b07608; transform: translateY(-1px); }
.gdpr-btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}
.gdpr-btn-reject:hover { border-color: #fff; }

@media (max-width: 768px) {
    .gdpr-content { flex-direction: column; text-align: center; gap: 1rem; }
    .gdpr-banner { padding: 1rem; }
    .gdpr-text p { font-size: 0.82rem; }
    .gdpr-actions { width: 100%; justify-content: center; }
    .gdpr-btn { flex: 1; padding: 0.7rem 1rem; }
}

@media (max-width: 480px) {
    .gdpr-banner { padding: 0.8rem; }
    .gdpr-text p { font-size: 0.78rem; }
    .gdpr-btn { font-size: 0.8rem; padding: 0.6rem 0.8rem; }
}

/* ===== Privacy Policy Modal ===== */
.privacy-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.privacy-modal-overlay.show { opacity: 1; visibility: visible; }
.privacy-modal {
    background: #fff;
    border-radius: 12px;
    max-width: 700px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
.privacy-modal-overlay.show .privacy-modal { transform: translateY(0); }
.privacy-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    line-height: 1;
}
.privacy-modal-close:hover { color: #000; }
.privacy-modal h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary, #1a3a1a);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}
.privacy-modal h3 {
    font-family: 'Inter', sans-serif;
    color: var(--primary, #1a3a1a);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}
.privacy-modal p, .privacy-modal li {
    font-family: 'Inter', sans-serif;
    color: #444;
    font-size: 0.9rem;
    line-height: 1.7;
}
.privacy-modal ul { padding-left: 1.2rem; margin: 0.5rem 0; }
.privacy-modal li { margin-bottom: 0.3rem; }
.privacy-updated {
    margin-top: 2rem;
    font-style: italic;
    color: #888 !important;
    font-size: 0.85rem !important;
}
.footer-bottom a {
    color: var(--gold, #c8860a);
    text-decoration: none;
}
.footer-bottom a:hover { text-decoration: underline; }

@media (max-width: 768px) {
    .privacy-modal { padding: 1.5rem; max-height: 85vh; width: 95%; border-radius: 10px; }
    .privacy-modal h2 { font-size: 1.3rem; margin-bottom: 1rem; }
    .privacy-modal h3 { font-size: 0.92rem; }
    .privacy-modal p, .privacy-modal li { font-size: 0.84rem; }
    .privacy-modal-close { top: 0.6rem; right: 0.8rem; font-size: 1.6rem; }
}

@media (max-width: 480px) {
    .privacy-modal { padding: 1.2rem; max-height: 90vh; width: 98%; }
    .privacy-modal h2 { font-size: 1.15rem; }
    .privacy-modal p, .privacy-modal li { font-size: 0.8rem; line-height: 1.6; }
    .privacy-modal ul { padding-left: 1rem; }
}

/* ===== Additional Mobile Enhancements ===== */
@media (max-width: 768px) {
    .testimonial-card { min-width: 280px; max-width: 300px; padding: 24px; }
    .testimonial-card p { font-size: 13px; }
    .parallax-divider { height: 300px; }
    .about-images { height: 320px; }
    .about-img-main { width: 80%; }
    .section-header { margin-bottom: 40px; }
    .section-desc { font-size: 15px; }
    .room-card-img { height: 220px; }
    .room-card-content { padding: 20px; }
    .room-card-content h3 { font-size: 18px; }
    .price-amount { font-size: 24px; }
    .location-info h3 { font-size: 18px; }
    .footer { padding: 50px 0 24px; }
    .footer-grid { gap: 32px; }
}

@media (max-width: 480px) {
    .testimonial-card { min-width: 250px; max-width: 270px; padding: 20px; }
    .parallax-divider { height: 250px; }
    .about-images { height: 280px; }
    .room-card-img { height: 200px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; gap: 8px; }
    .footer { padding: 40px 0 20px; }
    .footer-grid { gap: 24px; margin-bottom: 24px; }
    .footer-bottom p { font-size: 11px; }
    .lightbox-close { top: 10px; right: 10px; font-size: 28px; }
    .lightbox-nav { font-size: 28px; padding: 8px; }
}
