/* Astoria Hotel 3-Star - Design System & Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

:root {
  --color-primary-red: #DA3C43;
  --color-primary-red-hover: #b82b31;
  --color-cream: #E8CDB7;
  --color-cream-light: #FAF7F2;
  --color-cream-dark: #d5b399;
  --color-slate: #5B6B6B;
  --color-dark: #1E2428;
  --color-light: #FFFFFF;
  --color-gray-100: #F7F9FA;
  --color-gray-200: #EBF0F2;
  --color-gray-300: #D1DBDE;
  
  --color-ev-green: #2E7D32;
  --color-fb-blue: #1877F2;
  --color-booking-blue: #0D3B66;
  
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 28px rgba(0, 0, 0, 0.08);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

html {
  background-color: #1F2828 !important;
}

html.is-scrolled {
  background-color: #1F2828 !important;
}

/* iOS Safari Notch & Safe Area Coverage */
@supports (padding-top: env(safe-area-inset-top)) {
  html {
    background-color: #1F2828 !important;
  }
}

body {
  background-color: #FFFFFF;
}

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

/* Google Material Symbols Helper */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  vertical-align: middle;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 80px;
}

section[id] {
  scroll-margin-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background-color: #FAFAFB;
  line-height: 1.6;
  overflow-x: hidden;
}

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}



/* Contact Header Bar */
.top-contact-header {
  background: var(--color-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: none;
}

.top-contact-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.header-info-group {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-info-item svg {
  color: var(--color-cream);
}

/* Language Switcher - Pure Text */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.lang-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 2px 4px;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
  letter-spacing: 0.5px;
}

.lang-btn:hover {
  color: #FFFFFF;
}

.lang-btn.active {
  color: #e8cdb7;
  font-weight: 600;
}

/* Main Sticky Navbar with Ultra-Smooth Morphing Transitions */
.sticky-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  margin-bottom: -80px;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: background-color 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              backdrop-filter 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              -webkit-backdrop-filter 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1) drop-shadow(0 3px 10px rgba(0, 0, 0, 0.6));
  transition: filter 0.45s cubic-bezier(0.16, 1, 0.3, 1), height 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform var(--transition-fast);
}

.brand-logo-img:hover {
  transform: scale(1.03);
}

.nav-link {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  position: relative;
  padding: 6px 0;
  transition: color 0.45s cubic-bezier(0.16, 1, 0.3, 1), text-shadow 0.45s ease;
}

.mobile-menu-toggle {
  background: transparent;
  border: none;
  color: #FFFFFF !important;
  font-size: 2.5rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 6px;
  margin-left: auto;
  filter: none;
  transition: color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-toggle .material-symbols-outlined {
  font-size: 32px;
}

/* Scrolled Animated Morph State (Silky smooth fade-in white background & dark elements) */
.sticky-navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-bottom: 2px solid #E8CDB7;
}

.sticky-navbar.is-scrolled .container {
  height: 68px;
}

.sticky-navbar.is-scrolled .brand-logo-img {
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1));
  height: 42px;
}

.sticky-navbar.is-scrolled .nav-link {
  color: #715642;
  text-shadow: none;
}

.sticky-navbar.is-scrolled .mobile-menu-toggle {
  color: var(--color-primary-red) !important;
}

.sticky-navbar.is-scrolled .lang-btn {
  color: #715642;
}

.sticky-navbar.is-scrolled .lang-btn.active {
  color: var(--color-primary-red);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--color-primary-red);
  transition: width var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: #e8cdb7;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.sticky-navbar.is-scrolled .nav-link:hover,
.sticky-navbar.is-scrolled .nav-link.active {
  color: var(--color-primary-red) !important;
}

.sticky-navbar.is-scrolled .nav-link::after {
  background-color: var(--color-primary-red);
}

.btn-book-header {
  display: none !important;
}

