:root {
  --bg: #faf7f2;
  --bg-elev: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --brand: #3b82f6; /* Belmont blue */
  --brand-2: #ef4444; /* Belmont red */
  --accent: #eff6ff; /* Light blue accent */
  --accent-red: #fef2f2; /* Light red accent */
  --danger: #ef4444;
  --shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  --border: #e6e1da;
  
  /* Premium shadows and effects */
  --shadow-sm: 0 2px 8px rgba(59, 130, 246, 0.1);
  --shadow-md: 0 8px 32px rgba(59, 130, 246, 0.15);
  --shadow-lg: 0 20px 60px rgba(59, 130, 246, 0.2);
  --shadow-red: 0 8px 32px rgba(239, 68, 68, 0.15);
  --shadow-gradient: 0 20px 60px rgba(59, 130, 246, 0.25);
  
  /* Premium gradients */
  --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 50%, #ef4444 100%);
  --gradient-secondary: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #3b82f6 100%);
  --gradient-accent: linear-gradient(135deg, #eff6ff 0%, #fef2f2 100%);
  --gradient-card: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  
  /* Premium borders */
  --border-gradient: linear-gradient(135deg, #3b82f6, #ef4444);
  --border-radius: 20px;
  --border-radius-sm: 12px;
}

/* ===== Overrides: remove blue backgrounds on About and Amenities ===== */
/* About section container background */
#about.section,
#about.section.section-about {
  background: transparent !important;
}
/* Remove decorative top bar on section (blue strip) for About only */
#about.section::before {
  display: none !important;
}

/* Amenities container (room pages) */
.amenities-section {
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
}
.amenities-section::before {
  display: none !important;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, system-ui, -apple-system, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: linear-gradient(135deg, #faf7f2 0%, #f0f9ff 50%, #fef2f2 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Ensure content starts below fixed header */
main { padding-top: 140px; }
@media (max-width: 768px) { main { padding-top: 120px; } }

/* Additional spacing for room pages */
main.room-main { padding-top: 160px; }
@media (max-width: 768px) { main.room-main { padding-top: 140px; } }

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1400px, 98%);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 0.75rem;
  background: var(--gradient-primary);
  color: #ffffff;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-md);
}

/* Simple Header Design */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 2.5rem 0;
  position: relative;
  min-height: 140px;
}

/* Desktop logo centering */
@media (min-width: 769px) {
  .header-inner .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1101;
  }
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: transform 0.3s ease;
  position: relative;
  left: auto;
  transform: none;
  z-index: 1101; /* avoid overlaying desktop nav */
}

.logo:hover {
  transform: translateX(-50%) translateY(-1px);
}

.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--brand);
  color: #ffffff;
  font-weight: 800;
  transition: all 0.3s ease;
}

.logo-mark:hover {
  background: var(--brand-2);
  transform: scale(1.05);
}

.logo-text {
  font-family: "UnifrakturMaguntia", "Gravitas One", "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: 2.6rem;
  letter-spacing: 0.3px;
  color: var(--brand) !important;
  font-weight: 700;
  text-align: center;
  margin-top: 0rem;
  margin-bottom: 0.5rem;
}

.logo-img { 
  height: 100px; 
  width: auto; 
  display: block;
  margin-bottom: 0.2rem;
  margin-top: 0.5rem;
}

/* Desktop Navigation - Hide horizontal menu, show hamburger */
.site-nav {
  display: none; /* Hide the horizontal navigation on desktop */
}

