/*
Theme Name: Kino Lakeside Custom Theme
Theme URI: https://www.kinolakeside.com/
Description: A bespoke, highly premium WordPress theme designed specifically for Kino Lakeside Chalet holiday rental property.
Version: 1.1.0
Author: DV
Author URI: https://www.kinolakeside.com/
Text Domain: kinolakeside-theme
*/

/* ==========================================================================
   1. DESIGN SYSTEM & DESIGN TOKENS (CSS VARIABLES)
   ========================================================================== */
:root {
  /* Brand Colors */
  --color-primary: #111111;       /* Dark charcoal / near black */
  --color-secondary: #C5A880;     /* Muted luxury gold / champagne */
  --color-accent: #D4AF37;        /* Vibrant metallic gold */
  --color-accent-hover: #B5932A;  /* Darker metallic gold for hover states */
  --color-bg-light: #FAF9F6;      /* Off-white / alabaster */
  --color-bg-dark: #161616;       /* Clean deep dark charcoal */
  --color-bg-card: #FFFFFF;       /* Pure white for container cards */
  --color-bg-glass: rgba(255, 255, 255, 0.08);
  --color-bg-glass-dark: rgba(14, 14, 14, 0.94);
  
  /* High-Contrast Text Colors */
  --color-text-dark: #1A1A1A;     /* Solid charcoal for highly readable body copy */
  --color-text-light: #FFFFFF;    /* Pure white for light elements */
  --color-text-muted: #4A4A4A;    /* Darkened muted color for strong contrast compliance */
  --color-text-gold: #C5A880;     /* Champagne gold */
  
  /* Typography */
  --font-headings: 'Outfit', 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  
  /* Layout & Spacing */
  --container-max-width: 1200px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
  
  /* Decoration & Effects */
  --border-radius-sm: 4px;
  --border-radius-md: 12px;
  --border-radius-lg: 24px;
  --box-shadow-subtle: 0 4px 24px rgba(0, 0, 0, 0.04);
  --box-shadow-premium: 0 16px 48px rgba(0, 0, 0, 0.12);
  --transition-smooth: all 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ==========================================================================
   2. RESET & BASE ELEMENTS
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul, li, figure, figcaption, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 500;
  line-height: 1.25;
  color: var(--color-primary);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 600; text-shadow: 0 2px 15px rgba(0,0,0,0.4); }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 500; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ==========================================================================
   3. LUXURY PRELOADER STYLING
   ========================================================================== */
.luxury-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
  visibility: visible;
  opacity: 1;
}

.luxury-preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

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

.preloader-logo {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--color-text-light);
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  animation: pulseLogo 2s infinite ease-in-out;
}

.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(212, 175, 55, 0.15);
  border-top-color: var(--color-accent);
  border-radius: 50%;
  margin: 0 auto;
  animation: spin 1s infinite linear;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulseLogo {
  0%, 100% { opacity: 0.6; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1); }
}

/* ==========================================================================
   4. REVEAL-ON-SCROLL ANIMATIONS (MODERN LOOK & FEEL)
   ========================================================================== */
.reveal {
  opacity: 0;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

/* Animation types */
.reveal.fade-up {
  transform: translateY(40px);
}

.reveal.fade-in {
  transform: translateY(0);
}

.reveal.scale-in {
  transform: scale(0.95);
}

/* Activated States */
.reveal-active {
  opacity: 1;
  transform: translateY(0) scale(1) !important;
}

/* Animation Staggered Delays */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* ==========================================================================
   5. UTILITIES & DESIGN BLOCKS
   ========================================================================== */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
  width: 100%;
}

.section {
  padding: var(--spacing-lg) 0;
}

@media (min-width: 768px) {
  .section {
    padding: var(--spacing-xl) 0;
  }
}

.text-center { text-align: center; }
.text-gold { color: var(--color-text-gold); }
.text-muted { color: var(--color-text-muted); }

/* Elegant Buttons with Slide-Glow Animation */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.2rem;
  border-radius: var(--border-radius-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-primary);
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: var(--transition-smooth);
  z-index: -1;
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover::before {
  left: 100%;
  transition: all 0.6s ease;
}

.btn-outline {
  background-color: transparent;
  color: var(--color-text-light);
  border: 1px solid rgba(255, 255, 255, 0.4);
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.btn-outline:hover {
  background-color: var(--color-text-light);
  color: var(--color-primary);
  border-color: var(--color-text-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255,255,255,0.15);
}

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

.btn-dark:hover {
  background-color: #2a2a2a;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Flex & Grid layouts */
.grid {
  display: grid;
  gap: var(--spacing-md);
}

.grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Elegant Section Titles */
.section-title-wrap {
  margin-bottom: var(--spacing-lg);
  position: relative;
}

.section-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-gold);
  margin-bottom: 0.6rem;
  display: block;
  font-weight: 500;
}