.mobile-drawer-link {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 600;
  color: #715642;
  text-decoration: none;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: var(--color-cream-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
  margin-bottom: 6px;
}

.mobile-drawer-link:hover {
  background: var(--color-primary-red);
  color: #FFF;
}

/* Floating Fixed Right Sidebar (Slide-out expanding buttons) */
.floating-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1070;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.dock-item {
  height: 54px;
  min-width: 54px;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 15px;
  color: #FFF;
  box-shadow: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
}

.dock-item .material-symbols-outlined,
.dock-item .dock-icon-text {
  font-size: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dock-icon-text {
  font-weight: 900;
  font-size: 1.4rem !important;
  line-height: 1;
  width: 24px;
  text-align: center;
}

.dock-item .dock-label {
  max-width: 0;
  opacity: 0;
  margin-left: 0;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: max-width 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, margin-left 0.35s ease;
  overflow: hidden;
  white-space: nowrap;
}

.dock-item:hover {
  box-shadow: none;
  padding-left: 20px;
}

.dock-item:hover .dock-label {
  max-width: 160px;
  opacity: 1;
  margin-left: 12px;
}

.dock-ev { background-color: var(--color-ev-green); }
.dock-wellness { background-color: #b9967b; color: #FFFFFF; }
.dock-phone { background-color: var(--color-primary-red); }
.dock-fb { background-color: var(--color-fb-blue); }

/* Booking.com signature branding typography */
.dock-booking {
  background-color: #003580; /* Booking.com Navy Blue */
}

.dock-booking .dock-icon-text {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.55rem !important;
  letter-spacing: -1px;
  line-height: 1;
}

.dock-booking .dock-label {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.4px;
}

/* Modal Drawer for Dock items */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.drawer-content {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 420px;
  max-width: 90vw;
  background: #FFF;
  z-index: 1051;
  box-shadow: -8px 0 32px rgba(0,0,0,0.2);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 30px 60px 30px 19px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

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

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

.drawer-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-dark);
}

.drawer-close {
  background: var(--color-primary-red);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #faf7f2;
  transition: background 0.2s, color 0.2s;
}

.drawer-close:hover {
  background: #faf7f2;
  color: var(--color-primary-red);
}

/* Mobile Full-Screen Navigation Drawer (Option 1: Slide & Scale Open Animation) */
#drawer-nav.mobile-nav-drawer {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  background: #1F2828;
  z-index: 1060;
  padding: 24px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow-y: auto;
  box-shadow: none;
  border: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px) scale(0.96);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-overlay.active #drawer-nav.mobile-nav-drawer.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.mobile-nav-header {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 10px;
}

.mobile-nav-close {
  background: transparent !important;
  border: none;
  color: #FFFFFF !important;
  font-size: 2rem;
  cursor: pointer;
  padding: 4px;
  width: auto;
  height: auto;
  border-radius: 0;
}

.mobile-nav-close:hover {
  background: transparent !important;
  color: var(--color-primary-red) !important;
  transform: scale(1.1);
}

.mobile-nav-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto 0;
  padding-bottom: 100px;
}

.mobile-logo-wrapper {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.mobile-nav-logo {
  height: 60px;
  width: auto;
  margin-bottom: 10px;
  display: block;
  filter: brightness(0) invert(1);
}

.mobile-logo-line {
  width: 100%;
  height: 2px;
  background-color: var(--color-primary-red);
  border-radius: 2px;
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
}

#drawer-nav .mobile-drawer-link {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFFFFF !important;
  background: transparent !important;
  padding: 4px 0;
  border-radius: 0;
  text-align: center;
  display: inline-block;
  position: relative;
  transition: color 0.25s ease;
  margin-bottom: 0;
}

#drawer-nav .mobile-drawer-link:hover,
#drawer-nav .mobile-drawer-link.active {
  color: #FFFFFF !important;
  background: transparent !important;
  transform: none;
}

#drawer-nav .mobile-drawer-link::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background-color: var(--color-primary-red);
  transition: width 0.25s ease;
}

#drawer-nav .mobile-drawer-link:hover::after,
#drawer-nav .mobile-drawer-link.active::after {
  width: 100%;
}

