/*
Theme Name: Villa Sandrina
Theme URI: https://www.villa-sandrina.com/
Author: Villa Sandrina
Author URI: https://www.villa-sandrina.com/
Description: Premium eco & rural tourism WordPress theme for Villa Sandrina — a family guesthouse on the edge of Kopački Rit Nature Park in Baranja, Croatia.
Version: 2.2.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.2
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: villa-sandrina
Tags: eco-tourism, rural, nature, hotel, responsive, custom-logo, custom-menu, translation-ready
*/

/* ==========================================================================
   CSS CUSTOM PROPERTIES — Warm Terracotta / Baranja Rural palette
   ========================================================================== */
:root {
  /* Brand colours — terracotta inspired by Baranja red-brick architecture */
  --vs-terra:         #C06540;   /* terracotta / burnt sienna */
  --vs-terra-dark:    #9A4A2C;   /* deep brick */
  --vs-terra-mid:     #D07A54;   /* medium terracotta */
  --vs-terra-light:   #E09A7A;   /* light terracotta */
  --vs-brown:         #3D2510;   /* deep bark / oak */
  --vs-brown-mid:     #7A5438;   /* medium warm brown */
  --vs-gold:          #C4891C;   /* Slavonian golden wheat */
  --vs-gold-light:    #E8C068;   /* light amber */
  --vs-gold-pale:     #F5E4B0;   /* pale gold */

  /* Alias tokens used throughout */
  --vs-primary:       var(--vs-terra);
  --vs-primary-dark:  var(--vs-terra-dark);
  --vs-primary-light: var(--vs-terra-light);
  --vs-secondary:     var(--vs-brown);
  --vs-accent:        var(--vs-gold);
  --vs-accent-light:  var(--vs-gold-light);

  /* Neutrals */
  --vs-cream:         #FAF7F2;
  --vs-nature:        #F5EFE8;   /* warm sandy cream */
  --vs-white:         #FFFFFF;
  --vs-dark:          #1A1008;
  --vs-text:          #2C1F10;
  --vs-text-light:    #6B5040;
  --vs-gray:          #7A6A58;
  --vs-border:        #DDD0BF;
  --vs-border-light:  #EEE5D8;

  /* Typography */
  --vs-font-heading:  'Playfair Display', Georgia, serif;
  --vs-font-body:     'Lato', 'Helvetica Neue', Arial, sans-serif;
  --vs-font-serif:    'Cormorant Garamond', Georgia, serif;

  /* Spacing */
  --vs-radius-xs:  3px;
  --vs-radius-sm:  6px;
  --vs-radius:     10px;
  --vs-radius-lg:  18px;
  --vs-radius-xl:  28px;
  --vs-radius-pill:50px;

  /* Shadows */
  --vs-shadow-xs:    0 1px 4px rgba(0,0,0,0.06);
  --vs-shadow-sm:    0 2px 10px rgba(0,0,0,0.08);
  --vs-shadow:       0 6px 24px rgba(0,0,0,0.10);
  --vs-shadow-lg:    0 12px 48px rgba(0,0,0,0.14);
  --vs-shadow-xl:    0 24px 72px rgba(0,0,0,0.18);
  --vs-shadow-terra: 0 6px 24px rgba(192,101,64,0.26);
  --vs-shadow-gold:  0 6px 24px rgba(196,137,28,0.26);

  /* Transitions */
  --vs-ease:            cubic-bezier(0.4,0,0.2,1);
  --vs-transition:      all 0.35s var(--vs-ease);
  --vs-transition-fast: all 0.2s ease;

  /* Layout */
  --vs-header-h:    80px;
  --vs-header-h-sm: 80px;
}

/* ==========================================================================
   BASE RESET
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; max-width: 100%; }

body {
  font-family: var(--vs-font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--vs-text);
  background: var(--vs-white);
  overflow-x: hidden;
  max-width: 100%;
}

/* Typography */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--vs-font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--vs-secondary);
  margin-bottom: 0.9rem;
}
h1 { font-size: clamp(2.1rem,5.5vw,3.8rem); }
h2 { font-size: clamp(1.7rem,3.8vw,2.8rem); }
h3 { font-size: clamp(1.3rem,2.5vw,2rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1.2rem; color: var(--vs-text-light); line-height: 1.8; }
p:last-child { margin-bottom: 0; }

a { color: var(--vs-primary); text-decoration: none; transition: var(--vs-transition-fast); }
a:hover { color: var(--vs-terra-dark); }

img { max-width:100%; height:auto; display:block; }
ul,ol { margin:0; padding:0; list-style:none; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }
input,textarea,select { font-family:inherit; font-size:1rem; }

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.vs-section    { padding: 90px 0; }
.vs-section-sm { padding: 56px 0; }
.vs-section-lg { padding: 120px 0; }

.vs-bg-nature  { background: var(--vs-nature); }
.vs-bg-cream   { background: var(--vs-cream); }
.vs-bg-dark    { background: var(--vs-secondary); }
.vs-bg-terra   { background: var(--vs-primary); }

/* Section label / eyebrow */
.vs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--vs-font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vs-primary);
  margin-bottom: 0.9rem;
}
.vs-eyebrow::before,
.vs-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--vs-gold);
  border-radius: 2px;
}