/* Show hamburger menu content on all screen sizes */
.site-nav .nav-section,
.site-nav .nav-footer {
  display: block !important;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.site-nav a:hover {
  color: var(--brand-2);
  transform: translateY(-2px);
  text-decoration: underline;
}

.nav-toggle {
  display: block !important;
  background: transparent;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 1103;
  order: -2;
  margin-right: auto;
}

.hamburger-icon {
  font-size: 1.8rem;
  color: var(--brand);
  display: block;
  line-height: 1;
  transition: all 0.3s ease;
}

/* Remove home emoji icon usage */
.home-icon { display: none !important; }

.close-icon {
  font-size: 1.8rem;
  color: var(--brand);
  display: none;
  line-height: 1;
  transition: all 0.3s ease;
}

.nav-toggle:hover .hamburger-icon,
.nav-toggle:hover .close-icon {
  color: var(--brand-2);
}

/* When nav is open, switch icons */
.nav-toggle[aria-expanded="true"] .hamburger-icon {
  display: none;
}

.nav-toggle[aria-expanded="true"] .close-icon {
  display: block; /* show X icon when menu is open */
}

/* Desktop-only inline links */
.desktop-links { display: none; }

/* Mobile home icon - show on mobile, hide on desktop */
.mobile-home-icon {
  display: none;
}

@media (max-width: 768px) {
  .mobile-home-icon {
    display: block !important;
    color: var(--brand);
    font-size: 1.5rem;
    margin-left: auto !important;
    order: 1;
  }
}
@media (min-width: 769px) {
  /* Move left group fully left and hide hamburger on desktop */
  .nav-toggle { display: none !important; }
  .desktop-left { margin-left: 0; }
  .header-inner { padding-left: 0; padding-right: 0; }
  .desktop-links { 
    display: flex; 
    gap: 36px; 
    align-items: center; 
    position: relative; 
    z-index: 1202; /* keep above centered logo */
  }
  /* Single-row header; remove top utility strip */
  .desktop-left { margin-top: 0; }
  .desktop-right { margin-top: 0; }
  .desktop-left-top { display: none !important; }
  .desktop-links a { 
    color: #1d4ed8; 
    text-decoration: none; 
    font-weight: 600; 
    font-size: 1.05rem; 
    font-family: "Playfair Display", Georgia, serif; 
    letter-spacing: 0.03em;
    padding: 6px 2px;
  }
  .desktop-links a:hover { text-decoration: none; color: #ef4444; }
  .desktop-left { order: -1; margin-left: 8px; }
  .desktop-right { margin-left: auto; margin-right: 16px; gap: 24px; align-items: center; }
  .hamburger-icon { display: none; }
  .mobile-home-icon { display: none !important; }
}

/* Icon link alignment */
.desktop-links .link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: #1d4ed8;
  background: transparent;
}
.link-icon--globe svg { width: 22px; height: 22px; }
.desktop-links .link-icon:hover { background: #eef2ff; }
.lang-dropdown { position: relative; }
.lang-trigger { display: inline-flex; align-items: center; gap: 8px; border: 0; background: transparent; color: #1d4ed8; font-weight: 600; font-family: "Playfair Display", Georgia, serif; cursor: pointer; }
.lang-menu { position: absolute; top: 36px; right: 0; background: #ffffff; border: 1px solid #e5e7eb; border-radius: 8px; box-shadow: 0 8px 20px rgba(0,0,0,0.08); padding: 8px; z-index: 1201; }
.lang-menu[hidden] { display: none; }
.lang-menu button { background: transparent; border: 0; padding: 8px 12px; cursor: pointer; font-weight: 700; color: #1d4ed8; border-radius: 6px; display: block; width: 100%; text-align: left; }
.lang-menu button:hover { background: #eef2ff; color: #ef4444; }

/* Desktop language switcher */
.desktop-lang select {
  padding: 6px 22px 6px 8px;
  border: 0;
  background: transparent;
  color: #1d4ed8;
  font-weight: 700;
  font-size: 0.95rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
}
.desktop-lang select:hover { text-decoration: underline; }
.desktop-lang select:focus { outline: none; text-decoration: underline; box-shadow: none; }

/* Hide desktop-only language switcher on mobile */
@media (max-width: 768px) {
  .desktop-lang { display: none !important; }
}



/* Premium Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:active {
  transform: translateY(2px) scale(0.98);
}

.btn-primary {
  background: var(--brand);
  color: #ffffff;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,255,255,0.3);
}

.btn-secondary {
  background: #ffffff;
  color: var(--text);
  border-color: #d1d5db;
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: #f9fafb;
  color: var(--text);
  border-color: #cbd5e1;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: #d1d5db;
  position: relative;
}

.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.btn-ghost:hover::after {
  width: 100%;
}

.btn-ghost:hover {
  background: #f9fafb;
  border-color: #cbd5e1;
  color: var(--text);
  transform: translateY(-2px);
}

/* Premium Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59,130,246,0.1) 0%, rgba(239,68,68,0.1) 100%);
  z-index: 1;
}

.hero img, .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.00) 0%,
    rgba(0,0,0,0.00) 60%,
    rgba(0,0,0,0.10) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 20vh 0 15vh;
  text-align: center;
}

/* (removed hero carousel styles) */

.hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(59,130,246,0.3);
  animation: fadeInUp 1s ease-out;
}

.hero p {
  margin: 0 0 2rem;
  color: var(--text);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(255,255,255,0.8);
  animation: fadeInUp 1s ease-out 0.2s both;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: inline-flex;
  gap: 1rem;
  animation: fadeInUp 1s ease-out 0.4s both;
}

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

/* Hero Text Section Below Video */
.hero-text-section {
  background: var(--bg);
  padding: 60px 0;
  text-align: center;
}

.hero-text-section .hero-line {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin: 0 0 20px 0;
  color: var(--text);
  font-weight: 600;
  line-height: 1.3;
}

.hero-text-section .hero-line:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
}

/* Premium Section Design */
.section {
  padding: 80px 0;
  position: relative;
}

/* About section text centering */
#about .about-card { max-width: 900px; margin: 0 auto; }
#about .about-lead { text-align: center; }

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.section-accent {
  background: var(--gradient-accent);
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  background-image: var(--border-gradient);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

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

.section-header::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.section-header h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 0 0 1rem;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Blue headings for Local Attractions and Location sections */
#gallery .section-header h2,
#location .section-header h2,
#about .section-header h2,
#rooms .section-header h2 {
  color: var(--brand);
  text-shadow: 0 4px 20px rgba(29, 78, 216, 0.2);
}

.section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 1.2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Premium Card System */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: var(--gradient-card);
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: rgba(59,130,246,0.3);
}

.card img {
  height: 250px;
  width: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.card:hover img {
  transform: scale(1.1);
}

.card-body {
  padding: 24px;
  position: relative;
}

.card-body h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-body p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6;
}

.text-link {
  color: var(--brand-2);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}

.text-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.text-link:hover::after {
  width: 100%;
}

.text-link:hover {
  color: var(--brand);
  transform: translateX(5px);
}

/* Premium Split Section Design */
.section-split .split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.split-media {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split-media::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.split-media:hover::before {
  opacity: 0.1;
}

.split-media img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--border-radius);
  transition: all 0.4s ease;
}

.split-media:hover img {
  transform: scale(1.05);
}

.split-content h2 { 
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 1rem;
  text-shadow: 0 4px 20px rgba(59,130,246,0.2);
}

.split-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.feature-list {
  display: grid;
  gap: 12px;
  padding-left: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 2rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.3s ease;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: bold;
  box-shadow: var(--shadow-sm);
}

.feature-list li:hover {
  transform: translateX(5px);
  color: var(--brand);
}

/* Premium Amenities Grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.amenity {
  background: var(--gradient-card);
  border: 2px solid transparent;
  padding: 20px 16px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.amenity::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.amenity:hover::before {
  transform: scaleX(1);
}

.amenity:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(59,130,246,0.3);
}

.amenity-icon {
  font-size: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
}

/* Premium Gallery Design */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  padding: 20px 0;
  min-height: 600px;
}

/* Center-mode Attractions Carousel */
.attractions-carousel {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px; /* space for overlaid arrows */
}

.attractions-viewport {
  overflow: hidden;
  position: relative;
}

.attractions-track {
  display: flex;
  align-items: center;
  gap: 24px;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  padding: 10px 0;
}

.attraction-slide {
  position: relative;
  flex: 0 0 70%;
  max-width: 70%;
  border-radius: var(--border-radius);
  overflow: visible;
  transition: box-shadow 300ms ease;
}

.attraction-imgwrap {
  position: relative;
  height: 420px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.attraction-imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Faded side slides via overlay (only over the image) */
.attraction-imgwrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.7);
  transition: opacity 300ms ease;
  pointer-events: none;
}

.attraction-slide.is-center .attraction-imgwrap::after {
  opacity: 0;
}

/* View More button centered at bottom of main image */
.view-more-wrap {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 2;
  display: none; /* only on center */
}

.attraction-slide.is-center .view-more-wrap { display: block; }

/* Caption below image */
.attraction-caption {
  margin-top: 10px;
  background: var(--gradient-card);
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border);
  padding: 12px 16px;
  text-align: center;
  color: var(--text);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

/* Navigation arrows over faded side images */
.attractions-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--brand);
  backdrop-filter: blur(6px);
  cursor: pointer;
  z-index: 3;
  box-shadow: var(--shadow-md);
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.attractions-nav:hover {
  background: #2563eb;
  transform: translateY(-50%) scale(1.08);
  box-shadow: var(--shadow-lg);
}

.attractions-prev { left: 10px; }
.attractions-next { right: 10px; }

.attractions-nav svg {
  width: 22px;
  height: 22px;
  stroke: #ffffff;
  stroke-width: 2.5;
  fill: none;
}

/* Small thumbnails feel on narrower screens */
@media (max-width: 1024px) {
  .attraction-slide { flex-basis: 80%; max-width: 80%; }
  .attraction-imgwrap { height: 360px; }
}

@media (max-width: 768px) {
  /* Full-bleed Local Attractions on mobile */
  .attractions-carousel { 
    padding: 0; 
    width: 100vw; 
    max-width: 100vw; 
    margin-left: 50%; 
    transform: translateX(-50%);
  }
  .attraction-slide { flex-basis: 100%; max-width: 100%; }
  .attraction-imgwrap { height: 300px; }
  .attractions-nav { width: 44px; height: 44px; }
}

@media (max-width: 480px) {
  .attractions-carousel { padding: 0; }
  .attraction-slide { flex-basis: 100%; max-width: 100%; }
}

/* Rooms Carousel for Mobile */
.rooms-carousel {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
  display: none; /* Hidden by default, shown on mobile via JS */
}

.rooms-viewport {
  overflow: hidden;
  position: relative;
}

.rooms-track {
  display: flex;
  align-items: center;
  gap: 24px;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  padding: 10px 0;
}

.room-slide {
  position: relative;
  flex: 0 0 70%;
  max-width: 70%;
  border-radius: var(--border-radius);
  overflow: visible;
  transition: box-shadow 300ms ease;
}

.room-imgwrap {
  position: relative;
  height: 420px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.room-imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Faded side slides via overlay */
.room-imgwrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.7);
  transition: opacity 300ms ease;
  pointer-events: none;
}

.room-slide.is-center .room-imgwrap::after {
  opacity: 0;
}

/* View Details button centered at bottom of main image */
.room-view-more-wrap {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 2;
  display: none; /* only on center */
}

.room-slide.is-center .room-view-more-wrap { display: block; }

/* Room info below image */
.room-info {
  margin-top: 10px;
  background: var(--gradient-card);
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border);
  padding: 12px 16px;
  text-align: center;
  color: var(--text);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.room-info h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.room-info p {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.95rem;
}