/* Hero Section (Image 2 design) */
.hero-section {
  position: relative;
  min-height: calc(100vh - 40px);
  min-height: calc(100dvh - 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-dark);
  overflow: hidden;
  padding-top: 40px;
}

.hero-slider-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.8s ease-in-out;
  z-index: 1;
}

/* Active incoming slide: Fades in & zooms down to 1.0 */
.hero-slider-bg.active {
  opacity: 1;
  z-index: 3;
  animation: heroKenBurns 7s ease-out forwards;
}

/* Exiting outgoing slide: Holds 1.0 scale while smoothly fading out */
.hero-slider-bg.exit {
  opacity: 0;
  transform: scale(1);
  z-index: 2;
  transition: opacity 1.8s ease-in-out;
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1.0);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.45) 100%);
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  text-align: center;
  color: #FFF;
  padding: 60px 24px 120px 24px;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-style: normal;
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-cream);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
  margin-bottom: 12px;
}

.hero-main-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-main-title span.highlight-red {
  color: #FFFFFF;
}

.hero-stars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-stars .material-symbols-outlined {
  font-size: 38px !important;
  color: #E8CDB7;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.7));
  font-variation-settings: 'FILL' 0;
}

.hero-description {
  font-size: 1rem;
  color: #FFFFFF;
  line-height: 1.8;
  margin-bottom: 36px;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75);
}

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

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 48px;
  min-width: 180px;
  padding: 0 32px;
  line-height: 1;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: none !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* Button 1: White */
.btn-hero-white {
  background-color: #FFFFFF;
  color: #1E2428;
}

.btn-hero-white:hover {
  background-color: #F7F9FA;
  color: var(--color-primary-red);
}

/* Button 2: Cream #E8CDB7 */
.btn-hero-cream {
  background-color: #E8CDB7;
  color: #1E2428;
}

.btn-hero-cream:hover {
  background-color: #dfbf9f;
  color: #1E2428;
}

/* Button 3: Red #DA3C43 */
.btn-hero-red {
  background-color: #DA3C43;
  color: #FFFFFF;
}

.btn-hero-red:hover {
  background-color: #c92f36;
  color: #FFFFFF;
}

/* Hero Scroll Down Mouse & Arrow Indicator */
.scroll-down-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #FFFFFF;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
  cursor: pointer;
}

.scroll-down-indicator:hover {
  opacity: 1;
  transform: translateX(-50%) translateY(3px);
}

.mouse-icon {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background-color: #FFFFFF;
  border-radius: 2px;
  display: block;
  margin: 0 auto;
  animation: scrollWheelBounce 1.8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.mobile-hand-icon {
  font-size: 28px;
  color: rgba(255, 255, 255, 0.9);
  animation: mobileHandSwipe 1.8s ease-in-out infinite;
}

.scroll-arrow {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.85);
  animation: scrollArrowPulse 1.8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes scrollWheelBounce {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.2;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes mobileHandSwipe {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.9;
  }
  50% {
    transform: translateY(6px) scale(0.95);
    opacity: 0.6;
  }
}

@keyframes scrollArrowPulse {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  50% {
    transform: translateY(5px);
    opacity: 1;
  }
}

/* Section Header Shared Component */
.section-tag {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-primary-red);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: var(--color-primary-red);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 2.5rem;
  color: #715642;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--color-slate);
  font-size: 1.05rem;
  max-width: 680px;
}

/* About Section (Image 3 design) */
.about-section {
  padding: 50px 0;
  background-color: #FFF;
}

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

.about-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-paragraph {
  color: var(--color-slate);
  font-size: 1rem;
  line-height: 1.8;
}

.about-quote-box {
  border-left: 3px solid var(--color-primary-red);
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-primary-red);
  background-color: rgba(218, 60, 67, 0.03);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Discounts & Promotions Box */
.promotions-box {
  background-color: var(--color-cream-light);
  border: 1px solid rgba(232, 205, 183, 0.5);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 8px;
}