.vs-eyebrow.light { color: var(--vs-gold-light); }
.vs-eyebrow.light::before,
.vs-eyebrow.light::after { background: rgba(255,255,255,0.4); }

/* Decorative divider */
.vs-ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0.5rem 0 1.75rem;
}
.vs-ornament-line {
  height: 1px;
  width: 50px;
  background: linear-gradient(to right, transparent, var(--vs-gold));
}
.vs-ornament-line.right {
  background: linear-gradient(to left, transparent, var(--vs-gold));
}
.vs-ornament i { color: var(--vs-gold); font-size: 1rem; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.vs-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 30px;
  border-radius: var(--vs-radius-pill);
  font-family: var(--vs-font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--vs-transition);
  border: 2px solid transparent;
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}

.vs-btn-primary {
  background: var(--vs-primary);
  color: var(--vs-white);
  border-color: var(--vs-primary);
  box-shadow: var(--vs-shadow-terra);
}
.vs-btn-primary:hover {
  background: var(--vs-terra-dark);
  border-color: var(--vs-terra-dark);
  color: var(--vs-white);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(154,74,44,0.32);
}

.vs-btn-gold {
  background: var(--vs-gold);
  color: var(--vs-white);
  border-color: var(--vs-gold);
  box-shadow: var(--vs-shadow-gold);
}
.vs-btn-gold:hover {
  background: #A97318;
  border-color: #A97318;
  color: var(--vs-white);
  transform: translateY(-3px);
}

.vs-btn-outline {
  background: transparent;
  color: var(--vs-primary);
  border-color: var(--vs-primary);
}
.vs-btn-outline:hover {
  background: var(--vs-primary);
  color: var(--vs-white);
  transform: translateY(-2px);
}

.vs-btn-outline-white {
  background: transparent;
  color: var(--vs-white);
  border-color: rgba(255,255,255,0.65);
}
.vs-btn-outline-white:hover {
  background: var(--vs-white);
  color: var(--vs-primary);
  border-color: var(--vs-white);
}

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

.vs-btn-lg {
  padding: 16px 40px;
  font-size: 0.875rem;
}

.vs-btn-sm {
  padding: 9px 20px;
  font-size: 0.75rem;
}

/* ==========================================================================
   CARDS
   ========================================================================== */
.vs-card {
  background: var(--vs-white);
  border-radius: var(--vs-radius-lg);
  overflow: hidden;
  box-shadow: var(--vs-shadow);
  transition: var(--vs-transition);
  border: 1px solid var(--vs-border-light);
}
.vs-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--vs-shadow-lg);
  border-color: transparent;
}

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */
#vs-back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--vs-primary);
  color: var(--vs-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--vs-shadow-terra);
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: var(--vs-transition);
  cursor: pointer;
  border: 2px solid rgba(255,255,255,0.3);
}
#vs-back-top.visible { opacity:1; visibility:visible; transform:translateY(0); }
#vs-back-top:hover   { background: var(--vs-terra-dark); transform:translateY(-3px); }

/* ==========================================================================
   HEADER & NAVIGATION — Separate solid header, never overlaps hero
   ========================================================================== */
#vs-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--vs-header-h);
  background: var(--vs-white);
  box-shadow: 0 2px 20px rgba(61,37,16,0.10);
  border-bottom: 3px solid var(--vs-terra);
  transition: box-shadow 0.3s ease;
}

#vs-header.is-scrolled {
  box-shadow: 0 4px 32px rgba(61,37,16,0.14);
}

#vs-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 28px;
  max-width: 1440px;
  margin: 0 auto;
}

/* ---- Top bar strip ---- */
#vs-header::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--vs-terra) 0%, var(--vs-gold) 50%, var(--vs-terra) 100%);
  position: absolute;
  top: 0; left: 0; right: 0;
}

/* ---- Logo ---- */
.vs-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.vs-logo img { height: 52px; width: auto; }

.vs-logo-text-wrap { line-height: 1.1; }
.vs-logo-name {
  font-family: var(--vs-font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--vs-secondary);
  letter-spacing: 0.02em;
  display: block;
}
.vs-logo-tagline {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vs-primary);
  display: block;
}

/* ---- Primary Nav ---- */
.vs-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.vs-nav > li { position: relative; }
.vs-nav > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--vs-text);
  padding: 8px 12px;
  border-radius: var(--vs-radius-sm);
  position: relative;
  transition: var(--vs-transition-fast);
}
.vs-nav > li > a::after {
  content:'';
  position:absolute;
  bottom:3px; left:12px; right:12px;
  height:2px;
  background: var(--vs-terra);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
  border-radius: 2px;
}
.vs-nav > li > a:hover { color: var(--vs-primary); }
.vs-nav > li > a:hover::after,
.vs-nav > li.current-menu-item > a::after,
.vs-nav > li.current-menu-ancestor > a::after { transform:scaleX(1); transform-origin:left; }
.vs-nav > li.current-menu-item > a,
.vs-nav > li.current-menu-ancestor > a { color: var(--vs-primary); }