.room-info .text-link {
  color: var(--brand-2);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Navigation arrows */
.rooms-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--brand);
  backdrop-filter: blur(6px);
  cursor: pointer;
  z-index: 3;
  box-shadow: var(--shadow-md);
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.rooms-nav:hover {
  background: #2563eb;
  transform: translateY(-50%) scale(1.08);
  box-shadow: var(--shadow-lg);
}

.rooms-prev { left: 16px; }
.rooms-next { right: 16px; }

.rooms-nav svg {
  width: 22px;
  height: 22px;
  stroke: #ffffff;
  stroke-width: 2.5;
  fill: none;
}

/* Mobile responsive adjustments */
@media (max-width: 1024px) {
  .room-slide { flex-basis: 90%; max-width: 90%; }
  .room-imgwrap { height: 360px; }
}

@media (max-width: 768px) {
  /* Full-bleed Rooms carousel on mobile */
  .rooms-carousel { 
    padding: 0; 
    width: 100vw; 
    max-width: 100vw; 
    margin-left: 50%; 
    transform: translateX(-50%);
  }
  .room-slide { flex-basis: 100%; max-width: 100%; }
  .room-imgwrap { height: 300px; }
  .rooms-nav { width: 44px; height: 44px; }
}

@media (max-width: 480px) {
  .rooms-carousel { padding: 0; }
  .room-slide { flex-basis: 100%; max-width: 100%; }
  .room-imgwrap { height: 280px; }
  .rooms-nav { width: 40px; height: 40px; }
  .rooms-nav svg { width: 20px; height: 20px; }
}