.promotions-title {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-dark);
  margin-bottom: 14px;
}

.promotions-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.promotions-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--color-dark);
}

.promotions-item svg {
  color: var(--color-primary-red);
  flex-shrink: 0;
}

/* About Right Side Cards (Image 3 right column) */
.about-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-card {
  background: #FFF;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

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

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(218, 60, 67, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-red);
  margin-bottom: 16px;
}

.feature-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.feature-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.feature-card-desc {
  font-size: 0.88rem;
  color: var(--color-slate);
  line-height: 1.6;
}

/* Full Width Red Card (Programszervezés) */
.highlight-card-red {
  background-color: var(--color-primary-red);
  color: #FFF;
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 8px 24px rgba(218, 60, 67, 0.25);
}

.highlight-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-card-icon svg {
  width: 28px;
  height: 28px;
  color: #FFF;
}

.highlight-card-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.highlight-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
}

.highlight-card-desc {
  font-size: 0.9rem;
  opacity: 0.92;
  line-height: 1.5;
}

/* Daily Menu Section (Image 4 design) */
.menu-section {
  padding: 50px 0;
  background-color: #faf7f2;
}

.menu-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.menu-price-badges {
  display: flex;
  gap: 16px;
}

.price-badge-card {
  background: #FFF;
  border: none;
  border-radius: var(--radius-md);
  padding: 14px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.badge-tag-red {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-primary-red);
  margin-bottom: 0;
}

.badge-price-num {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-dark);
}

/* Responsive Display Helpers */
.desktop-only { display: block; }
.menu-tabs.desktop-only { display: flex; }
.menu-card-content.desktop-only { display: grid; }

.mobile-only { display: none !important; }

@media (max-width: 768px) {
  .desktop-only,
  .menu-tabs.desktop-only,
  .menu-card-content.desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }

  .menu-mobile-accordion.mobile-only {
    display: flex !important;
    flex-direction: column;
  }
}

/* Weekday Tabs Container (Image 4 exact design with equal distribution) */
.menu-tabs-container {
  background: #FFF;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--color-gray-200);
}

.menu-tabs {
  display: flex;
  width: 100%;
  background: #FFF;
}

.tab-btn {
  flex: 1;
  text-align: center;
  padding: 18px 16px;
  background: #faf7f2;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-slate);
  position: relative;
  transition: color var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-btn:hover {
  color: var(--color-primary-red);
}

.tab-btn.active {
  color: var(--color-primary-red) !important;
  background: #ffffff;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0%;
  right: 0%;
  height: 2px;
  background-color: var(--color-primary-red);
  border-radius: 2px;
}

.menu-card-content {
  padding: 40px 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

@media (max-width: 1024px) {
  .menu-card-content {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 32px;
  }
}

.menu-course-item {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.course-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-primary-red);
  user-select: none;
}

.course-label::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: var(--color-primary-red);
  flex-shrink: 0;
}

.course-name-wrapper {
  perspective: 600px;
  display: flex;
  align-items: center;
}

.course-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.35;
  transform-origin: center center;
}