/* Dropdown */
.vs-nav .sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 230px;
  background: var(--vs-white);
  border-radius: var(--vs-radius);
  box-shadow: var(--vs-shadow-lg);
  border-top: 3px solid var(--vs-primary);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--vs-transition);
  z-index: 100;
}
.vs-nav li:hover > .sub-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.vs-nav .sub-menu li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--vs-text);
  letter-spacing: 0.03em;
  text-transform: none;
  transition: var(--vs-transition-fast);
}
.vs-nav .sub-menu li a:hover { color: var(--vs-primary); background: var(--vs-nature); padding-left: 24px; }
.vs-nav .sub-menu li a::after { display: none; }

/* ---- Header actions ---- */
.header-actions { display: flex; align-items: center; gap: 10px; }

/* Lang switcher */
.vs-lang-switcher { position: relative; }
.vs-lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1.5px solid var(--vs-border);
  border-radius: var(--vs-radius-pill);
  color: var(--vs-text);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  background: var(--vs-cream);
  transition: var(--vs-transition-fast);
}
.vs-lang-btn:hover {
  border-color: var(--vs-terra);
  color: var(--vs-terra);
  background: #fff;
}
.vs-lang-caret { transition: transform 0.2s ease; }
.vs-lang-switcher.open .vs-lang-caret { transform: rotate(180deg); }
.vs-lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--vs-white);
  border-radius: var(--vs-radius);
  box-shadow: 0 8px 32px rgba(61,37,16,0.14);
  border: 1px solid var(--vs-border-light);
  padding: 6px 0;
  min-width: 170px;
  display: none;
  z-index: 300;
}
.vs-lang-switcher.open .vs-lang-dropdown { display: block; }
.vs-lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--vs-text);
  text-decoration: none;
  transition: var(--vs-transition-fast);
}
.vs-lang-option:hover { background: var(--vs-nature); color: var(--vs-primary); }
.vs-lang-option.active { color: var(--vs-primary); font-weight: 700; }
.vs-lang-flag { font-size: 1rem; line-height: 1; }
.vs-lang-check { margin-left: auto; color: var(--vs-terra); font-size: 0.65rem; visibility: hidden; }
.vs-lang-option.active .vs-lang-check { visibility: visible; }

/* Hamburger */
.vs-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 8px;
  cursor: pointer;
  background: var(--vs-terra);
  border-radius: var(--vs-radius-sm);
  border: none;
  flex-shrink: 0;
}
.vs-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--vs-white);
  transition: var(--vs-transition-fast);
}
.vs-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.vs-hamburger.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.vs-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ---- Mobile Menu ---- */
.vs-mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1050;
  opacity: 0; visibility: hidden;
  transition: var(--vs-transition);
}
.vs-mobile-overlay.open { opacity:1; visibility:visible; }

#vs-mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(380px, 92vw);
  height: 100vh;
  background: var(--vs-white);
  z-index: 1100;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 90px 32px 40px;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.4s var(--vs-ease), visibility 0s 0.4s;
  box-shadow: -4px 0 48px rgba(0,0,0,0.15);
}
#vs-mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.4s var(--vs-ease), visibility 0s 0s;
}

#vs-mobile-menu .mob-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--vs-nature);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--vs-secondary);
  cursor: pointer;
  transition: var(--vs-transition-fast);
}
#vs-mobile-menu .mob-close:hover { background: var(--vs-primary); color: var(--vs-white); }

#vs-mobile-menu .menu-item > a {
  display: block;
  font-family: var(--vs-font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--vs-secondary);
  padding: 13px 0;
  border-bottom: 1px solid var(--vs-border-light);
  transition: var(--vs-transition-fast);
}
#vs-mobile-menu .menu-item > a:hover { color: var(--vs-primary); padding-left: 6px; }
#vs-mobile-menu .sub-menu { padding-left: 16px; }
#vs-mobile-menu .sub-menu a { font-size: 1rem; }
#vs-mobile-menu .mob-cta-wrap { margin-top: 2rem; display: flex; flex-direction: column; gap: 10px; }

/* ==========================================================================
   HERO / BANNER
   ========================================================================== */
.vs-hero {
  position: relative;
  height: calc(100svh - var(--vs-header-h));
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Slider */
.vs-slider { position: absolute; inset: 0; }
.vs-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.vs-slide.active { opacity: 1; }
.vs-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: vsKenBurns 9s ease-out forwards;
}
@keyframes vsKenBurns {
  from { transform: scale(1.06); }
  to   { transform: scale(1.0); }
}

/* Overlay — warm dark brown */
.vs-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(61,37,16,0.70) 0%,
    rgba(61,37,16,0.42) 45%,
    rgba(10,5,2,0.55) 100%
  );
}

.vs-hero-body {
  position: relative;
  z-index: 5;
  max-width: 860px;
}

.vs-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vs-gold-light);
  background: rgba(196,137,28,0.18);
  border: 1px solid rgba(232,192,104,0.35);
  padding: 7px 18px;
  border-radius: var(--vs-radius-pill);
  margin-bottom: 1.4rem;
  backdrop-filter: blur(6px);
}

.vs-hero-title {
  font-family: var(--vs-font-heading);
  font-size: clamp(2.4rem,7vw,4.6rem);
  font-weight: 700;
  color: var(--vs-white);
  line-height: 1.08;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 24px rgba(0,0,0,0.38);
}
.vs-hero-title em { font-style:italic; color: var(--vs-gold-light); }