/* Hide Book Now button on mobile */
@media (max-width: 768px) {
  .book-now-desktop {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .attraction-imgwrap { height: 240px; }
  .attractions-nav { width: 40px; height: 40px; }
}

.gallery-item {
  background: var(--gradient-card);
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  min-height: 380px;
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.gallery-item:hover::before {
  transform: scaleX(1);
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: rgba(59,130,246,0.3);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: all 0.4s ease;
}

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

.gallery-caption {
  padding: 20px;
  font-size: 1rem;
  color: var(--text);
  font-weight: 600;
  background: var(--gradient-card);
  text-align: center;
}

/* Premium Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: grid;
  place-items: center;
  z-index: 2000;
  backdrop-filter: blur(10px);
}

.lightbox[hidden] { display: none; }

.lightbox-image {
  max-width: min(95vw, 1200px);
  max-height: 90vh;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-gradient);
  border: 3px solid rgba(255,255,255,0.1);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  border: none;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.lightbox-close:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: var(--shadow-lg);
}

/* Premium Map Embed */
.map-embed {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid transparent;
  background-image: var(--border-gradient);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.map-embed iframe {
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: var(--border-radius);
}

/* Premium Booking Form */
.booking-form {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  background-image: var(--border-gradient);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  position: relative;
  overflow: hidden;
}

.booking-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field.full { 
  grid-column: 1 / -1; 
}

label { 
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

input, select, textarea {
  background: #ffffff;
  color: var(--text);
  border: 2px solid var(--border);
  border-radius: var(--border-radius-sm);
  padding: 14px 16px;
  min-height: 50px;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--brand-2);
  box-shadow: var(--shadow-red);
  transform: translateY(-2px);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.form-status { 
  color: var(--muted);
  font-weight: 500;
  padding: 12px 20px;
  border-radius: var(--border-radius-sm);
  background: var(--accent);
  border-left: 4px solid var(--brand);
}

.form-status.success { 
  color: #059669;
  background: #f0fdf4;
  border-left-color: #059669;
}

.form-status.error { 
  color: var(--brand-2);
  background: var(--accent-red);
  border-left-color: var(--brand-2);
}

/* Premium Footer */
.site-footer { 
  border-top: 2px solid transparent;
  padding: 60px 0 40px;
  background: var(--bg-elev);
  position: relative;
  box-shadow: var(--shadow-md);
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.footer-top { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: 20px; 
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-brand .tagline { 
  margin: 8px 0 0;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 500;
}

.footer-brand h3 {
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.social-icons { 
  list-style: none; 
  display: flex; 
  gap: 15px; 
  margin: 0; 
  padding: 0; 
}

.social-icons a { 
  display: inline-grid; 
  place-items: center; 
  width: 45px; 
  height: 45px; 
  border-radius: 50%; 
  border: 2px solid var(--brand); 
  background: var(--gradient-card); 
  color: var(--brand);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.social-icons a:hover { 
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  transform: translateY(-4px) scale(1.1);
  box-shadow: var(--shadow-md);
}

.footer-columns { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 40px; 
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px solid var(--border);
}

.footer-col h4 {
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 20px 0;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-col .footer-list { 
  list-style: none; 
  padding: 0;
  margin: 0; 
}

.footer-col .footer-list li {
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.footer-col .footer-list a {
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 1rem;
}

.footer-col .footer-list a:hover {
  color: var(--brand-2);
  transform: translateX(5px);
}

.footer-bottom { 
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--text);
  font-weight: 500;
}

/* Premium Reveal Animations */
.reveal { 
  opacity: 0; 
  transform: translateY(30px); 
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed { 
  opacity: 1; 
  transform: translateY(0); 
}

/* Premium Carousel */
.carousel { 
  position: relative; 
  width: 100%;
  height: 450px; 
  overflow: hidden; 
  border-radius: var(--border-radius); 
  border: 2px solid transparent;
  background-image: var(--border-gradient);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: var(--shadow-lg);
}

.carousel-track { 
  display: flex; 
  width: 100%; 
  height: 100%; 
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide { 
  min-width: 100%; 
  height: 100%; 
}

.carousel-slide img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block;
  transition: all 0.4s ease;
}

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

.carousel-dots { 
  position: absolute; 
  left: 0; 
  right: 0; 
  bottom: 20px; 
  display: flex; 
  justify-content: center; 
  gap: 10px; 
}

.carousel-dot { 
  width: 12px; 
  height: 12px; 
  border-radius: 50%; 
  background: rgba(255,255,255,0.5); 
  border: 2px solid rgba(255,255,255,0.8); 
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active { 
  background: var(--gradient-primary);
  border-color: white;
  transform: scale(1.2);
  box-shadow: var(--shadow-sm);
}

.carousel-empty { 
  position: absolute; 
  inset: 0; 
  display: grid; 
  place-items: center; 
  color: var(--muted); 
  font-weight: 500; 
  padding: 20px; 
  text-align: center;
  background: var(--gradient-card);
}

/* Premium Room Page Styles */
.back-link {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 10;
  color: white;
  text-decoration: none;
  background: rgba(0,0,0,0.6);
  padding: 12px 20px;
  border-radius: var(--border-radius-sm);
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  border: 2px solid rgba(255,255,255,0.2);
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

.back-link:hover { 
  background: rgba(0,0,0,0.8);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,255,255,0.4);
}

.room-hero {
  position: relative;
  height: 90vh;
  display: grid;
  margin: 40px 20px 20px 20px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.room-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.room-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(0,0,0,0.4) 0%, 
    rgba(0,0,0,0.2) 50%,
    rgba(0,0,0,0.1) 100%);
}

.room-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  text-align: center;
  color: white;
}

.room-hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  margin: 0 0 1rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff, #f3f4f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.room-hero p {
  font-size: 1.4rem;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  font-weight: 500;
}

.room-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  margin-top: 10px;
}

/* Room Image Gallery */
.room-gallery {
  max-width: 900px;
  margin: 0 auto 40px auto;
  padding: 0 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  max-width: 120px;
  max-height: 120px;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

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

.room-description,
.pricing-section,
.amenities-section {
  background: var(--gradient-card);
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-md);
  background-image: var(--border-gradient);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  position: relative;
  overflow: hidden;
}

/* Mobile-friendly room sections */
@media (max-width: 768px) {
  .room-description,
  .pricing-section,
  .amenities-section {
    padding: 30px 24px;
    margin-bottom: 30px;
    border-radius: 16px;
  }
}

.room-description::before,
.pricing-section::before,
.amenities-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

/* Remove background for room descriptions as requested */
.room-description {
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
}
.room-description::before { display: none !important; }

.room-description h2,
.pricing-section h2,
.amenities-section h2 {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Playfair Display", Georgia, serif;
  margin: 0 0 30px;
  font-size: 2.2rem;
  text-align: center;
  font-weight: 800;
  text-shadow: 0 4px 20px rgba(59,130,246,0.2);
}

.room-description p { 
  margin: 0; 
  line-height: 1.8; 
  color: var(--text); 
  font-size: 1.1rem;
  text-align: center;
}

/* Premium Pricing Table */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 30px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pricing-table th,
.pricing-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.pricing-table th {
  background: var(--gradient-primary);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-table td:last-child {
  font-weight: 700;
  color: var(--brand-2);
  text-align: right;
  font-size: 1.1rem;
}

.room-type { 
  font-weight: 700; 
  color: var(--text);
  font-size: 1.1rem;
}

/* Premium Amenities Grid for Room Pages */
.amenities-section .amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.amenities-section .amenity-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: var(--gradient-card);
  border-radius: var(--border-radius-sm);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.amenities-section .amenity-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.amenities-section .amenity-item:hover::before {
  transform: scaleX(1);
}

.amenities-section .amenity-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(59,130,246,0.3);
}

/* Touch-friendly mobile improvements */
@media (hover: none) and (pointer: coarse) {
  .amenities-section .amenity-item:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
  }
  
  .amenities-section .amenity-item:active {
    transform: scale(0.98);
    box-shadow: var(--shadow-sm);
  }
}

.amenities-section .amenity-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-block;
  background-color: #1d4ed8; /* solid brand circle */
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  /* Hide any text nodes (from previous emojis) */
  font-size: 0;
}

/* Render a white check SVG centered inside the blue circle */
.amenities-section .amenity-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60% 60%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%23FFFFFF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.book-now-section { 
  text-align: center;
  margin: 60px 0;
  position: relative;
}

.book-now-section::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.book-now-section .btn { 
  background: var(--gradient-primary);
  color: white;
  font-size: 1.2rem; 
  padding: 18px 36px;
  border-radius: var(--border-radius);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.book-now-section .btn:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  filter: brightness(1.1);
}

/* Premium Gallery Page Styles */
.gallery-page {
  font-family: Inter, Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 100vh;
}

.gallery-page h1 {
  text-align: center;
  padding: 40px 20px;
  color: var(--text);
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.gallery-page .gallery {
  column-count: 4;
  column-gap: 20px;
  padding: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-page .gallery img {
  width: 100%;
  margin-bottom: 20px;
  border-radius: var(--border-radius-sm);
  display: block;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  filter: grayscale(0.1);
}

.gallery-page .gallery img:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: var(--shadow-lg);
  filter: grayscale(0);
}

.gallery-page .header {
  background: var(--gradient-primary);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.gallery-page .header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.gallery-page .logo {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.gallery-page .logo img {
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.gallery-page .logo:hover img {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-lg);
}

.gallery-page .hotel-name {
  color: white;
  font-size: 3rem;
  font-weight: 800;
  font-family: "Playfair Display", Georgia, serif;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 1;
}

/* Premium Currency Toggle */
.currency-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 30px;
  padding: 8px;
  background: var(--gradient-card);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-sm);
}

.currency-option {
  padding: 12px 20px;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--text);
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.currency-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: left 0.3s ease;
  z-index: -1;
}

.currency-option.active::before {
  left: 0;
}

.currency-option.active {
  border-color: transparent;
  color: white;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.currency-option:hover:not(.active) {
  border-color: var(--brand);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* Premium Form Enhancements */
.form-consent {
  margin-top: 20px;
  padding: 20px;
  background: var(--accent);
  border-radius: var(--border-radius-sm);
  border-left: 4px solid var(--brand);
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.form-consent a {
  color: var(--brand-2);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.form-consent a:hover {
  color: var(--brand);
  text-decoration: underline;
}

/* Premium Utility Classes */
.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.3s ease;
}

.card-link:hover {
  text-decoration: none;
  color: inherit;
  transform: translateY(-2px);
}

.card-padding {
  padding: 24px;
}

.text-center-muted {
  text-align: center;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
}

.form-hint {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 4px;
  font-style: italic;
}

/* Premium Responsive Design */
@media (max-width: 1024px) {
  .card-grid { 
    grid-template-columns: repeat(2, minmax(300px, 1fr)); 
  }
  
  .amenities-grid { 
    grid-template-columns: repeat(3, minmax(200px, 1fr)); 
  }
  
  .section-split .split { 
    grid-template-columns: 1fr; 
    gap: 40px;
  }
  
  .split-media img { 
    height: 350px; 
  }
  
  .footer-grid { 
    grid-template-columns: 1fr 1fr; 
  }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  /* Mobile Hero */
  .hero {
    min-height: 70vh;
  }
  .lang-header { display: none; }
  
  .hero-content {
    padding: 15vh 0 10vh;
  }
  
  .hero h1 {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    line-height: 1.2;
  }
  
  .hero p {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
    margin-bottom: 1.5rem;
  }
  
  .hero-text-section {
    padding: 40px 0;
  }
  
  .hero-text-section .hero-line {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    margin-bottom: 15px;
  }
  
  .hero-text-section .hero-line:last-child {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
  }
  
  .hero-ctas {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .hero-ctas .btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 1.1rem;
  }
  
  /* Mobile Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 16px 0;
  }
  
  .gallery-item {
    min-height: 300px;
    border-radius: 16px;
  }
  
  .gallery-item img {
    height: 250px;
  }
  
  .gallery-caption {
    padding: 16px;
    font-size: 0.95rem;
  }
  
  /* Mobile Navigation */
  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding: 80px 24px 24px;
    overflow-y: auto;
  }
  
  .site-nav.open {
    transform: translateX(0);
  }
  
  .site-nav ul {
    flex-direction: column;
    gap: 0;
  }
  
  .site-nav li {
    border-bottom: 1px solid #e5e7eb;
  }
  
  .site-nav a {
    display: block;
    padding: 16px 0;
    font-size: 1.1rem;
    border-radius: 0;
  }
  
  .book-now {
    margin-top: 24px;
    width: 100%;
    text-align: center;
  }
  
  .nav-toggle {
    display: block;
  }
  
  /* Mobile Cards and Grids */
  .card-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .split {
    flex-direction: column;
    gap: 32px;
  }
  
  .split-media {
    order: -1;
  }
  
  .carousel {
    height: 250px;
  }
  
  /* Mobile Form */
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .form-field.full {
    grid-column: 1;
  }
  
  .booking-form {
    padding: 24px 16px;
  }
  
  .form-actions .btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
  }
  
  /* Mobile Room Pages */
  .room-hero {
    height: 400px;
    margin: 30px 16px 20px 16px;
    border-radius: 16px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 400px;
  }
  
  .gallery-item {
    max-width: 100px;
    max-height: 100px;
  }
  
  .room-gallery {
    padding: 0 16px;
    margin-bottom: 30px;
  }
  
  .room-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  
  .room-hero-content p {
    font-size: 1.1rem;
  }
  
  .room-content {
    padding: 24px 16px;
  }
  
  .room-description h2,
  .amenities-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .room-description p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .pricing-table {
    font-size: 0.9rem;
  }
  
  .pricing-table th,
  .pricing-table td {
    padding: 8px 4px;
  }
  
  .amenities-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .amenities-section .amenities-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .amenities-section .amenity-item {
    padding: 16px;
    gap: 12px;
  }
  
  .amenities-section .amenity-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }
  
  .amenities-section .amenity-item span {
    font-size: 0.95rem;
    line-height: 1.4;
  }
  
  .currency-toggle {
    flex-direction: column;
    gap: 12px;
  }
  
  .currency-option {
    width: 100%;
    text-align: center;
  }
  
  /* Mobile Footer */
  .footer-top {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  /* Mobile Typography */
  .headline-blue {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .section-header p {
    font-size: 1.1rem;
  }
  
  .card-body h3 {
    font-size: 1.3rem;
  }
  
  .card-body p {
    font-size: 1rem;
  }
  
  /* Mobile Spacing */
  .section {
    padding: 48px 0;
  }
  
  .container {
    width: 92%;
    padding: 0 16px;
  }
  
  .card {
    padding: 20px;
  }
  
  /* Mobile Buttons */
  .btn {
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
  }
  
  .book-now-section .btn {
    padding: 16px 24px;
    font-size: 1.1rem;
    width: 100%;
    max-width: 320px;
  }
  
  .book-now-section {
    margin: 40px 0;
  }
  
  /* Mobile Images */
  .room-hero img {
    object-fit: cover;
    height: 100%;
  }
  
  .carousel img {
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .container {
    width: 95%;
    padding: 0 8px;
  }
  
  .amenities-section .amenities-grid {
    gap: 12px;
  }
  
  .amenities-section .amenity-item {
    padding: 14px;
    gap: 10px;
  }
  
  .amenities-section .amenity-icon {
    width: 22px;
    height: 22px;
  }
  
  .amenities-section .amenity-item span {
    font-size: 0.9rem;
  }
  
  .room-content {
    padding: 20px 12px;
  }
  
  .room-hero {
    height: 350px;
    margin: 25px 12px 20px 12px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 300px;
  }
  
  .gallery-item {
    max-width: 80px;
    max-height: 80px;
  }
  
  .room-gallery {
    padding: 0 12px;
    margin-bottom: 25px;
  }
  
  .room-description,
  .amenities-section {
    padding: 24px 20px;
    margin-bottom: 30px;
  }
  
  .card {
    padding: 16px;
  }
  
  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 16px;
  }
  
  .gallery-grid {
    padding: 12px 0;
  }
  
  .gallery-item {
    min-height: 280px;
  }
  
  .gallery-item img {
    height: 220px;
  }
}

/* Premium Animation System */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

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

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

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

/* Premium Hover Effects */
.card:hover .card-body h3 {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Premium Loading States */
.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Premium Focus States */
.btn:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

/* Premium Selection */
::selection {
  background: var(--gradient-primary);
  color: white;
}

::-moz-selection {
  background: var(--gradient-primary);
  color: white;
}

/* Premium Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--accent);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 6px;
  border: 2px solid var(--accent);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-secondary);
} 

/* Rooms Carousel Navigation */
.rooms-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.room-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  z-index: 10;
  flex-shrink: 0;
}

.room-nav-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
  background: var(--gradient-secondary);
}

.room-nav-btn:active {
  transform: scale(0.95);
}

.room-nav-btn svg {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}

.room-nav-btn:hover svg {
  transform: scale(1.2);
}

.rooms-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  flex: 1;
  overflow: hidden;
}

/* Mobile Room Navigation */
@media (max-width: 768px) {
  .rooms-carousel-container {
    flex-direction: column;
    gap: 16px;
  }
  
  .room-nav-btn {
    width: 60px;
    height: 60px;
    position: relative;
    z-index: 20;
  }
  
  .room-nav-btn svg {
    width: 24px;
    height: 24px;
  }
  
  .rooms-carousel {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    order: -1;
  }
  
  .room-nav-btn.room-nav-prev {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
  }
  
  .room-nav-btn.room-nav-next {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
  }
  
  .rooms-carousel-container {
    position: relative;
    padding: 0 80px;
  }
}

@media (max-width: 480px) {
  .room-nav-btn {
    width: 50px;
    height: 50px;
  }
  
  .room-nav-btn svg {
    width: 20px;
    height: 20px;
  }
  
  .rooms-carousel-container {
    padding: 0 60px;
  }
  
  .room-nav-btn.room-nav-prev {
    left: 10px;
  }
  
  .room-nav-btn.room-nav-next {
    right: 10px;
  }
}

/* Event Form Styles */
.event-form {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  background-image: var(--border-gradient);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
  margin: 0;
}

.event-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.form-section {
  margin-bottom: 40px;
  padding: 30px;
  background: var(--gradient-card);
  border-radius: var(--border-radius-sm);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.form-section:hover::before {
  transform: scaleX(1);
}

.form-section h2 {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 25px;
  text-align: center;
  text-shadow: 0 2px 10px rgba(59,130,246,0.2);
}

.event-form .form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 25px;
}

.event-form .form-field {
  display: grid;
  gap: 10px;
}

.event-form .form-field.full { 
  grid-column: 1 / -1; 
}

.event-form label { 
  font-weight: 600;
  color: var(--text);
  font-size: 1rem;
}

.event-form input, 
.event-form select, 
.event-form textarea {
  background: #ffffff;
  color: var(--text);
  border: 2px solid var(--border);
  border-radius: var(--border-radius-sm);
  padding: 16px 18px;
  min-height: 55px;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  width: 100%;
}

.event-form input:focus, 
.event-form select:focus, 
.event-form textarea:focus {
  outline: none;
  border-color: var(--brand-2);
  box-shadow: var(--shadow-red);
  transform: translateY(-2px);
}

.event-form .form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  justify-content: center;
}

.event-form .form-status { 
  color: var(--muted);
  font-weight: 500;
  padding: 12px 20px;
  border-radius: var(--border-radius-sm);
  background: var(--accent);
  border-left: 4px solid var(--brand);
}

.event-form .form-status.success { 
  color: #059669;
  background: #f0fdf4;
  border-left-color: #059669;
}

.event-form .form-status.error { 
  color: var(--brand-2);
  background: var(--accent-red);
  border-left-color: var(--brand-2);
}

/* Mobile Event Form */
@media (max-width: 768px) {
  .event-form {
    padding: 24px 16px;
    margin: 0;
  }
  
  .form-section {
    padding: 20px;
    margin-bottom: 30px;
  }
  
  .form-section h2 {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
  
  .event-form .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .event-form .form-field.full {
    grid-column: 1;
  }
  
  .event-form .form-actions {
    flex-direction: column;
    gap: 16px;
  }
  
  .event-form .form-actions .btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .event-form {
    padding: 20px 12px;
    margin: 0;
  }
  
  .form-section {
    padding: 16px;
    margin-bottom: 24px;
  }
  
  .form-section h2 {
    font-size: 1.2rem;
    margin-bottom: 18px;
  }
  
  .event-form input,
  .event-form select,
  .event-form textarea {
    font-size: 16px;
    padding: 14px 16px;
  }
} 

/* Mobile Horizontal Scrolling Styles */
.mobile-scroll-container {
  position: relative;
  width: 100%;
}

.scroll-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--brand);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
  opacity: 0.9;
  backdrop-filter: blur(10px);
}

.scroll-nav:hover {
  background: #2563eb;
  transform: translateY(-50%) scale(1.1);
  opacity: 1;
  box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
}

.scroll-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.scroll-prev {
  left: 10px;
}

.scroll-next {
  right: 10px;
}

.scroll-nav svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 3;
  fill: none;
  transition: transform 0.2s ease;
}

.scroll-nav:hover svg {
  transform: scale(1.1);
}

/* Desktop: Hide scroll navigation */
@media (min-width: 769px) {
  .mobile-scroll-container {
    position: static;
  }
  
  .scroll-nav {
    display: none;
  }
  
  .mobile-scroll {
    display: grid;
  }
} 

/* Mobile horizontal scroll for Rooms */
@media (max-width: 768px) {
  .card-grid {
    display: flex;                   /* switch grid → flex */
    overflow-x: auto;                /* allow horizontal scroll */
    scroll-snap-type: x mandatory;   /* snap scrolling */
    gap: 16px;
    -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
  }

  .card-grid .card {
    flex: 0 0 85%;                   /* each card takes ~85% of screen width */
    scroll-snap-align: start;        /* snap alignment */
  }
}

/* Mobile horizontal scroll for Gallery */
@media (max-width: 768px) {
  .gallery-grid {
    display: flex;                   /* switch grid → flex */
    overflow-x: auto;                /* allow horizontal scroll */
    scroll-snap-type: x mandatory;   /* snap scrolling */
    gap: 16px;
    -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
  }

  .gallery-grid .gallery-item {
    flex: 0 0 85%;                   /* each item takes ~85% of screen width */
    scroll-snap-align: start;        /* snap alignment */
  }
} 

/* ===== Blue-only overrides (non-breaking) ===== */
:root {
  --header-height: 110px;
  --text: #111827;
  --brand: #1d4ed8; /* royal blue */
  --brand-2: #1d4ed8; /* use blue only */
  --accent: #f8f5ec;
  --accent-red: #eef3ff; /* light blue */
  --danger: #1e3a8a; /* dark blue */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 8px 32px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 20px 60px rgba(15, 23, 42, 0.18);
  --shadow-gradient: 0 20px 60px rgba(29, 78, 216, 0.25);
  --gradient-primary: linear-gradient(135deg, #0b1a4a 0%, #1d4ed8 50%, #2563eb 100%);
  --gradient-secondary: linear-gradient(135deg, #1e40af 0%, #1d4ed8 50%, #60a5fa 100%);
  --gradient-accent: linear-gradient(135deg, #faf7f2 0%, #f0f6ff 100%);
  --gradient-card: linear-gradient(135deg, #ffffff 0%, #f7f9fe 100%);
  --border-gradient: linear-gradient(135deg, #1d4ed8, #2563eb);
}

/* Transparent header over hero, solid on scroll */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.site-header.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.08); }

/* Light chroma before scroll for contrast over hero */
/* Force dark text on white header */
.site-header .site-nav a { color: var(--text); }

/* Hero overlay a touch deeper for readability */
.hero::before { background: linear-gradient(135deg, rgba(11,26,74,0.28) 0%, rgba(37,99,235,0.14) 100%); }
.section-header h2 { text-shadow: 0 4px 20px rgba(15,23,42,0.12); }
.split-content h2 { text-shadow: 0 4px 20px rgba(15,23,42,0.12); }

/* Floating Booking Form */
.floating-booking {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1200;
  width: 95%;
  max-width: 1000px;
  transition: all 0.4s ease;
}

.floating-booking.scrolled {
  bottom: 0;
  width: 100%;
  max-width: none;
  left: 0;
  transform: none;
}

.floating-booking-form {
  background: rgba(255,255,255,0.9);
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  border: none;
  transition: all 0.2s ease;
}

.floating-booking.scrolled .floating-booking-form {
  padding: 12px;
  border-radius: 0;
  box-shadow: 0 25px 80px rgba(29, 78, 216, 0.4);
}

.floating-form-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr 1.3fr;
  gap: 0;
  align-items: stretch;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}

.floating-booking.scrolled .floating-form-row {
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
}

.floating-form-field {
  display: grid;
  gap: 4px;
}

.floating-form-field label {
  color: #374151;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px 14px 4px;
}

.floating-form-field input,
.floating-form-field select {
  background: #ffffff;
  border: none;
  border-right: 2px solid #e5e7eb;
  border-radius: 0;
  padding: 10px 14px 12px 38px;
  color: #111827;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  appearance: none;
}
.floating-form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.floating-form-field input[type="date"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 12px center;
}

.floating-form-field input:focus,
.floating-form-field select:focus {
  outline: none;
  background: #ffffff;
  box-shadow: inset 0 -2px 0 #1d4ed8;
}

.floating-form-field input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.floating-form-field select option {
  background: #ffffff;
  color: #111827;
}

.btn-white {
  background: #ffffff;
  color: var(--brand);
  border: none;
  border-radius: 6px;
  padding: 6px 16px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-white:hover {
  background: #f8fafc;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .floating-booking {
    width: 100%;
    bottom: 0;
    left: 0;
    transform: none;
  }
  
  .floating-booking.scrolled {
    bottom: 0;
    width: 100%;
    max-width: none;
    left: 0;
    transform: none;
  }
  
  .floating-booking-form {
    padding: 16px;
    border-radius: 0;
  }
  
  .floating-form-row {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
  }
  
  .floating-form-field {
    text-align: center;
  }
  
  .floating-form-field label {
    display: none;
  }
  
  .floating-form-field input,
  .floating-form-field select {
    display: none;
  }
  
  .floating-form-field:first-child .btn-white {
    background: var(--brand);
    color: white;
  }
  
  .floating-form-field:nth-child(2) .btn-white {
    background: #0f172a;
    color: white;
  }
  
  .floating-form-field:nth-child(3) .btn-white {
    background: var(--brand);
    color: white;
  }
  
  .floating-form-field .btn-white {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.9rem;
  border-radius: 6px;
}

/* Mobile Action Buttons Container */
.mobile-action-buttons {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
}

/* Desktop: Hide mobile buttons */
@media (min-width: 769px) {
  .mobile-action-buttons {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
  }
  
  .mobile-btn {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
  
  /* Override any conflicting .btn-white rules for mobile buttons */
  .mobile-action-buttons .btn-white {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}

/* Mobile: Show mobile buttons */
@media (max-width: 768px) {
  .mobile-action-buttons {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    left: auto !important;
    top: auto !important;
  }
  
  .mobile-btn {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.9rem;
    border-radius: 6px;
  }
  
  .mobile-btn:nth-child(1) {
    background: var(--brand);
    color: white;
  }
  
  .mobile-btn:nth-child(2) {
    background: #0f172a;
    color: white;
  }
  
  .mobile-btn:nth-child(3) {
    background: var(--brand);
    color: white;
  }
  
  .floating-form-field:last-child .btn-white {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .floating-form-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .floating-booking-form {
    padding: 20px;
  }
}

/* Floating Book Now button */
.fab-book {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  text-decoration: none;
  background: var(--gradient-primary);
  color: #ffffff;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(255,255,255,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fab-book:hover { transform: translateY(-4px); box-shadow: 0 30px 70px rgba(0,0,0,0.2); }

/* (removed awards section styles) */

@media (max-width: 768px) {
  .fab-book { right: 16px; bottom: 16px; padding: 12px 16px; }
}

/* ===== Header & Drawer overrides for centered brand and left menu ===== */
.header-inner { 
  justify-content: flex-start; 
  align-items: center;
  position: relative; 
  min-height: 140px; 
  padding: 0 32px;
  max-width: 100%;
  width: 100%;
  gap: 12px;
}
.lang-header { display: none !important; }
.header-center { 
  display: flex; 
  flex-direction: row;
  align-items: center; 
  gap: 8px; 
  text-decoration: none; 
}
.header-center .logo-img { height: 56px; }
.header-center .logo-text { 
  font-size: clamp(1.6rem, 3.5vw, 2.4rem); 
  font-family: "UnifrakturMaguntia", "Gravitas One", "Cormorant Garamond", "Playfair Display", Georgia, serif !important; 
  font-weight: 400; 
  color: #1d4ed8; 
  letter-spacing: 0.03em; 
  line-height: 1.1; 
}

.nav-toggle {
  display: block !important;
  background: transparent;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 1103;
  margin-right: 0;
  order: 0;
}
.nav-toggle .icon { 
  display: block !important; 
  opacity: 1; 
  transition: opacity 0.25s ease, transform 0.25s ease; 
  width: 28px;
  height: 28px;
}

.nav-toggle .icon-menu {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  width: 28px !important;
  height: 28px !important;
}

.nav-toggle .icon-close {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  position: absolute !important; 
  top: 0 !important;
  left: 0 !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
  transform: scale(0) !important;
}
.nav-toggle[aria-expanded="true"] .icon-menu { 
  display: none !important; 
  opacity: 0 !important; 
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}
.nav-toggle[aria-expanded="true"] .icon-close { 
  display: block !important; 
  opacity: 1 !important; 
  visibility: visible !important;
  width: 28px !important;
  height: 28px !important;
  overflow: visible !important;
}

/* Left drawer navigation (all screen sizes) */

.site-nav { 
  position: fixed; 
  top: var(--header-height); 
  left: 0; 
  right: 0; 
  height: calc(100vh - var(--header-height)); 
  width: 100vw; 
  background: #ffffff; 
  transform: translateX(-100%); 
  transition: transform 0.35s ease; 
  padding: 32px; 
  overflow-y: auto; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.15); 
  display: grid; 
  grid-template-rows: auto auto 1fr auto; 
  gap: 16px; 
  z-index: 1000; 
}

/* Show hamburger menu content on all screen sizes */
.site-nav .nav-section,
.site-nav .nav-footer {
  display: block !important;
}

/* Show section titles on mobile */
.site-nav .nav-section h3 {
  display: block !important;
  margin: 0 0 8px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Override desktop navigation styles on mobile */
.site-nav .nav-links {
  display: block !important;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex-direction: column;
  gap: 0;
}
.site-nav.open { transform: translateX(0); }
.nav-open .site-header { transform: none; }
.nav-open main, .nav-open footer { filter: blur(2px); transition: filter 0.3s ease; }
.site-nav .nav-section h3 { margin: 0 0 8px; font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.site-nav .nav-links { list-style: none; margin: 0 0 24px; padding: 0; }
.site-nav .nav-links li { border-bottom: 1px solid #e5e7eb; }
.site-nav .nav-links a { display: block; padding: 16px 0; font-size: 1.05rem; color: var(--text); text-decoration: none; }
.site-nav .nav-footer { border-top: 1px solid #e5e7eb; padding-top: 20px; margin-top: auto; background: #f8fafc; border-radius: 12px; padding: 20px; margin-top: 24px; }
.site-nav .nav-footer .footer-brand { text-align: center; margin-bottom: 16px; }
.site-nav .nav-footer .footer-brand .logo { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.site-nav .nav-footer .footer-brand .logo .logo-img { height: 32px; }
.site-nav .nav-footer .footer-brand .logo .logo-text { font-size: 1.1rem; font-weight: 600; color: var(--brand); }
.site-nav .nav-footer .footer-brand .tagline { font-size: 0.9rem; color: var(--muted); margin: 0; }
.site-nav .nav-footer .footer-list { text-align: center; margin: 12px 0; }
.site-nav .nav-footer .footer-list a { font-weight: 500; color: var(--text); }
.site-nav .nav-footer .footer-list a:hover { color: var(--brand); }
.site-nav .nav-footer .footer-list { list-style: none; margin: 8px 0 0; padding: 0; }
.site-nav .nav-footer .footer-list li { margin-bottom: 8px; }
.site-nav .nav-footer .footer-list a { color: var(--text); text-decoration: none; }
.site-nav .nav-header { position: sticky; top: 0; background: #ffffff; padding-bottom: 12px; margin-bottom: 16px; border-bottom: 1px solid #e5e7eb; display: flex; align-items: center; justify-content: space-between; gap: 12px; z-index: 1; }
.site-nav .nav-header .logo { display: inline-flex; align-items: center; gap: 8px; }
.site-nav .nav-header .logo .logo-img { height: 28px; }
.site-nav .nav-header .logo .logo-text { font-weight: 700; }
.site-nav .nav-footer .social-icons { display: flex; gap: 16px; margin-top: 16px; justify-content: center; }
.site-nav .nav-footer .social-icons a { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--brand); background: #fff; color: var(--brand); display: inline-grid; place-items: center; transition: all 0.2s ease; }
.site-nav .nav-footer .social-icons a:hover { background: var(--brand); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(29, 78, 216, 0.3); }
.site-nav .nav-footer .social-icons svg { width: 20px; height: 20px; }
.site-nav .nav-footer .lang-switch { margin-top: 16px; text-align: center; }
.lang-switch.lang-header {
  order: -1;
  margin-right: 0;
  margin-left: 0;
}

.lang-switch select {
  padding: 0 18px 0 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23111827' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
}
.lang-switch select:hover { text-decoration: underline; }
.lang-switch select:focus { outline: none; text-decoration: underline; box-shadow: none; }
.lang-switch select option { padding: 12px 14px; line-height: 2; }

/* Minimal hero without background image */
.hero.hero-minimal { min-height: 40vh; }
.hero .hero-line { color: #1d4ed8; font-weight: 700; font-size: clamp(1.4rem, 3.5vw, 2rem); }
.hero.hero-minimal { min-height: 100vh; display: grid; place-items: center; }
.site-header .header-book { 
  position: relative; 
  padding: 14px 24px; 
  font-size: 1.1rem; 
  line-height: 1; 
  border-radius: 8px; 
  text-transform: none; 
  z-index: 1102; 
  margin-left: auto;
  margin-right: 16px;
  font-weight: 600;
  order: 2;
}
/* Header Book button: turn red on hover */
.site-header .header-book:hover {
  background: #ef4444 !important;
  color: #ffffff !important;
  border-color: transparent !important;
}

@media (max-width: 768px) {
  .lang-header { display: none; }
  .site-header .header-book { 
    display: none !important; 
  }
  
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  .logo-img {
    height: 60px;
    margin-bottom: 0.3rem;
  }
  
  .logo-text {
    font-size: 1.8rem;
    margin-top: 0.3rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .site-header .header-book { 
    display: none !important; 
  }
  
  .logo {
    gap: 0.4rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .logo-img {
    height: 55px;
    margin-bottom: 0.2rem;
  }
  
  .logo-text {
    font-size: 1.6rem;
    margin-top: 0.2rem;
  }
}

/* Coffee Monday banner */
.coffee-banner {
  position: relative;
  z-index: 1001;
}

.coffee-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  margin: 0 auto 16px;
  width: min(1100px, 96%);
  padding: 12px 16px;
  background: var(--gradient-card);
  border: 2px solid transparent;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  background-image: var(--border-gradient);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

/* Spotlight variant: floating card bottom-right (desktop) and bottom sheet (mobile) */
.coffee-spotlight {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1400;
  width: 420px;
  max-width: calc(100vw - 32px);
  pointer-events: none; /* allow clicks only on inner */
}

.coffee-spotlight .coffee-inner {
  pointer-events: auto;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  padding: 14px 16px;
  margin: 0;
  box-shadow: 0 30px 80px rgba(15,23,42,0.25);
  animation: coffeeSlideUp 500ms cubic-bezier(0.2, 0.8, 0.2, 1) both, coffeeGlow 4s ease-in-out infinite;
}

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

@keyframes coffeeGlow {
  0%, 100% { box-shadow: 0 30px 80px rgba(29,78,216,0.25); }
  50% { box-shadow: 0 40px 100px rgba(29,78,216,0.35); }
}

@media (max-width: 768px) {
  .coffee-spotlight {
    right: 0;
    left: 0;
    bottom: 0;
    width: 100vw;
    max-width: none;
  }
  .coffee-spotlight .coffee-inner {
    border-radius: 16px 16px 0 0;
    padding: 16px;
    grid-template-columns: auto 1fr auto;
    animation: coffeeSlideUp 400ms ease-out both;
  }
}

.coffee-image {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.coffee-content {
  display: grid;
  gap: 4px;
}

.coffee-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.coffee-text {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}

.coffee-actions .btn { padding: 10px 14px; }

.coffee-close {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: var(--gradient-primary);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  box-shadow: var(--shadow-sm);
}

.coffee-close:hover { transform: scale(1.05); box-shadow: var(--shadow-md); }

@media (max-width: 768px) {
  .coffee-inner {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding: 10px 12px;
    margin: 8px auto 12px;
  }
  .coffee-image { width: 56px; height: 56px; }
  .coffee-title { font-size: 1rem; }
  .coffee-text { font-size: 0.95rem; }
}

@media (max-width: 360px) {
  .site-header .header-book { 
    display: none !important; 
  }
  
  .logo {
    gap: 0.3rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .logo-img {
    height: 50px;
    margin-bottom: 0.2rem;
  }
  
  .logo-text {
    font-size: 1.4rem;
    margin-top: 0.2rem;
  }
}

@media (max-width: 768px) {
  .site-nav .nav-footer .social-icons { gap: 20px; }
  .site-nav .nav-footer .social-icons a { width: 48px; height: 48px; }
  .site-nav .nav-footer .social-icons svg { width: 22px; height: 22px; }
}
/* Notice variant: slim bar under header */
.coffee-notice {
  position: fixed;
  top: calc(var(--header-height) + 6px);
  left: 0;
  z-index: 1200;
  width: 100%;
}

.coffee-notice .coffee-inner {
  width: auto;
  margin: 0 0 0 16px;
  padding: 8px 12px;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  border-radius: 12px;
  display: inline-grid;
  box-shadow: var(--shadow-md);
}

.coffee-notice .coffee-image {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.coffee-notice .coffee-title { font-size: 0.95rem; font-weight: 700; }
.coffee-notice .coffee-text { font-size: 0.92rem; }
.coffee-notice .coffee-actions .btn { padding: 6px 10px; }

@media (max-width: 768px) {
  .coffee-notice { top: calc(var(--header-height) + 4px); left: 0; right: 0; }
  .coffee-notice .coffee-inner {
    margin-left: 12px;
    margin-right: 12px;
    padding: 8px 10px;
    gap: 8px;
  }
}
/* Left drop variant */
.coffee-drop-left .coffee-inner {
  margin-left: 16px;
  margin-right: auto;
  width: auto;
  min-width: 300px;
  max-width: min(540px, 92%);
  animation: dropIn 420ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

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

/* Fix footer logo movement on hover for all pages */
.site-footer .footer-brand .logo:hover {
  transform: none !important;
}
.site-footer .footer-brand .logo-img:hover {
  transform: none !important;
}
.site-footer .footer-brand .logo-text:hover {
  transform: none !important;
}

/* Mobile-style footer for all devices */
.site-footer {
  padding: 40px 0 30px !important;
  background: var(--bg-elev) !important;
}

.site-footer .footer-top {
  flex-direction: column !important;
  text-align: center !important;
  gap: 30px !important;
  margin-bottom: 30px !important;
  align-items: center !important;
  justify-content: center !important;
}

.site-footer .footer-brand {
  text-align: center !important;
  width: 100% !important;
}

.site-footer .footer-brand .logo {
  justify-content: center !important;
  margin-bottom: 15px !important;
  display: flex !important;
}

.site-footer .footer-brand .tagline {
  text-align: center !important;
  font-size: 1rem !important;
  margin: 8px 0 0 !important;
}

.site-footer .social-icons {
  justify-content: center !important;
  gap: 12px !important;
  display: flex !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.site-footer .social-icons a {
  width: 40px !important;
  height: 40px !important;
  display: inline-grid !important;
  place-items: center !important;
}

.site-footer .footer-columns {
  grid-template-columns: 1fr !important;
  gap: 30px !important;
  text-align: center !important;
  margin-top: 25px !important;
  padding-top: 25px !important;
  display: grid !important;
}

.site-footer .footer-col {
  text-align: center !important;
}

.site-footer .footer-col h3,
.site-footer .footer-col h4,
.site-footer .footer-heading {
  text-align: center !important;
  margin-bottom: 15px !important;
  color: var(--text) !important;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  margin: 0 0 20px 0 !important;
}

.site-footer .footer-col .footer-list {
  text-align: center !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.site-footer .footer-col .footer-list li {
  margin-bottom: 10px !important;
  text-align: center !important;
}

.site-footer .footer-col .footer-list a {
  text-align: center !important;
  color: var(--text) !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  font-size: 1rem !important;
}

.site-footer .footer-bottom {
  text-align: center !important;
  margin-top: 25px !important;
  padding-top: 20px !important;
  color: var(--text) !important;
  font-weight: 500 !important;
}

/* Hide footer logo and name on mobile */
@media (max-width: 768px) {
  .site-footer .footer-brand {
    display: none !important;
  }
}

/* Mobile-style hamburger menu footer */
.site-nav .nav-footer {
  text-align: center !important;
  padding: 20px 0 !important;
}

.site-nav .nav-footer .footer-list {
  text-align: center !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 20px 0 !important;
}

.site-nav .nav-footer .footer-list li {
  margin-bottom: 10px !important;
  text-align: center !important;
}

.site-nav .nav-footer .footer-list a {
  text-align: center !important;
  color: var(--text) !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  font-size: 1rem !important;
}

.site-nav .nav-footer .social-icons {
  justify-content: center !important;
  gap: 12px !important;
  display: flex !important;
  flex-direction: row !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.site-nav .nav-footer .social-icons a {
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  border: 2px solid var(--brand) !important;
  background: var(--gradient-card) !important;
  color: var(--brand) !important;
  transition: all 0.3s ease !important;
  box-shadow: var(--shadow-sm) !important;
}

.site-nav .nav-footer .social-icons a:hover {
  background: var(--gradient-primary) !important;
  color: white !important;
  border-color: transparent !important;
  transform: translateY(-4px) scale(1.1) !important;
  box-shadow: var(--shadow-md) !important;
}

/* Language switcher styling for mobile nav */
.site-nav .nav-section .lang-switch {
  text-align: center !important;
  margin-bottom: 20px !important;
}

.site-nav .nav-section .lang-switch select {
  padding: 8px 12px !important;
  border-radius: 8px !important;
  border: 2px solid var(--border) !important;
  background: var(--bg-elev) !important;
  color: var(--text) !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
}
}