.section-title {
  margin-bottom: 1.5rem;
  position: relative;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--color-accent);
  margin: 1.5rem auto 0 auto;
}

.text-left .section-title::after {
  margin: 1.5rem 0 0 0;
}

/* ==========================================================================
   6. LAYOUT COMPONENTS
   ========================================================================== */

/* Sticky Header with improved contrast */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.8rem 0;
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  position: fixed;
  background-color: var(--color-bg-glass-dark);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.1rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.logo a {
  font-family: var(--font-headings);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.logo a img,
.preloader-logo-img,
.footer-logo img {
  filter: brightness(0) invert(1); /* Invert dark logo graphics and text to pure white for perfect contrast and visibility */
  transition: var(--transition-fast);
}

.logo-gold {
  color: var(--color-accent);
}

.nav-menu {
  display: none;
  list-style: none;
  gap: 2.6rem;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  position: relative;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5); /* Strong contrast protection on light hero slides */
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
  color: var(--color-accent);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: var(--transition-fast);
}

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

.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--color-text-light);
  margin-bottom: 6px;
  transition: var(--transition-fast);
  box-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.mobile-menu-toggle span:last-child {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* Mobile Menu Panel */
.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background-color: var(--color-primary);
  z-index: 2000;
  padding: 3rem 2rem;
  box-shadow: -10px 0 40px rgba(0,0,0,0.6);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.mobile-nav-panel.active {
  right: 0;
}

.close-panel {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--color-text-light);
  font-size: 2.2rem;
  cursor: pointer;
  margin-bottom: 2.5rem;
  line-height: 1;
}

.mobile-nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.mobile-nav-menu a {
  color: var(--color-text-light);
  font-size: 1.25rem;
  font-family: var(--font-headings);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mobile-nav-menu a:hover {
  color: var(--color-accent);
}

/* Hero Section with solid text contrast overlays */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 620px;
  width: 100%;
  background-color: var(--color-primary);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* High contrast dark gradient overlay to protect text visibility */
  background: linear-gradient(180deg, rgba(0,0,0,0.76) 0%, rgba(0,0,0,0.58) 50%, rgba(0,0,0,0.92) 100%);
  display: flex;
  align-items: center;
}