.vs-hero-sub {
  font-size: clamp(1rem,2.5vw,1.2rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.5rem;
  max-width: 600px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  line-height: 1.7;
}

.vs-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Stats bar inside hero */
.vs-hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 6;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.14);
}
.vs-hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}
.vs-hero-stat {
  text-align: center;
  padding: 16px 10px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.vs-hero-stat:last-child { border-right: none; }
.vs-hero-stat .num {
  font-family: var(--vs-font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--vs-gold-light);
  line-height: 1;
  display: block;
}
.vs-hero-stat .lbl {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  display: block;
  margin-top: 3px;
}

/* Arrows */
.vs-hero-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 8;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--vs-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--vs-transition-fast);
  backdrop-filter: blur(6px);
}
.vs-hero-arrow:hover { background: var(--vs-primary); border-color: var(--vs-primary); }
.vs-hero-arrow.prev { left: 24px; }
.vs-hero-arrow.next { right: 24px; }

/* Dots */
.vs-hero-dots {
  position: absolute;
  bottom: 80px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 8;
}
.vs-hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: var(--vs-transition-fast);
  border: none;
}
.vs-hero-dot.active {
  background: var(--vs-gold-light);
  width: 26px;
  border-radius: 4px;
}

/* ==========================================================================
   PAGE HERO (inner pages)
   ========================================================================== */
.vs-page-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.vs-page-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.vs-page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(61,37,16,0.82) 0%, rgba(0,0,0,0.35) 60%, transparent 100%);
}
.vs-page-hero-body {
  position: relative; z-index: 2;
  color: var(--vs-white);
  padding-bottom: 44px;
  width: 100%;
}
.vs-page-hero-body h1 { color: var(--vs-white); text-shadow: 0 3px 14px rgba(0,0,0,0.4); margin: 0; }

/* Breadcrumb */
.vs-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.vs-breadcrumb a { color: var(--vs-gold-light); transition: var(--vs-transition-fast); }
.vs-breadcrumb a:hover { color: var(--vs-white); }
.vs-breadcrumb .sep { opacity: 0.5; font-size: 0.65rem; }

/* ==========================================================================
   WELCOME / ABOUT SECTION
   ========================================================================== */
.vs-welcome-img-stack { position: relative; }
.vs-welcome-img-main {
  border-radius: var(--vs-radius-xl);
  overflow: hidden;
  box-shadow: var(--vs-shadow-xl);
  position: relative;
}
.vs-welcome-img-main img {
  width: 100%; height: 520px;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.vs-welcome-img-main:hover img { transform: scale(1.04); }

.vs-welcome-img-badge {
  position: absolute;
  bottom: -28px; right: -24px;
  background: var(--vs-primary);
  color: var(--vs-white);
  padding: 22px 20px;
  border-radius: var(--vs-radius-lg);
  text-align: center;
  box-shadow: var(--vs-shadow-terra);
  min-width: 130px;
  border: 3px solid var(--vs-white);
}
.vs-welcome-img-badge .n { font-family:var(--vs-font-heading); font-size:2.8rem; font-weight:700; line-height:1; display:block; }
.vs-welcome-img-badge .l { font-size:0.68rem; letter-spacing:0.12em; text-transform:uppercase; opacity:0.9; display:block; }

.vs-welcome-leaf {
  position: absolute;
  top: -20px; left: -20px;
  width: 80px; height: 80px;
  background: var(--vs-gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  box-shadow: var(--vs-shadow-sm);
}

/* Feature pills */
.vs-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 1.75rem;
}
.vs-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--vs-nature);
  border-radius: var(--vs-radius);
  border: 1px solid var(--vs-border-light);
  transition: var(--vs-transition-fast);
}
.vs-feature-item:hover { background: var(--vs-white); box-shadow: var(--vs-shadow-sm); }
.vs-feature-icon {
  width: 42px; height: 42px;
  border-radius: var(--vs-radius);
  background: var(--vs-primary);
  display: flex; align-items: center; justify-content: center;
  color: var(--vs-white);
  font-size: 1rem;
  flex-shrink: 0;
}
.vs-feature-item h6 { font-size: 0.88rem; margin: 0 0 2px; color: var(--vs-secondary); }
.vs-feature-item p  { font-size: 0.78rem; margin: 0; color: var(--vs-text-light); line-height: 1.4; }

/* ==========================================================================
   ROOM CARDS
   ========================================================================== */
.vs-room-card {
  background: var(--vs-white);
  border-radius: var(--vs-radius-xl);
  overflow: hidden;
  box-shadow: var(--vs-shadow);
  transition: var(--vs-transition);
  border: 1px solid var(--vs-border-light);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.vs-room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--vs-shadow-xl);
  border-color: transparent;
}

.vs-room-card-img {
  position: relative;
  overflow: hidden;
  height: 260px;
}
.vs-room-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.vs-room-card:hover .vs-room-card-img img { transform: scale(1.08); }

.vs-room-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--vs-primary);
  color: var(--vs-white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: var(--vs-radius-pill);
}
.vs-room-badge.gold { background: var(--vs-gold); }

.vs-room-price-badge {
  position: absolute;
  bottom: 14px; right: 14px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--vs-radius);
  padding: 8px 14px;
  text-align: center;
  box-shadow: var(--vs-shadow-sm);
}
.vs-room-price-badge .from { font-size: 0.65rem; color: var(--vs-gray); display: block; line-height: 1; }
.vs-room-price-badge .amt  { font-family: var(--vs-font-heading); font-size: 1.5rem; font-weight: 700; color: var(--vs-primary); line-height: 1.1; display: block; }
.vs-room-price-badge .per  { font-size: 0.65rem; color: var(--vs-gray); display: block; }