/* Option 1: Premium Slide & Scale Animation (Beúszó & Emelkedő lágy effekt) */
.course-name.flip-animating {
  animation: slideScaleUp 0.38s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideScaleUp {
  0% {
    transform: translateY(16px) scale(0.96);
    opacity: 0;
  }
  60% {
    opacity: 0.85;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* Mobile Vertical Accordion (Matched from Mobile Screenshot) */
.menu-mobile-accordion {
  background: #FAF7F2;
  display: flex;
  flex-direction: column;
}

.accordion-item {
  border-bottom: 1px solid rgba(232, 205, 183, 0.4);
  background: #FAF7F2;
  transition: background 0.3s ease;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-dark);
  cursor: pointer;
  background: #FAF7F2;
  transition: all 0.3s ease;
  border-left: 5px solid transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.accordion-icon {
  font-size: 24px;
  color: var(--color-slate);
  transition: transform 0.3s ease, color 0.3s ease;
}

.accordion-item.active {
  background: #FFF;
}

.accordion-item.active .accordion-header {
  background: #FFF;
  color: var(--color-primary-red);
  border-left: 5px solid var(--color-primary-red);
  font-size: 1.55rem;
  font-weight: 700;
  padding-left: 24px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  color: var(--color-primary-red);
}

.accordion-body {
  display: none;
  background: #FFF;
  padding: 0 24px 24px 24px;
  border-left: 5px solid var(--color-primary-red);
  flex-direction: column;
  gap: 20px;
}

.accordion-item.active .accordion-body {
  display: flex;
}

/* Menu Bottom Info Bar (Simplified Clean Container & gynm.ro SVG badge) */
.menu-bottom-info {
  background-color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  padding: 20px 32px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  box-shadow: var(--shadow-sm);
}

.info-item-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.info-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #faf7f2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-red);
  flex-shrink: 0;
}

.info-text-box {
  display: flex;
  flex-direction: column;
}

.info-item-group a:hover .info-subtext {
  color: var(--color-primary-red) !important;
}

.info-title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-slate);
}

.info-subtext {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
}

/* gynm.ro SVG Badge Container */
.gynm-badge-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.gynm-badge-container:hover {
  transform: scale(1.08);
}

.gynm-svg-img {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Rooms & Booking Section */
.rooms-section {
  padding: 50px 0;
  background-color: #FFF;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.room-card {
  background: #FFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-gray-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.room-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.room-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.room-img-wrapper {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.room-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-medium), opacity var(--transition-fast);
}

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

.room-img-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(20, 25, 30, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity var(--transition-fast);
  z-index: 3;
  pointer-events: none;
}

.room-img-wrapper:hover .room-img-hover-overlay {
  opacity: 1;
}

.room-img-hover-overlay .material-symbols-outlined {
  font-size: 2rem;
}

.room-card-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: rgba(20, 25, 30, 0.7);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
  opacity: 0;
  transition: all var(--transition-fast);
}

.room-img-wrapper:hover .room-card-nav {
  opacity: 0.9;
}

.room-card-nav:hover {
  opacity: 1 !important;
  background: var(--color-primary-red);
}

.prev-card-img {
  left: 8px;
}

.next-card-img {
  right: 8px;
}

.room-type-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #da3c43;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 2;
}

.room-price-tag {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(20, 25, 30, 0.6);
  backdrop-filter: blur(4px);
  color: var(--color-cream);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  z-index: 2;
}

.room-price-tag span {
  color: #FFFFFF;
  font-size: 1.1rem;
}

/* Lightbox Modal */
.room-lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-medium);
}

.room-lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 14, 18, 0.92);
  backdrop-filter: blur(8px);
}

.lightbox-container {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  width: 92%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: transparent;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}

.lightbox-close:hover {
  transform: scale(1.15);
  color: var(--color-primary-red);
}

.lightbox-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FFFFFF;
  margin-bottom: 12px;
  padding: 0 4px;
}

.lightbox-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-cream);
}

.lightbox-counter {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.8;
}

.lightbox-stage {
  position: relative;
  width: 100%;
  height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-stage img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  transition: opacity var(--transition-fast);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(20, 25, 30, 0.7);
  border: 1px solid rgba(255,255,255,0.2);
  color: #FFFFFF;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 12;
}

.lightbox-nav:hover {
  background: var(--color-primary-red);
  border-color: var(--color-primary-red);
  transform: translateY(-50%) scale(1.08);
}

.lightbox-prev {
  left: 12px;
}

.lightbox-next {
  right: 12px;
}

.lightbox-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  overflow-x: auto;
  padding: 6px 4px 10px 4px;
  max-width: 100%;
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary-red) rgba(255, 255, 255, 0.1);
}

/* Modern Custom Scrollbar for Lightbox Thumbs */
.lightbox-thumbs::-webkit-scrollbar {
  height: 6px;
}