.hero-content {
  text-align: center;
  color: var(--color-text-light);
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-title {
  color: var(--color-text-light) !important; /* Force override global h1 color which is near-black */
  font-size: clamp(2.2rem, 7.5vw, 4.4rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 24px rgba(0,0,0,0.85), 0 2px 10px rgba(0,0,0,0.6); /* Toughened text drop shadow */
}

.hero-subtitle {
  font-family: var(--font-headings);
  font-size: clamp(0.9rem, 2.2vw, 1.15rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  display: block;
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

.hero-desc {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 300;
  opacity: 0.95;
  margin-bottom: 2.8rem;
  line-height: 1.85;
  text-shadow: 0 2px 15px rgba(0,0,0,0.8); /* Strengthened readability */
}

.hero-ctas {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   7. TEMPLATE SPECIFIC COMPONENTS & POLISH
   ========================================================================== */

/* Overview Section */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

@media (min-width: 1024px) {
  .overview-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.overview-text {
  padding-right: 0;
}

@media (min-width: 1024px) {
  .overview-text {
    padding-right: var(--spacing-lg);
  }
}

.overview-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}

.stat-box {
  background-color: var(--color-bg-card);
  padding: 2.2rem 1.6rem;
  border-radius: var(--border-radius-md);
  border-bottom: 3px solid var(--color-accent);
  box-shadow: var(--box-shadow-subtle);
  text-align: center;
  transition: var(--transition-smooth);
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-premium);
  border-bottom-color: var(--color-primary);
}

.stat-number {
  font-family: var(--font-headings);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Rooms Grid with scale & glow */
.room-card {
  background-color: var(--color-bg-card);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--box-shadow-subtle);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

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

.room-img-wrap {
  position: relative;
  height: 290px;
  overflow: hidden;
}

.room-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.room-price-tag {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background-color: rgba(14, 14, 14, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-text-light);
  padding: 0.55rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: var(--border-radius-sm);
  border-left: 2.5px solid var(--color-accent);
  letter-spacing: 0.05em;
}

.room-details {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-title {
  margin-bottom: 0.75rem;
  font-size: 1.45rem;
  font-weight: 500;
}

.room-desc {
  font-size: 0.92rem;
  color: var(--color-text-muted);  /* High contrast readable copy */
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.7;
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  padding-top: 1.3rem;
  border-top: 1px solid #ECECEC;
  margin-bottom: 1.6rem;
  list-style: none;
}

.room-features li {
  font-size: 0.82rem;
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 500;
}

.room-features li svg {
  color: var(--color-accent);
  width: 15px;
  height: 15px;
}

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

.amenity-card {
  background-color: var(--color-bg-card);
  padding: 2.6rem 2rem;
  border-radius: var(--border-radius-md);
  text-align: center;
  box-shadow: var(--box-shadow-subtle);
  transition: var(--transition-smooth);
  border: 1px solid rgba(0,0,0,0.01);
}

.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--box-shadow-premium);
  border-color: rgba(197, 168, 128, 0.2);
}

.amenity-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(197, 168, 128, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  color: var(--color-accent-hover);
  transition: var(--transition-smooth);
}

.amenity-card:hover .amenity-icon {
  background-color: var(--color-accent);
  color: var(--color-primary);
  transform: rotateY(180deg);
}

.amenity-title {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.amenity-desc {
  font-size: 0.86rem;
  color: var(--color-text-muted);
}

/* Testimonial Section */
.testimonials-section {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  overflow: hidden;
}

.testimonial-container {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.testimonial-slider {
  display: flex;
  overflow: hidden;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 1.5rem;
}

.quote-icon {
  font-size: 3.5rem;
  color: rgba(255,255,255,0.08);
  margin-bottom: 1rem;
  line-height: 1;
}

.quote-text {
  font-family: var(--font-headings);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 2rem;
  font-style: italic;
  opacity: 0.95;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.quote-author {
  font-family: var(--font-headings);
  font-size: 1.05rem;
  color: var(--color-accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ==========================================================================
   8. FORMS & INPUTS (STRONG VISIBILITY CONTRAST)
   ========================================================================== */
.booking-form-wrapper {
  background-color: var(--color-bg-card);
  padding: 3.2rem 2.8rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-premium);
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid rgba(197, 168, 128, 0.15);
}

.form-title-group {
  text-align: center;
  margin-bottom: 2.6rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  margin-bottom: 1.6rem;
}

@media (min-width: 768px) {
  .form-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .form-grid-3 { grid-template-columns: repeat(3, 1fr); }
}

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

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary); /* High contrast labels */
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.95rem 1.1rem;
  border: 1.5px solid #D2D6DC; /* Strong visible border outline */
  border-radius: var(--border-radius-sm);
  background-color: #FAFBFD;
  transition: var(--transition-fast);
  outline: none;
  color: #111111; /* Dark typed characters for contrast */
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #7A828A; /* Crisp visible placeholders */
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-secondary);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.22);
}

/* ==========================================================================
   9. FILTERABLE GALLERY PAGE
   ========================================================================== */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
  list-style: none;
}

.filter-btn {
  background: none;
  border: none;
  padding: 0.6rem 1.6rem;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--color-text-muted);
  font-family: var(--font-headings);
  font-weight: 500;
  border-bottom: 2px solid transparent;
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.6rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 260px;
  cursor: pointer;
  box-shadow: var(--box-shadow-subtle);
  transition: var(--transition-smooth);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 17, 17, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

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

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

.gallery-zoom-icon {
  color: var(--color-text-light);
  border: 1px solid rgba(255, 255, 255, 0.4);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-zoom-icon {
  background-color: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 12, 12, 0.96);
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2.2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 85vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  box-shadow: 0 12px 50px rgba(0,0,0,0.6);
  border-radius: var(--border-radius-sm);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--color-text-light);
  font-size: 2.6rem;
  cursor: pointer;
  line-height: 1;
}

/* ==========================================================================
   10. FOOTER STYLING
   ========================================================================== */
.site-footer {
  background-color: #0C0C0C;
  color: rgba(255, 255, 255, 0.65);
  padding: 5.5rem 0 2.2rem 0;
  font-size: 0.92rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 2.2rem;
}

.footer-logo {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--color-text-light);
  margin-bottom: 1.6rem;
}

.footer-logo span {
  color: var(--color-accent);
}

.footer-widget-title {
  font-family: var(--font-headings);
  color: var(--color-text-light);
  font-size: 1.15rem;
  margin-bottom: 1.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-links a:hover {
  color: var(--color-text-light);
  padding-left: 6px;
}

.footer-contact-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.footer-contact-info li svg {
  color: var(--color-accent);
  width: 19px;
  flex-shrink: 0;
  margin-top: 3px;
}

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

.social-btn {
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.04);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  transition: var(--transition-fast);
}

.social-btn:hover {
  background-color: var(--color-accent);
  color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(212, 175, 55, 0.25);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1.1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

/* ==========================================================================
   11. ELEMENTOR FULLWIDTH COMPATIBILITY UTILITIES
   ========================================================================== */
.elementor-custom-page-container {
  width: 100%;
}
.elementor-custom-page-container .elementor-section {
  max-width: 100% !important;
}

/* ==========================================================================
   12. MOBILE VIDEO REELS STYLING & HOVER MICRO-ANIMATIONS
   ========================================================================== */
.video-reel-card {
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.video-reel-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 20px 35px rgba(197, 168, 128, 0.25) !important;
  border-color: rgba(197, 168, 128, 0.4) !important;
}

.video-reel-card:hover .reel-video {
  transform: scale(1.05);
}

.video-reel-card .reel-video {
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-overlay-play {
  transition: background-color 0.3s ease, transform 0.3s ease !important;
}

.video-reel-card:hover .video-overlay-play {
  background: rgba(0, 0, 0, 0.3) !important;
}

.video-overlay-play span {
  transition: transform 0.3s ease;
}

.video-reel-card:hover .video-overlay-play span {
  transform: scale(1.2);
}

/* ==========================================================================
   9. INTEGRATED INSTAGRAM SHOWCASE & TRIPADVISOR REVIEWS
   ========================================================================== */

/* Combined TripAdvisor & Testimonial Reviews Hub */
.reviews-hub-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3.5rem;
  align-items: center;
}

@media (max-width: 991px) {
  .reviews-hub-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* TripAdvisor Logo and Scorecard Badge */
.tripadvisor-badge-card {
  background: #FFFFFF;
  border-radius: var(--border-radius-md);
  padding: 2.25rem 2rem;
  text-align: center;
  border: 1px solid rgba(197, 168, 128, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tripadvisor-badge-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(197, 168, 128, 0.12);
  border-color: rgba(197, 168, 128, 0.4);
}

.ta-logo-svg {
  width: 140px;
  height: auto;
  margin-bottom: 1.25rem;
}

.ta-score-large {
  font-family: var(--font-headings);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

/* TripAdvisor Rating Bubbles */
.ta-bubbles-wrap {
  display: flex;
  gap: 4px;
  margin: 0.75rem 0;
}

.ta-bubble {
  width: 14px;
  height: 14px;
  background-color: #00AA6C; /* TripAdvisor green */
  border-radius: 50%;
  display: inline-block;
}

.ta-rating-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 0.25rem;
}

.ta-reviews-count {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.ta-verified-seal {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  background-color: rgba(0, 170, 108, 0.08);
  color: #008755;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 1.75rem;
}

.btn-ta-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-light);
  background-color: #00AA6C;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 170, 108, 0.2);
}

.btn-ta-link:hover {
  background-color: #008755;
  box-shadow: 0 6px 15px rgba(0, 170, 108, 0.35);
  transform: translateY(-1px);
}

/* Custom Testimonial Slider Wrapper (inside Hub) */
.reviews-slider-wrap {
  position: relative;
  background: var(--color-bg-light);
  border-radius: var(--border-radius-md);
  padding: 3rem 2.5rem;
  border: 1px solid rgba(197, 168, 128, 0.15);
  box-shadow: var(--box-shadow-subtle);
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 575px) {
  .reviews-slider-wrap {
    padding: 2rem 1.5rem;
    min-height: 320px;
  }
}

.review-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(197, 168, 128, 0.15);
  padding-bottom: 0.75rem;
}

.review-card-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.review-card-source-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #00AA6C;
  background: rgba(0, 170, 108, 0.06);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.review-card-title {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.review-card-body {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.review-card-author-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--color-text-dark);
  font-weight: 500;
}

.review-card-date {
  color: var(--color-text-muted);
  font-weight: 400;
}

/* Premium Instagram Showcase */
.instagram-showcase-section {
  background-color: var(--color-bg-light);
  border-top: 1px solid rgba(197, 168, 128, 0.15);
  padding: 5.5rem 0;
}

.instagram-section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

.instagram-handle-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (max-width: 1199px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 575px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

.instagram-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--box-shadow-subtle);
  border: 1px solid rgba(197, 168, 128, 0.1);
  cursor: pointer;
  background-color: var(--color-primary);
}

.instagram-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  color: #FFFFFF;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 2;
}

.instagram-overlay-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.instagram-overlay-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 18px;
  height: 18px;
  opacity: 0.85;
}

.instagram-item:hover .instagram-img {
  transform: scale(1.08);
}

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

.instagram-cta-container {
  text-align: center;
  margin-top: 2.5rem;
}