.vs-room-card-body {
  padding: 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.vs-room-card-body h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }

.vs-room-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0.75rem 0 1rem;
}
.vs-room-spec {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--vs-text-light);
}
.vs-room-spec i { color: var(--vs-primary); font-size: 0.85rem; }

.vs-room-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1.25rem;
}
.vs-room-tag {
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: var(--vs-radius-pill);
  background: var(--vs-nature);
  color: var(--vs-text);
  border: 1px solid var(--vs-border-light);
}

.vs-room-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--vs-border-light);
  gap: 10px;
}

/* ==========================================================================
   AMENITIES SECTION
   ========================================================================== */
.vs-amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(185px,1fr));
  gap: 20px;
}
.vs-amenity-box {
  text-align: center;
  padding: 1.75rem 1.25rem;
  border-radius: var(--vs-radius-lg);
  background: var(--vs-white);
  border: 1.5px solid var(--vs-border-light);
  transition: var(--vs-transition);
}
.vs-amenity-box:hover {
  border-color: var(--vs-primary);
  box-shadow: var(--vs-shadow-terra);
  transform: translateY(-4px);
}
.vs-amenity-icon {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--vs-nature);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--vs-primary);
  transition: var(--vs-transition-fast);
}
.vs-amenity-box:hover .vs-amenity-icon { background: var(--vs-primary); color: var(--vs-white); }
.vs-amenity-box p { font-size: 0.82rem; margin: 0; color: var(--vs-text); font-weight: 600; }

/* ==========================================================================
   GALLERY GRID
   ========================================================================== */
.vs-gal-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-auto-rows: 200px;
  gap: 10px;
}
.vs-gal-grid .g-span2 { grid-column: span 2; }
.vs-gal-grid .g-tall  { grid-row: span 2; }

.vs-gal-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--vs-radius);
  cursor: zoom-in;
  background: var(--vs-border);
}
.vs-gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.vs-gal-item:hover img { transform: scale(1.09); }
.vs-gal-hover {
  position: absolute; inset: 0;
  background: rgba(46,107,31,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--vs-transition);
}
.vs-gal-item:hover .vs-gal-hover { opacity: 1; }
.vs-gal-hover i { color: var(--vs-white); font-size: 1.75rem; transform: scale(0.7); transition: var(--vs-transition); }
.vs-gal-item:hover .vs-gal-hover i { transform: scale(1); }

/* Masonry Gallery */
.vs-gallery-masonry { columns: 3; column-gap: 14px; }
.vs-gallery-masonry .vs-gal-item { break-inside: avoid; margin-bottom: 14px; border-radius: var(--vs-radius); height: auto; }
.vs-gallery-masonry .vs-gal-item img { height: auto; min-height: unset; }

/* Filter buttons */
.vs-filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 2.5rem;
}
.vs-filter-btn {
  padding: 8px 22px;
  border-radius: var(--vs-radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: 1.5px solid var(--vs-border);
  background: var(--vs-white);
  color: var(--vs-text);
  cursor: pointer;
  transition: var(--vs-transition-fast);
}
.vs-filter-btn:hover,
.vs-filter-btn.active {
  background: var(--vs-primary);
  border-color: var(--vs-primary);
  color: var(--vs-white);
}

/* ==========================================================================
   WHY US / DARK SECTION
   ========================================================================== */
.vs-why-section {
  background: linear-gradient(135deg, var(--vs-secondary) 0%, #2A1408 100%);
  position: relative;
  overflow: hidden;
}
.vs-why-section::before {
  content:'';
  position:absolute;
  top:-80px; right:-80px;
  width:380px; height:380px;
  border-radius:50%;
  background: rgba(46,107,31,0.10);
}
.vs-why-section::after {
  content:'';
  position:absolute;
  bottom:-60px; left:-60px;
  width:260px; height:260px;
  border-radius:50%;
  background: rgba(196,137,28,0.08);
}
.vs-why-card {
  text-align: center;
  padding: 2.25rem 1.75rem;
  border-radius: var(--vs-radius-lg);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--vs-transition);
  height: 100%;
}
.vs-why-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(196,137,28,0.4);
  transform: translateY(-5px);
}
.vs-why-card .ic {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vs-primary) 0%, var(--vs-terra-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.65rem;
  color: var(--vs-white);
  box-shadow: var(--vs-shadow-terra);
}
.vs-why-card h4 { color: var(--vs-white); font-size: 1.05rem; margin-bottom: 0.7rem; }
.vs-why-card p  { color: rgba(255,255,255,0.68); font-size: 0.87rem; margin: 0; line-height: 1.65; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.vs-review-card {
  background: var(--vs-white);
  border-radius: var(--vs-radius-lg);
  padding: 1.75rem;
  box-shadow: var(--vs-shadow);
  border: 1px solid var(--vs-border-light);
  height: 100%;
  position: relative;
  transition: var(--vs-transition);
}
.vs-review-card:hover { box-shadow: var(--vs-shadow-lg); transform: translateY(-4px); }
.vs-review-card::before {
  content: '"';
  font-family: var(--vs-font-heading);
  font-size: 5rem;
  color: var(--vs-nature);
  line-height: 1;
  position: absolute;
  top: 10px; right: 20px;
}
.vs-stars { color: #F5A623; font-size: 0.85rem; margin-bottom: 0.9rem; }
.vs-review-text {
  font-family: var(--vs-font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--vs-text);
  line-height: 1.75;
  margin-bottom: 1.4rem;
}
.vs-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 1.1rem;
  border-top: 1px solid var(--vs-border-light);
}
.vs-review-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--vs-primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--vs-font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--vs-white);
  flex-shrink: 0;
}
.vs-review-name   { font-weight: 700; font-size: 0.92rem; color: var(--vs-secondary); }
.vs-review-place  { font-size: 0.77rem; color: var(--vs-gray); }