.lightbox-thumbs::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.lightbox-thumbs::-webkit-scrollbar-thumb {
  background: var(--color-primary-red);
  border-radius: 10px;
  transition: background 0.2s ease;
}

.lightbox-thumbs::-webkit-scrollbar-thumb:hover {
  background: #e8cdb7;
}

.lightbox-thumb {
  width: 60px;
  height: 44px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  transition: all var(--transition-fast);
}

.lightbox-thumb:hover, .lightbox-thumb.active {
  opacity: 1;
  border-color: var(--color-primary-red);
}

.room-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.room-desc {
  font-size: 0.88rem;
  color: var(--color-slate);
  margin-bottom: 16px;
}

.room-breakfast-note {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--color-slate);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.room-checkin-checkout {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-slate);
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.room-checkin-checkout .check-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.room-amenities {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.amenity-badge {
  background: #faf7f2;
  color: var(--color-slate);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.amenity-badge.badge-no-smoking {
  background: var(--color-primary-red);
  color: #FFFFFF;
}

.amenity-badge.badge-no-smoking .material-symbols-outlined {
  color: #FFFFFF;
}

.btn-select-room {
  margin-top: auto;
  background: transparent;
  border: 1px solid var(--color-primary-red);
  color: var(--color-primary-red);
  padding: 10px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  transition: all var(--transition-fast);
  text-align: center;
}

.btn-select-room:hover {
  background: var(--color-primary-red);
  color: #FFF;
}

/* Booking Form Wrapper */
.booking-form-box {
  background: var(--color-cream-light);
  border: 1px solid rgba(232, 205, 183, 0.7);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-top: 56px;
  box-shadow: var(--shadow-md);
}

.booking-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  align-items: end;
}

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

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-dark);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-gray-300);
  border-radius: var(--radius-sm);
  background: #FFF;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--color-dark);
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  border-color: var(--color-primary-red);
}

.btn-submit-booking {
  background-color: var(--color-primary-red);
  color: #FFF;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(218, 60, 67, 0.3);
  transition: all var(--transition-fast);
}

.btn-submit-booking:hover {
  background-color: var(--color-primary-red-hover);
}

/* Wellness Section */
.wellness-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #b18a6b 0%, #E2C0A5 100%);
  color: #FFF;
}

.wellness-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.wellness-content {
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.wellness-content .section-title {
  color: #FFF;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.wellness-badge-tag {
  background: rgb(255 255 255);
  color: #cf3444;
  border: 2px solid rgb(186 153 125);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 16px;
  text-shadow: none;
}

.wellness-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}

.wellness-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.wellness-feat-icon {
  color: var(--color-cream);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Wellness Section Interactive Image Slider */
.wellness-img-box.wellness-slider-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  height: 420px;
}

.wellness-slider-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.wellness-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.wellness-slide-img.active {
  opacity: 1;
}

.wellness-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  color: #FFF;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(4px);
}

.wellness-slider-btn:hover {
  background: var(--color-primary-red);
  transform: translateY(-50%) scale(1.1);
}

.wellness-slider-btn.prev-btn {
  left: 16px;
}

.wellness-slider-btn.next-btn {
  right: 16px;
}

.wellness-slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.wellness-slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.wellness-slider-dots .dot.active {
  background: var(--color-primary-red);
  width: 26px;
  border-radius: 10px;
}

/* Gallery Section */
.gallery-section {
  padding: 50px 0;
  background: #FFF;
}

.gallery-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 22px;
  background: #faf7f2;
  color: var(--color-slate);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--color-primary-red);
  color: #FFF;
}

.filter-btn[data-filter="horsecenter"] {
  background: #b9967b;
  color: #FFFFFF;
}

.filter-btn[data-filter="horsecenter"]:hover,
.filter-btn[data-filter="horsecenter"].active {
  background: var(--color-primary-red);
  color: #FFFFFF;
}

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