/* ==========================================================================
   ATTRACTIONS
   ========================================================================== */
.vs-attract-card {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--vs-white);
  border-radius: var(--vs-radius-lg);
  overflow: hidden;
  box-shadow: var(--vs-shadow-sm);
  border: 1px solid var(--vs-border-light);
  transition: var(--vs-transition);
  height: 100%;
}
.vs-attract-card:hover { transform: translateY(-4px); box-shadow: var(--vs-shadow); }
.vs-attract-img {
  width: 100px;
  flex-shrink: 0;
  align-self: stretch;
  overflow: hidden;
}
.vs-attract-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.vs-attract-card:hover .vs-attract-img img { transform: scale(1.1); }
.vs-attract-body { padding: 1.1rem 1.25rem; }
.vs-attract-body h5 { font-size: 0.95rem; margin-bottom: 4px; }
.vs-attract-dist {
  font-size: 0.75rem;
  color: var(--vs-primary);
  font-weight: 700;
  margin-bottom: 5px;
  display: flex; align-items: center; gap: 4px;
}
.vs-attract-body p { font-size: 0.8rem; color: var(--vs-text-light); margin: 0; line-height: 1.5; }

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.vs-cta-section {
  background: linear-gradient(135deg, var(--vs-primary-dark) 0%, var(--vs-primary) 100%);
  position: relative;
  overflow: hidden;
}
.vs-cta-section::before {
  content:'';
  position:absolute;
  top:-120px; right:-80px;
  width:400px; height:400px;
  border-radius:50%;
  background: rgba(255,255,255,0.06);
}
.vs-cta-section::after {
  content:'';
  position:absolute;
  bottom:-80px; left:-60px;
  width:280px; height:280px;
  border-radius:50%;
  background: rgba(196,137,28,0.15);
}
.vs-cta-section > .container { position: relative; z-index: 2; }
.vs-cta-section h2 { color: var(--vs-white); }
.vs-cta-section p  { color: rgba(255,255,255,0.82); }

/* ==========================================================================
   DINING SECTION
   ========================================================================== */
.vs-dining-card {
  background: var(--vs-white);
  border-radius: var(--vs-radius-xl);
  overflow: hidden;
  box-shadow: var(--vs-shadow);
  border: 1px solid var(--vs-border-light);
  height: 100%;
  transition: var(--vs-transition);
}
.vs-dining-card:hover { transform: translateY(-6px); box-shadow: var(--vs-shadow-lg); }
.vs-dining-card-header {
  padding: 1.75rem;
  display: flex;
  align-items: center;
  gap: 14px;
}
.vs-dining-card-header .din-icon {
  width: 56px; height: 56px;
  border-radius: var(--vs-radius);
  background: var(--vs-nature);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--vs-primary);
  flex-shrink: 0;
}
.vs-dining-card-header h3 { font-size: 1.2rem; margin: 0; }
.vs-dining-card-header .price {
  margin-left: auto;
  font-family: var(--vs-font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--vs-primary);
  white-space: nowrap;
}
.vs-dining-card-body {
  padding: 0 1.75rem 1.75rem;
  border-top: 1px solid var(--vs-border-light);
  padding-top: 1.25rem;
}

/* ==========================================================================
   MAP / CONTACT
   ========================================================================== */
.vs-map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: var(--vs-radius-xl);
  box-shadow: var(--vs-shadow-lg);
}