.gallery-item {
  aspect-ratio: 4 / 3;
  height: auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,25,30,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #FFF;
  font-size: 1.8rem;
}

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

/* Regional Attractions Section */
.attractions-section {
  padding: 50px 0;
  background: #faf7f2;
}

.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.attraction-card {
  background: #FFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-gray-200);
  box-shadow: var(--shadow-sm);
}

.attraction-img {
  height: 180px;
  object-fit: cover;
  width: 100%;
}

.attraction-body {
  padding: 20px;
}

.attraction-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.attraction-distance {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary-red);
  margin-bottom: 10px;
  display: inline-block;
}

.attraction-desc {
  font-size: 0.85rem;
  color: var(--color-slate);
  line-height: 1.5;
}

/* Contact Section & Footer (Image 5 design) */
.contact-section {
  padding: 50px 0 60px;
  background: #FFF;
}

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

.contact-info-card {
  background: #ffffff;
  border: 1px solid rgba(232, 205, 183, 0.6);
  border-radius: var(--radius-md);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.contact-detail-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #faf7f2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d5b399;
  flex-shrink: 0;
}

.contact-detail-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 0.95rem;
  color: var(--color-slate);
}

.contact-detail-value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-detail-value a:hover {
  color: var(--color-primary-red) !important;
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-gray-200);
  box-shadow: var(--shadow-sm);
  height: 100%;
  min-height: 380px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer Layout (Image 5 footer) */
.site-footer {
  background: #FAF3EC;
  border-top: 1px solid var(--color-cream);
  padding: 60px 0 24px;
  color: var(--color-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 48px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #715642;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background-color: var(--color-primary-red);
}

.footer-sublabel {
  color: #715642;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 2px;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-link-item a {
  font-size: 0.9rem;
  color: var(--color-slate);
}

.footer-link-item a:hover {
  color: var(--color-primary-red);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--color-slate);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-main-title { font-size: 2.5rem; }
  .about-grid, .wellness-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .feature-cards-grid { grid-template-columns: 1fr; }
  .menu-card-content.desktop-only { grid-template-columns: 1fr; padding: 24px; gap: 20px; }
  .sticky-navbar .nav-menu { display: none; }
  .sticky-navbar .container { position: relative; justify-content: space-between; }
  .lang-switcher { position: relative; z-index: 10; gap: 4px; }
  .lang-btn { font-size: 0.75rem; padding: 2px 4px; color: #FFFFFF !important; opacity: 1 !important; }
  .lang-btn.active { color: var(--color-primary-red) !important; font-weight: 700; }
  .sticky-navbar.is-scrolled .lang-btn { color: #715642 !important; }
  .sticky-navbar.is-scrolled .lang-btn.active { color: var(--color-primary-red) !important; }
  .brand-logo { position: absolute; left: 50%; transform: translateX(-50%); }
  .mobile-menu-toggle { display: flex; margin-left: auto; z-index: 10; }
  .menu-header-bar { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .hero-content { padding: 10px 70px 110px 70px; }
  .section-title { font-size: 2rem; }
  .hero-main-title { font-size: 2.35rem; letter-spacing: 2px; margin-bottom: 6px; }
  .hero-stars { gap: 8px; margin-bottom: 12px; }
  .hero-stars .material-symbols-outlined { font-size: 24px !important; }
  .hero-subtitle { font-size: 1.3rem; }
  .hero-description { font-size: 1rem; line-height: 1.6; }
  .about-left { gap: 10px; }
  .scroll-down-indicator { bottom: 50px; }

  /* Mobile Hero Slider Custom Image Focus Positions (Exact Red Rectangle Crop Matches) */
  .hero-slider-bg:nth-child(1) { background-position: center center; }
  .hero-slider-bg:nth-child(2) { background-position: 33% center; }
  .hero-slider-bg:nth-child(3) { background-position: 40% center; }
  .hero-slider-bg:nth-child(4) { background-position: 10% center; }
  .hero-slider-bg:nth-child(5) { background-position: 52% center; }
  .hero-slider-bg:nth-child(6) { background-position: 55% center; }
  .hero-slider-bg:nth-child(7) { background-position: 41% center; }
  .hero-slider-bg:nth-child(8) { background-position: 50% center; }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .btn-hero {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .menu-bottom-info {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 20px;
  }
  
  .info-item-group { width: 100%; }
  
  .gynm-badge-container {
    width: 100%;
    justify-content: center;
  }

  .gynm-svg-img {
    height: 80px;
    width: auto;
  }

  /* Mobile Layout for Feature Cards & Highlight Red Card (Icon left, title right, desc full-width below) */
  .feature-card,
  .highlight-card-red {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px 14px;
    padding: 20px;
  }

  .highlight-card-text {
    display: contents;
  }

  .feature-icon-wrapper,
  .highlight-card-icon {
    grid-column: 1;
    grid-row: 1;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    margin-bottom: 0;
  }

  .feature-icon-wrapper .material-symbols-outlined,
  .highlight-card-icon .material-symbols-outlined {
    font-size: 24px !important;
  }

  .feature-card-title,
  .highlight-card-title {
    grid-column: 2;
    grid-row: 1;
    font-size: 1.2rem;
    line-height: 1.35;
    margin: 0;
  }

  .feature-card-desc,
  .highlight-card-desc {
    grid-column: 1 / span 2;
    grid-row: 2;
    font-size: 0.88rem;
    line-height: 1.6;
    margin-top: 4px;
  }
  
  .floating-sidebar {
    position: fixed;
    top: auto;
    bottom: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 1070;
    width: auto;
    max-width: 95vw;
  }
  
  .dock-item {
    height: 46px;
    min-width: 46px;
    width: 46px;
    border-radius: 14px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  }

  .dock-item .material-symbols-outlined,
  .dock-item .dock-icon-text {
    font-size: 22px;
    margin: 0;
  }

  /* Disable slide-out label expansion on mobile */
  .dock-item:hover,
  .dock-item:focus,
  .dock-item:active {
    padding: 0 !important;
  }

  .dock-item:hover .dock-label,
  .dock-item:focus .dock-label,
  .dock-item:active .dock-label {
    display: none !important;
    max-width: 0 !important;
    opacity: 0 !important;
    margin-left: 0 !important;
  }

  /* Mobile Full-Screen Drawers (Slide up from bottom via GPU translateY(100%) -> translateY(0)) */
  .drawer-content {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 100vw;
    height: 100%;
    height: 100dvh;
    padding: 24px 20px calc(32px + env(safe-area-inset-bottom)) 20px;
    border-radius: 0;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.25);
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);
    z-index: 1080;
  }

  .drawer-content.active {
    transform: translateY(0) !important;
  }

  /* Mobile Footer Center Alignment (Max-Width: 768px) */
  .site-footer {
    text-align: center;
  }

  .site-footer .footer-grid {
    text-align: center;
  }

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

  .site-footer .footer-col-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .site-footer img {
    margin-left: auto;
    margin-right: auto;
  }

  .site-footer .footer-links-list {
    align-items: center;
  }

  .site-footer .footer-bottom-bar {
    text-align: center;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
  }

  .site-footer .footer-bottom-bar > div {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-main-title { font-size: 2.1rem; }
  .btn-hero { width: 100%; max-width: 100%; padding: 12px 20px; }
  .menu-card-content { padding: 16px; }
  .menu-course-card { padding: 20px 16px; }
  .course-title { font-size: 1.3rem; }
}

/* Rotating Hourglass Icon for Empty Menu State */
.hourglass-icon {
  color: var(--color-primary-red);
  font-size: 1.25rem;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  transform: translateY(-2px);
  transform-origin: center center;
  animation: rotateHourglass 4s infinite cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes rotateHourglass {
  0%, 75% {
    transform: translateY(-2px) rotate(0deg);
  }
  85%, 100% {
    transform: translateY(-2px) rotate(180deg);
  }
}