.vs-info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 1.25rem;
  background: var(--vs-white);
  border-radius: var(--vs-radius-lg);
  box-shadow: var(--vs-shadow-sm);
  border: 1px solid var(--vs-border-light);
  margin-bottom: 1rem;
  transition: var(--vs-transition-fast);
}
.vs-info-card:hover { box-shadow: var(--vs-shadow); border-color: var(--vs-border); }
.vs-info-card-icon {
  width: 50px; height: 50px;
  border-radius: var(--vs-radius);
  background: var(--vs-nature);
  display: flex; align-items: center; justify-content: center;
  color: var(--vs-primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.vs-info-card h6 { font-size: 0.8rem; font-weight: 700; color: var(--vs-gray); text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 3px; }
.vs-info-card p  { font-size: 0.92rem; margin: 0; color: var(--vs-text); font-weight: 500; }
.vs-info-card a  { color: var(--vs-text); }
.vs-info-card a:hover { color: var(--vs-primary); }

/* ==========================================================================
   BOOKING SIDEBAR
   ========================================================================== */
.vs-book-box {
  background: var(--vs-white);
  border-radius: var(--vs-radius-xl);
  overflow: hidden;
  box-shadow: var(--vs-shadow-lg);
  border: 1.5px solid var(--vs-border-light);
  position: sticky;
  top: calc(var(--vs-header-h-sm) + 20px);
}
.vs-book-box-head {
  background: linear-gradient(135deg, var(--vs-primary) 0%, var(--vs-terra-mid) 100%);
  padding: 1.75rem;
  text-align: center;
  color: var(--vs-white);
}
.vs-book-box-head .from { font-size: 0.75rem; opacity: 0.8; }
.vs-book-box-head .price { font-family: var(--vs-font-heading); font-size: 3rem; font-weight: 700; line-height: 1; }
.vs-book-box-head .per  { font-size: 0.8rem; opacity: 0.8; }
.vs-book-box-body { padding: 1.5rem; }
.vs-book-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--vs-border-light);
  font-size: 0.87rem;
}
.vs-book-row .k { color: var(--vs-gray); }
.vs-book-row .v { font-weight: 700; color: var(--vs-secondary); }
.vs-book-assure {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.78rem; color: var(--vs-text-light);
  margin-top: 0.75rem;
}
.vs-book-assure i { color: var(--vs-primary); }

/* ==========================================================================
   CONTACT FORM OVERRIDES
   ========================================================================== */
.vs-cf-wrap input[type="text"],
.vs-cf-wrap input[type="email"],
.vs-cf-wrap input[type="tel"],
.vs-cf-wrap select,
.vs-cf-wrap textarea,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--vs-border);
  border-radius: var(--vs-radius);
  font-size: 0.95rem;
  color: var(--vs-text);
  background: var(--vs-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
.vs-cf-wrap input:focus,
.vs-cf-wrap textarea:focus,
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  border-color: var(--vs-primary);
  box-shadow: 0 0 0 3px rgba(46,107,31,0.10);
}
.vs-cf-wrap textarea,
.wpcf7-form textarea { resize: vertical; min-height: 140px; }
.wpcf7-form .wpcf7-submit,
.vs-cf-wrap .vs-submit {
  background: var(--vs-primary);
  color: var(--vs-white);
  padding: 14px 36px;
  border-radius: var(--vs-radius-pill);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--vs-transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.wpcf7-form .wpcf7-submit:hover,
.vs-cf-wrap .vs-submit:hover {
  background: var(--vs-terra-dark);
  transform: translateY(-2px);
  box-shadow: var(--vs-shadow-terra);
}
.wpcf7-not-valid-tip { color: #c0392b; font-size: 0.78rem; margin-top: 4px; display: block; }
.wpcf7-response-output { border-radius: var(--vs-radius) !important; padding: 12px 16px !important; margin-top: 1rem !important; font-size: 0.9rem !important; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
#vs-footer {
  background: linear-gradient(180deg, #1E120A 0%, #140C04 100%);
  color: rgba(255,255,255,0.65);
  padding-top: 72px;
}
.vs-footer-logo .vs-logo-name { color: var(--vs-white); text-shadow: none; }
.vs-footer-logo .vs-logo-tagline { color: var(--vs-gold-light); }
.vs-footer-logo img { height: 48px; margin-bottom: 1rem; }

.vs-footer-about {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin: 1rem 0 1.5rem;
}

.vs-footer-social {
  display: flex; gap: 9px; flex-wrap: wrap;
}
.vs-footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  transition: var(--vs-transition-fast);
  border: 1px solid rgba(255,255,255,0.1);
}
.vs-footer-social a:hover {
  background: var(--vs-primary);
  color: var(--vs-white);
  transform: translateY(-3px);
  border-color: var(--vs-primary);
}

.vs-footer-heading {
  font-family: var(--vs-font-heading);
  font-size: 1rem;
  color: var(--vs-white);
  margin-bottom: 1.4rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.vs-footer-heading::after {
  content:'';
  position:absolute;
  bottom:-1px; left:0;
  width:36px; height:2px;
  background: var(--vs-gold);
  border-radius: 2px;
}

.vs-footer-links li { margin-bottom: 9px; }
.vs-footer-links a {
  color: rgba(255,255,255,0.58);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--vs-transition-fast);
}
.vs-footer-links a:hover { color: var(--vs-gold-light); padding-left: 4px; }
.vs-footer-links i { font-size: 0.6rem; color: var(--vs-gold); }

.vs-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 13px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.62);
}
.vs-footer-contact-item i { color: var(--vs-gold-light); margin-top: 2px; flex-shrink: 0; }
.vs-footer-contact-item a { color: rgba(255,255,255,0.62); }
.vs-footer-contact-item a:hover { color: var(--vs-gold-light); }

.vs-footer-hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 52px 0 0;
}
.vs-footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
}
.vs-footer-bottom a { color: rgba(255,255,255,0.5); }
.vs-footer-bottom a:hover { color: var(--vs-gold-light); }

/* ==========================================================================
   MISC INNER PAGE STYLES
   ========================================================================== */
/* House rules */
.vs-rules-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 16px;
  background: var(--vs-cream);
  border-radius: var(--vs-radius);
  margin-bottom: 10px;
  font-size: 0.92rem;
  border: 1px solid var(--vs-border-light);
}
.vs-rules-list li.ok  .r-icon { color: var(--vs-primary); }
.vs-rules-list li.no  .r-icon { color: #c0392b; }

/* Stats grid */
.vs-stats-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  text-align: center;
}
.vs-stat-item .s-num {
  font-family: var(--vs-font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--vs-primary);
  display: block;
  line-height: 1;
}
.vs-stat-item .s-lbl { font-size: 0.82rem; color: var(--vs-text-light); margin-top: 4px; display: block; }

/* Text content */
.vs-rich-text h2 { margin-top: 2.5rem; }
.vs-rich-text ul { padding-left: 1.5rem; list-style: disc; }
.vs-rich-text ul li { margin-bottom: 0.5rem; color: var(--vs-text-light); }

/* 404 */
.vs-404 { min-height: 72vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.vs-404-num {
  font-family: var(--vs-font-heading);
  font-size: clamp(5rem,20vw,12rem);
  font-weight: 700;
  color: var(--vs-nature);
  line-height: 1;
  text-shadow: 3px 3px 0 var(--vs-border);
}

/* Pagination */
.vs-pagination { margin-top: 3rem; }
.vs-pagination .page-numbers { display: inline-flex; list-style: none; gap: 8px; flex-wrap: wrap; padding: 0; margin: 0; }
.vs-pagination .page-numbers li a,
.vs-pagination .page-numbers li span {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--vs-border);
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--vs-text);
  transition: var(--vs-transition-fast);
  text-decoration: none;
}
.vs-pagination .page-numbers li a:hover,
.vs-pagination .page-numbers li span.current {
  background: var(--vs-primary);
  border-color: var(--vs-primary);
  color: var(--vs-white);
}
.vs-pagination .page-numbers li span.dots { border: none; background: none; }

/* AOS */
[data-aos] { opacity:0; transition: opacity 0.65s ease, transform 0.65s ease; }
[data-aos="fade-up"]    { transform: translateY(32px); }
[data-aos="fade-down"]  { transform: translateY(-32px); }
[data-aos="fade-left"]  { transform: translateX(32px); }
[data-aos="fade-right"] { transform: translateX(-32px); }
[data-aos="zoom-in"]    { transform: scale(0.92); }
[data-aos].aos-animate  { opacity:1; transform:none; }

/* Admin bar offset */
body.admin-bar #vs-header { top: 32px; }
@media (max-width:782px) { body.admin-bar #vs-header { top: 46px; } }

/* Skip link */
.skip-link:focus {
  position:fixed; top:8px; left:8px; z-index:9999;
  background:var(--vs-primary); color:var(--vs-white);
  padding:10px 20px; border-radius:var(--vs-radius);
  font-weight:700;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width:1199.98px) {
  .vs-nav > li > a { padding: 8px 10px; font-size: 0.74rem; }
  .vs-stats-row { grid-template-columns: repeat(2,1fr); }
}

@media (max-width:991.98px) {
  :root { --vs-header-h: 72px; }
  .vs-nav, .header-actions .vs-btn:not(.vs-btn-sm) { display: none; }
  .vs-hamburger { display: flex; }
  .vs-welcome-img-badge { bottom: 16px; right: 12px; }
  .vs-gal-grid { grid-template-columns: repeat(2,1fr); }
  .vs-gal-grid .g-span2 { grid-column: span 1; }
  .vs-gallery-masonry { columns: 2; }
  .vs-hero-stats-inner { grid-template-columns: repeat(2,1fr); }
  .vs-hero-stat:nth-child(2) { border-right: none; }
}

@media (max-width:767.98px) {
  :root { --vs-header-h: 66px; }
  .vs-section, .vs-section-lg { padding: 60px 0; }
  .vs-hero { min-height: 560px; }
  .vs-hero-arrow { display: none; }
  .vs-welcome-img-badge { display: none; }
  .vs-welcome-img-main img { height: 300px; }
  .vs-gal-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .vs-gal-grid .g-tall { grid-row: span 1; }
  .vs-gallery-masonry { columns: 1; }
  .vs-amenity-grid { grid-template-columns: repeat(2,1fr); }
  .vs-stats-row { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .vs-stat-item .s-num { font-size: 2.2rem; }
  .vs-page-hero { height: 260px; }
  .vs-hero-stats { display: none; }
  .vs-book-box { position: static; margin-top: 2.5rem; }
  /* AOS: no horizontal translate on mobile — avoids Android scroll */
  [data-aos="fade-left"]  { transform: translateY(20px); }
  [data-aos="fade-right"] { transform: translateY(20px); }
  /* Clip decorative leaf that overflows left edge */
  .vs-welcome-img-stack { overflow: hidden; border-radius: var(--vs-radius-xl); }
  .vs-welcome-leaf { left: 0; top: 0; }
}

@media (max-width:575.98px) {
  .vs-hero-actions { flex-direction: column; align-items: flex-start; }
  .vs-amenity-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .vs-stats-row { grid-template-columns: repeat(2,1fr); }
  .vs-features-grid { grid-template-columns: 1fr; }
}

@media print {
  #vs-header, #vs-footer, #vs-back-top, .vs-hero-arrow,
  .vs-cta-section, .vs-book-box, .vs-hero-dots { display: none !important; }
  body { color: #000; background: #fff; }
}
