/**
 * Custom CSS for Nisos Beach Bar
 * Enhanced Design System with DM Serif Display Typography
 *
 * @package Nisos_Beach_Bar
 */

/* Enhanced Typography System - PSD Professional Style */
.heading-display {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* PSD-Style Typography Classes */
.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.text-shadow-soft {
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.text-shadow-medium {
  text-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

.text-shadow-strong {
  text-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* PSD-Style Shadow & Depth System */
.shadow-soft {
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.shadow-medium {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.shadow-large {
  box-shadow: 0 8px 32px rgba(0,0,0,0.16);
}

.shadow-elevation-1 {
  box-shadow: 
    0 1px 3px rgba(0,0,0,0.12),
    0 1px 2px rgba(0,0,0,0.24);
}

.shadow-elevation-2 {
  box-shadow: 
    0 3px 6px rgba(0,0,0,0.16),
    0 3px 6px rgba(0,0,0,0.23);
}

.shadow-elevation-3 {
  box-shadow: 
    0 10px 20px rgba(0,0,0,0.19),
    0 6px 6px rgba(0,0,0,0.23);
}

.shadow-elevation-4 {
  box-shadow: 
    0 14px 28px rgba(0,0,0,0.25),
    0 10px 10px rgba(0,0,0,0.22);
}

.shadow-elevation-5 {
  box-shadow: 
    0 19px 38px rgba(0,0,0,0.30),
    0 15px 12px rgba(0,0,0,0.22);
}

/* PSD-Style Depth Classes */
.depth-1 { z-index: 100; }
.depth-2 { z-index: 200; }
.depth-3 { z-index: 300; }
.depth-4 { z-index: 400; }
.depth-5 { z-index: 500; }

/* PSD-Style Smooth Animations */
.hover-lift {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.hover-scale {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hover-glow {
  transition: box-shadow 0.3s ease, 
              transform 0.3s ease;
}

.hover-glow:hover {
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.3);
  transform: translateY(-2px);
}

.hover-fade {
  transition: opacity 0.3s ease;
}

.hover-fade:hover {
  opacity: 0.8;
}

/* Smooth transition for all interactive elements */
a, button, input, textarea, select,
.btn, .card, .facility-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* PSD-Style Consistent Spacing System */
.spacing-xs { margin: 0.5rem; }
.spacing-sm { margin: 1rem; }
.spacing-md { margin: 2rem; }
.spacing-lg { margin: 3rem; }
.spacing-xl { margin: 4rem; }
.spacing-2xl { margin: 5rem; }

.padding-xs { padding: 0.5rem; }
.padding-sm { padding: 1rem; }
.padding-md { padding: 2rem; }
.padding-lg { padding: 3rem; }
.padding-xl { padding: 4rem; }
.padding-2xl { padding: 5rem; }

/* Vertical spacing utilities */
.mt-auto { margin-top: auto; }
.mb-auto { margin-bottom: auto; }
.my-auto { margin-top: auto; margin-bottom: auto; }

.pt-section { padding-top: 5rem; }
.pb-section { padding-bottom: 5rem; }
.py-section { padding-top: 5rem; padding-bottom: 5rem; }

/* Gap utilities for flex/grid */
.gap-xs { gap: 0.5rem; }
.gap-sm { gap: 1rem; }
.gap-md { gap: 1.5rem; }
.gap-lg { gap: 2rem; }
.gap-xl { gap: 3rem; }

/* Simplified PDF Overlay Styles */
.pdf-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  animation: fadeIn 0.3s ease forwards;
}

.pdf-overlay-header {
  background: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
}

.pdf-overlay-header h3 {
  margin: 0;
  color: #333;
  font-size: 1.25rem;
}

.pdf-close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  min-width: 44px;
  min-height: 44px;
}

.pdf-close-btn:hover {
  background: #f5f5f5;
  color: #333;
}

.pdf-overlay-content {
  flex: 1;
  position: relative;
  background: #f5f5f5;
  margin: 0 1rem;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pdf-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10001;
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pdf-loading i {
  font-size: 2rem;
  color: #ff6a00;
  margin-bottom: 1rem;
}

.pdf-loading p {
  margin: 0;
  color: #666;
  font-size: 1.1rem;
}

.loading-progress {
  width: 200px;
  height: 4px;
  background: #f5f5f5;
  border-radius: 2px;
  margin: 1rem auto 0;
  overflow: hidden;
}

.loading-bar {
  height: 100%;
  background: #ff6a00;
  width: 0;
  animation: loadingProgress 2s infinite ease-in-out;
}

@keyframes loadingProgress {
  0% { width: 0; }
  50% { width: 70%; }
  100% { width: 100%; }
}

.pdf-viewer {
  flex: 1;
  overflow-y: auto;
  background: #f5f5f5;
  padding: 1rem;
}

.pdf-pages-container {
  max-width: 100%;
  margin: 0 auto;
}

.pdf-page-wrapper {
  margin-bottom: 2rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.pdf-page-wrapper:last-child {
  margin-bottom: 0;
}

.pdf-page-number {
  background: #f8f9fa;
  color: #666;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #e9ecef;
}

.pdf-page-wrapper canvas {
  width: 100% !important;
  height: auto !important;
  display: block;
}

.pdf-page-error {
  border: 2px dashed #ffc107;
  background: #fff9e6;
}

.pdf-page-error .pdf-page-number {
  background: #ffc107;
  color: #856404;
}

.pdf-page-placeholder {
  padding: 2rem;
  text-align: center;
  color: #856404;
}

.pdf-page-placeholder i {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.pdf-page-placeholder p {
  margin: 0 0 0.5rem 0;
  font-weight: 500;
}

.pdf-page-placeholder small {
  font-size: 0.85rem;
  opacity: 0.8;
}

.pdf-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem;
}

.pdf-fallback i {
  color: #666;
  margin-bottom: 1rem;
}

.pdf-fallback p {
  color: #666;
  font-size: 1.1rem;
}

.fallback-options {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.fallback-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.fallback-btn.btn-primary {
  background: #ff6a00;
  color: #fff;
}

.fallback-btn.btn-primary:hover {
  background: #e55a00;
}

.fallback-btn.btn-secondary {
  background: #6c757d;
  color: #fff;
}

.fallback-btn.btn-secondary:hover {
  background: #5a6268;
}

.pdf-overlay-footer {
  background: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  border-top: 1px solid #eee;
  flex-shrink: 0;
}

.pdf-overlay-footer .btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.pdf-overlay-footer .btn-primary {
  background: #ff6a00;
  color: #fff;
}

.pdf-overlay-footer .btn-primary:hover {
  background: #e55a00;
}

.pdf-overlay-footer .btn-secondary {
  background: #6c757d;
  color: #fff;
}

.pdf-overlay-footer .btn-secondary:hover {
  background: #5a6268;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .pdf-overlay-header {
    padding: 0.75rem 1rem;
  }
  
  .pdf-overlay-header h3 {
    font-size: 1.1rem;
  }
  
  .pdf-overlay-content {
    margin: 0 0.5rem;
  }
  
  .pdf-viewer {
    padding: 0.5rem;
  }
  
  .pdf-page-wrapper {
    margin-bottom: 1rem;
  }
  
  .pdf-overlay-footer {
    padding: 1rem;
    flex-direction: column;
  }
  
  .pdf-overlay-footer .btn {
    width: 100%;
    justify-content: center;
  }
  
  .fallback-options {
    flex-direction: column;
    align-items: stretch;
  }
  
  .fallback-btn {
    justify-content: center;
    width: 100%;
  }
}

/* Tablet styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .pdf-overlay-header {
    padding: 1rem 1.5rem;
  }
  
  .pdf-viewer {
    padding: 0.75rem;
  }
  
  .pdf-overlay-footer {
    padding: 1.25rem;
  }
}

/* Large screen optimization */
@media (min-width: 1200px) {
  .pdf-pages-container {
    max-width: 900px;
  }
  
  .pdf-viewer {
    padding: 2rem;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .pdf-close-btn {
    min-width: 44px;
    min-height: 44px;
    padding: 0.75rem;
  }
  
  .pdf-overlay-footer .btn {
    min-height: 44px;
    padding: 0.875rem 1.5rem;
  }
}

/* Prevent body scroll when overlay is open */
body.pdf-overlay-open {
  overflow: hidden;
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10001;
  min-width: 300px;
  animation: slideInRight 0.3s ease;
}

.notification-info {
  border-left: 4px solid #1b4dff;
}

.notification-success {
  border-left: 4px solid #28a745;
}

.notification-warning {
  border-left: 4px solid #ffc107;
}

.notification-error {
  border-left: 4px solid #dc3545;
}

.notification-close {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.25rem;
  margin-left: auto;
}

.notification-close:hover {
  color: #333;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .pdf-overlay-header,
  .pdf-overlay-footer {
    padding: 1rem;
  }
  
  .pdf-overlay-content {
    margin: 0 0.5rem;
  }
  
  .pdf-overlay-footer {
    flex-direction: column;
  }
  
  .pdf-overlay-footer .btn {
    width: 100%;
  }
  
  .notification {
    top: 1rem;
    right: 1rem;
    left: 1rem;
    min-width: auto;
  }
}

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

.loading * {
  transition: opacity 0.3s ease;
}

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

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

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

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

/* Animate in classes */
.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-in.from-left {
  animation: fadeInLeft 0.6s ease forwards;
}

.animate-in.from-right {
  animation: fadeInRight 0.6s ease forwards;
}

/* Swiper Customizations - Commented out to prevent conflicts with hero-specific styles */
/* Note: Hero carousel has its own specific navigation styles defined below
.swiper-button-next,
.swiper-button-prev {
  color: var(--primary) !important;
  background: rgba(255, 255, 255, 0.9);
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: white;
  transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px !important;
  font-weight: bold;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.7) !important;
  opacity: 1 !important;
  width: 12px !important;
  height: 12px !important;
  margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
  background: var(--primary) !important;
  transform: scale(1.2);
}
*/

/* Non-hero carousel styles (for food-drinks, events, etc.) */
.food-drinks-carousel .swiper-button-next,
.food-drinks-carousel .swiper-button-prev,
.events-carousel .swiper-button-next,
.events-carousel .swiper-button-prev {
  color: var(--primary) !important;
  background: rgba(255, 255, 255, 0.9);
  width: 45px !important;
  height: 45px !important;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.food-drinks-carousel .swiper-button-next:hover,
.food-drinks-carousel .swiper-button-prev:hover,
.events-carousel .swiper-button-next:hover,
.events-carousel .swiper-button-prev:hover {
  background: white;
  transform: scale(1.1);
}

.food-drinks-carousel .swiper-button-next::after,
.food-drinks-carousel .swiper-button-prev::after,
.events-carousel .swiper-button-next::after,
.events-carousel .swiper-button-prev::after {
  font-size: 16px !important;
  font-weight: bold;
}

/* Hero Section Enhancements - Modern Beach Bar Design */
.hero-section {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 120px);
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: linear-gradient(135deg, #1a1f2e 0%, #2c3e50 50%, #34495e 100%);
}

.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-carousel .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-carousel img,
.hero-carousel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
  will-change: transform;
}

/* Mobile hero images with left positioning */
@media (max-width: 768px) {
  .hero-carousel img {
    object-position: left center;
  }
}

.hero-carousel .swiper-slide-active img,
.hero-carousel .swiper-slide-active video {
  transform: scale(1.05);
}

/* WebP Image Support */
.hero-image {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero Overlay - Progressive Dark Green Glass Effect */
.hero-section .hero-overlay,
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(0, 60, 40, 0.4) 0%, 
    rgba(0, 70, 50, 0.35) 15%, 
    rgba(0, 80, 60, 0.28) 30%, 
    rgba(0, 90, 65, 0.22) 45%,
    rgba(0, 100, 70, 0.18) 60%,
    rgba(0, 110, 75, 0.14) 70%,
    rgba(0, 120, 80, 0.08) 80%,
    rgba(0, 130, 90, 0.04) 90%,
    transparent 100%);
  backdrop-filter: blur(1px);
  z-index: 2;
  pointer-events: none !important;
}

/* Additional gradient overlay for enhanced depth */
.hero-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, 
    rgba(0,0,0,0.2) 0%, 
    transparent 30%, 
    transparent 70%, 
    rgba(0,0,0,0.4) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Hero Content - Left Aligned per PSD Design */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: left;
  color: white;
  padding: 0;
  animation: fadeInUp 1s ease 0.5s both;
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 100vh;
  pointer-events: none;
}

.hero-content .container {
  max-width: 1400px;
  width: 100%;
  margin-left: 20%;
  margin-right: auto;
  padding-left: 5%;
  padding-right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  pointer-events: auto;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  margin-bottom: 1rem;
  text-shadow: 3px 3px 10px rgba(0,0,0,0.7);
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 700px;
}

.hero-content p {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
  line-height: 1.6;
  max-width: 600px;
  font-weight: 300;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.hero-buttons .btn {
  animation: fadeInUp 1s ease 0.8s both;
  padding: 1.2rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}

.hero-buttons .btn:nth-child(2) {
  animation-delay: 1s;
}

.hero-buttons .btn-primary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

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

.hero-buttons .btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-primary:hover::before {
  left: 100%;
}

.hero-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

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

.hero-buttons .btn-secondary:hover {
  transform: translateY(-3px) scale(1.02);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-secondary:hover::before {
  left: 100%;
}

/* Hero Navigation - Fixed for mobile clickability */
.hero-carousel .swiper-button-next,
.hero-carousel .swiper-button-prev {
  width: 50px !important;
  height: 50px !important;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 9999 !important;
  position: absolute !important;
  pointer-events: auto !important;
  cursor: pointer !important;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.hero-carousel .swiper-button-next:after,
.hero-carousel .swiper-button-prev:after {
  font-size: 18px;
  color: white;
  font-weight: bold;
}

.hero-carousel .swiper-button-next:hover,
.hero-carousel .swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* Hero Pagination - Fixed for mobile clickability */
.hero-carousel .swiper-pagination {
  bottom: 2rem !important;
  z-index: 9999 !important;
  position: absolute !important;
  left: 0;
  right: 0;
  pointer-events: auto !important;
}

.hero-carousel .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin: 0 6px;
  transition: all 0.3s ease;
  opacity: 1 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
  z-index: 9999 !important;
  position: relative !important;
}

.hero-carousel .swiper-pagination-bullet-active {
  background: white;
  transform: scale(1.4);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  border-color: white;
}

/* Hero Fallback Styles */
.hero-fallback {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.hero-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-placeholder {
  text-align: center;
  color: white;
  z-index: 2;
  position: relative;
}

.hero-placeholder h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-placeholder p {
  font-size: 1.25rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-admin-notice {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem 2rem;
  border-radius: 8px;
  text-align: center;
  max-width: 500px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hero-admin-notice p {
  color: #333;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  text-shadow: none;
}

.hero-admin-notice .button {
  background: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-admin-notice .button:hover {
  background: #1a3fa0;
  transform: translateY(-1px);
}

/* Hero Section Mobile Responsive */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .hero-buttons .btn {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }
}

/* Tablet adjustments for progressive green glass overlay */
@media (max-width: 1024px) {
  .hero-overlay {
    background: linear-gradient(90deg, 
      rgba(0, 60, 40, 0.35) 0%, 
      rgba(0, 75, 55, 0.28) 20%, 
      rgba(0, 85, 65, 0.22) 40%, 
      rgba(0, 95, 70, 0.16) 55%,
      rgba(0, 110, 80, 0.11) 70%,
      rgba(0, 120, 90, 0.06) 80%,
      rgba(0, 130, 95, 0.03) 90%,
      transparent 100%);
    backdrop-filter: blur(0.5px);
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: calc(100vh - 100px);
    min-height: 400px;
  }
  
  /* Ensure hero carousel doesn't block navigation on mobile */
  .hero-carousel {
    pointer-events: none;
  }
  
  .hero-carousel .swiper-wrapper,
  .hero-carousel .swiper-slide {
    pointer-events: auto;
  }
  
  .hero-content {
    padding: 1.5rem;
    text-align: left;
    pointer-events: none !important;
  }
  
  .hero-content .container {
    margin-left: 10%;
    padding-left: 2rem;
    padding-right: 1rem;
    align-items: flex-start;
    pointer-events: auto !important;
  }
  
  .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    max-width: 100%;
  }
  
  .hero-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }
  
  .hero-buttons {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .hero-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    flex: 0 0 auto;
  }
  
  .hero-carousel .swiper-button-next,
  .hero-carousel .swiper-button-prev {
    display: none !important;
  }
  
  .hero-carousel .swiper-button-next:after,
  .hero-carousel .swiper-button-prev:after {
    font-size: 14px !important;
  }
  
  .hero-carousel .swiper-pagination {
    bottom: 1rem !important;
    z-index: 9999 !important;
    pointer-events: auto !important;
  }
  
  .hero-admin-notice {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    transform: none;
    max-width: none;
    padding: 1rem;
  }
  
  .hero-placeholder h2 {
    font-size: 2.5rem;
  }
  
  .hero-placeholder p {
    font-size: 1rem;
  }
  
  /* Hide all carousel navigation arrows on mobile - preserve swipe functionality */
  .swiper-button-next,
  .swiper-button-prev,
  .reviews-carousel .swiper-button-next,
  .reviews-carousel .swiper-button-prev,
  .food-carousel .swiper-button-next,
  .food-carousel .swiper-button-prev,
  .gallery-carousel .swiper-button-next,
  .gallery-carousel .swiper-button-prev,
  .events-carousel .swiper-button-next,
  .events-carousel .swiper-button-prev {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: calc(100vh - 90px);
    min-height: 350px;
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .hero-content .container {
    margin-left: 0;
    padding-left: 1rem;
    padding-right: 0.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  
  .hero-content p {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }
  
  .hero-buttons .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    width: auto;
    min-width: 180px;
  }
  
  .hero-carousel .swiper-button-next,
  .hero-carousel .swiper-button-prev {
    display: none !important;
  }
  
  .hero-carousel .swiper-button-next:after,
  .hero-carousel .swiper-button-prev:after {
    font-size: 12px !important;
  }
  
  .hero-carousel .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    margin: 0 4px !important;
    pointer-events: auto !important;
    cursor: pointer !important;
  }
  
  /* Hide all carousel navigation arrows on mobile - preserve swipe functionality */
  .swiper-button-next,
  .swiper-button-prev,
  .reviews-carousel .swiper-button-next,
  .reviews-carousel .swiper-button-prev,
  .food-carousel .swiper-button-next,
  .food-carousel .swiper-button-prev,
  .gallery-carousel .swiper-button-next,
  .gallery-carousel .swiper-button-prev,
  .events-carousel .swiper-button-next,
  .events-carousel .swiper-button-prev {
    display: none !important;
  }
}

/* Top Bar Enhancements */
.top-bar {
  background: linear-gradient(135deg, var(--sand) 0%, #f5f1eb 100%);
}

.status-open {
  color: #22c55e;
  font-weight: 600;
  margin-left: 0.5rem;
}

.status-closed {
  color: #ef4444;
  font-weight: 600;
  margin-left: 0.5rem;
}

/* Navigation Enhancements */
.main-navigation a.active {
  color: var(--primary);
  position: relative;
}

.main-navigation a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}

/* Facility Cards Hover Effects */
.facility-card {
  transition: all 0.3s ease;
  cursor: pointer;
}

.facility-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.facility-card:hover i {
  transform: scale(1.2);
  transition: transform 0.3s ease;
}

/* Section Typography with DM Serif Display */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--muted);
  margin-bottom: 3rem;
  line-height: 1.8;
}

/* Enhanced Buttons with Modern Design */
.btn-modern {
  font-family: var(--font-body);
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-modern::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.6s;
  z-index: -1;
}

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

/* Card Design System */
.card-modern {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.card-modern:hover {
  box-shadow: var(--shadow-large);
  transform: translateY(-5px);
}

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

/* Gallery Enhancements */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-overlay i {
  color: white;
  font-size: 2rem;
}

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

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

/* Gallery Tabs */
.gallery-tabs {
  margin-bottom: 2rem;
}

.gallery-tab {
  background: white;
  border: 2px solid var(--muted);
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gallery-tab i {
  font-size: 1.2rem;
}

.gallery-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.gallery-tab.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.loading-message {
  text-align: center;
  padding: 2rem;
  color: var(--muted);
}

.loading-message i {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

/* Review Cards */
.review-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 100%;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.review-author-info {
  flex: 1;
}

.review-author {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.review-date {
  font-size: 0.875rem;
  color: var(--muted);
}

.review-rating {
  color: var(--primary);
}

.review-content {
  color: var(--body);
  line-height: 1.6;
}

.review-stars i {
  margin-right: 2px;
}

/* Reviews Carousel */
.reviews-carousel {
  position: relative;
  padding: 0 50px;
  margin-bottom: 3rem;
}

.reviews-carousel .swiper-button-next,
.reviews-carousel .swiper-button-prev {
  color: var(--primary);
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.reviews-carousel .swiper-button-next:after,
.reviews-carousel .swiper-button-prev:after {
  font-size: 18px;
}

.reviews-carousel .swiper-button-next:hover,
.reviews-carousel .swiper-button-prev:hover {
  background: var(--primary);
  color: white;
}

.reviews-carousel .swiper-pagination {
  bottom: -30px;
}

.reviews-carousel .swiper-pagination-bullet {
  background: var(--primary);
  opacity: 0.3;
}

.reviews-carousel .swiper-pagination-bullet-active {
  opacity: 1;
}

@media (max-width: 768px) {
  .reviews-carousel {
    padding: 0 30px;
  }
  
  .reviews-carousel .swiper-button-next,
  .reviews-carousel .swiper-button-prev {
    width: 35px;
    height: 35px;
  }
  
  .reviews-carousel .swiper-button-next:after,
  .reviews-carousel .swiper-button-prev:after {
    font-size: 16px;
  }
}

/* Food Carousel Portrait Styles */
.food-carousel {
  position: relative;
  padding: 0 50px;
}

.food-carousel .swiper-button-next,
.food-carousel .swiper-button-prev {
  color: var(--primary);
  background: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.food-carousel .swiper-button-next:after,
.food-carousel .swiper-button-prev:after {
  font-size: 18px;
}

.food-carousel .swiper-pagination {
  bottom: -30px;
}

.food-carousel .swiper-pagination-bullet {
  background: var(--primary);
  opacity: 0.3;
}

.food-carousel .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Gallery Carousel */
.gallery-carousel {
  position: relative;
  padding: 0 50px;
  margin: 2rem 0;
}

.gallery-carousel .swiper-slide {
  height: auto;
}

.gallery-carousel .gallery-item {
  height: 250px;
}

.gallery-carousel .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-carousel .swiper-button-next,
.gallery-carousel .swiper-button-prev {
  color: var(--primary);
  background: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.gallery-carousel .swiper-button-next:after,
.gallery-carousel .swiper-button-prev:after {
  font-size: 18px;
}

.gallery-carousel .swiper-button-next:hover,
.gallery-carousel .swiper-button-prev:hover {
  background: var(--primary);
  color: white;
}

.gallery-carousel .swiper-pagination {
  bottom: -30px;
}

.gallery-carousel .swiper-pagination-bullet {
  background: var(--primary);
  opacity: 0.3;
}

.gallery-carousel .swiper-pagination-bullet-active {
  opacity: 1;
}

@media (max-width: 768px) {
  .gallery-carousel {
    padding: 0 30px;
  }
  
  .gallery-carousel .gallery-item {
    height: 200px;
  }
  
  .gallery-carousel .swiper-button-next,
  .gallery-carousel .swiper-button-prev {
    width: 35px;
    height: 35px;
  }
  
  .gallery-carousel .swiper-button-next:after,
  .gallery-carousel .swiper-button-prev:after {
    font-size: 16px;
  }
}

/* Events Section */
.event-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
}

.event-image {
  position: relative;
  overflow: hidden;
}

.event-image img {
  transition: transform 0.3s ease;
}

.event-card:hover .event-image img {
  transform: scale(1.05);
}

.event-content {
  padding: 1.5rem;
}

.event-date {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.event-title {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.event-excerpt {
  color: var(--muted);
  margin-bottom: 1rem;
}

.event-time,
.event-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.event-time i,
.event-price i {
  color: var(--primary);
  width: 16px;
  text-align: center;
}

/* Private Events Section */
.private-events {
  background: white;
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  margin-top: 3rem;
}

.private-events-icon {
  width: 80px;
  height: 80px;
  background: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.private-events-icon i {
  font-size: 2.5rem;
  color: var(--primary);
}

.private-events h3 {
  margin-bottom: 1.5rem;
  color: var(--ink);
}

.private-events-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  padding: 1rem;
  background: var(--sand);
  border-radius: var(--radius);
}

.feature-item i {
  color: var(--primary);
  font-size: 1.2rem;
}

.private-events-contact {
  margin-top: 2rem;
}

.private-events-contact .btn + .btn {
  margin-left: 1rem;
}

/* Contact Section - Enhanced Layout */
.contact-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: stretch;
}

.contact-info {
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--bg) 0%, var(--sand-light) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  min-height: 500px;
  display: flex;
  flex-direction: column;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.contact-item:last-of-type {
  border-bottom: none;
}

.contact-item:hover {
  padding-left: 0.5rem;
}

.contact-item i {
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.8rem;
  width: 35px;
  text-align: center;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.contact-item-content h4 {
  margin: 0 0 0.4rem;
  color: var(--ink-light);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-item-content p {
  color: var(--ink);
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
}

.contact-item-content a {
  color: var(--accent);
  font-weight: 600;
}

.season-info {
  font-style: italic;
  font-size: 0.9rem;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 500px;
  position: relative;
  border: 3px solid var(--sand);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.directions-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.directions-buttons .btn {
  flex: 1;
}

.contact-social {
  margin-top: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.contact-social h4 {
  margin-bottom: 1rem;
}

.contact-additional {
  margin-top: 3rem;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.info-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.info-card h4 {
  margin-bottom: 1rem;
  color: var(--ink);
}

.info-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

/* Menu PDF Buttons */
.menu-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.menu-pdf-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
}

.menu-pdf-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.menu-pdf-link i {
  font-size: 1.2rem;
}

/* Reviews CTA */
.reviews-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.reviews-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 8px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.reviews-cta .btn-google-reviews {
  background: #4285f4;
  color: white;
  border: 2px solid #4285f4;
}

.reviews-cta .btn-google-reviews:hover {
  background: #1a73e8;
  border-color: #1a73e8;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(66, 133, 244, 0.3);
}

.reviews-cta .btn-tripadvisor {
  background: #00AA6C;
  color: white;
  border: 2px solid #00AA6C;
}

.reviews-cta .btn-tripadvisor:hover {
  background: #00875a;
  border-color: #00875a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 170, 108, 0.3);
}

.reviews-cta .btn i {
  font-size: 1.2rem;
}

.reviews-cta .btn-text {
  display: inline-block;
}

/* Tablet View */
@media (max-width: 1024px) and (min-width: 769px) {
  .reviews-cta {
    gap: 1.5rem;
  }
  
  .reviews-cta .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* Responsive Design Enhancements */
@media (max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr 2fr;
  }
  
  .contact-map {
    height: 450px;
  }
  
  .contact-info {
    min-height: 450px;
  }
}

@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-info {
    padding: 1.5rem;
    min-height: auto;
  }
  
  .directions-buttons {
    flex-direction: column;
  }
  
  .private-events-contact .btn + .btn {
    margin-left: 0;
    margin-top: 1rem;
  }
  
  .reviews-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 0 1rem;
  }
  
  .reviews-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .reviews-cta .btn i {
    font-size: 1.1rem;
  }
  
  .reviews-cta .btn-text {
    font-size: 0.9rem;
  }
  
  .menu-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .menu-pdf-link {
    width: 100%;
    justify-content: center;
  }
  
  .private-events-features {
    grid-template-columns: 1fr;
  }
  
  .gallery-tabs {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .gallery-tab {
    justify-content: center;
  }
}

/* Focus States for Accessibility */
.btn:focus,
.gallery-tab:focus,
button:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.reviews-cta .btn-google-reviews:focus {
  outline-color: #4285f4;
  box-shadow: 0 0 0 4px rgba(66, 133, 244, 0.2);
}

.reviews-cta .btn-tripadvisor:focus {
  outline-color: #00AA6C;
  box-shadow: 0 0 0 4px rgba(0, 170, 108, 0.2);
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  :root {
    --shadow: 0 6px 18px rgba(0,0,0,.2);
  }
  
  .hero-overlay {
    background: linear-gradient(90deg, 
      rgba(0, 60, 40, 0.3) 0%, 
      rgba(0, 75, 55, 0.24) 20%, 
      rgba(0, 85, 65, 0.18) 45%,
      rgba(0, 95, 70, 0.11) 70%,
      rgba(0, 110, 80, 0.05) 90%,
      transparent 100%);
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .swiper {
    --swiper-navigation-color: var(--primary);
  }
}

/* CRITICAL FIX: Ensure hero slider arrows are clickable on mobile */
@media screen and (max-width: 768px) {
  /* Reset all hero section pointer events */
  #hero * {
    pointer-events: none !important;
  }
  
  /* Allow slides to be swipeable */
  #hero .swiper-wrapper,
  #hero .swiper-slide {
    pointer-events: auto !important;
  }
  
  /* Hide navigation arrows on mobile - swipe functionality preserved */
  #hero .swiper-button-next,
  #hero .swiper-button-prev {
    display: none !important;
  }
  
  
  /* Keep hero content buttons clickable */
  #hero .hero-content .container,
  #hero .hero-content .btn,
  #hero .hero-content a {
    pointer-events: auto !important;
  }
  
  /* Fix pagination */
  #hero .swiper-pagination {
    z-index: 999999 !important;
    pointer-events: none !important;
  }
  
  #hero .swiper-pagination-bullet {
    pointer-events: all !important;
    cursor: pointer !important;
  }
}

/* Gallery Empty State Styling */
.gallery-empty-state {
  text-align: center;
  padding: 3rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  margin: 2rem 0;
}

.empty-gallery-message {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.gallery-empty-state .button {
  margin-top: 1rem;
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.gallery-empty-state .button:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* ============================================
   Menu Pages (Food Menu / Drinks Menu)
   ============================================ */
.menu-page .menu-page-hero {
    /* Header is position:sticky (occupies flow), so no large clearance needed. */
    padding: 2.5rem 0 0;
    background: var(--sand, #fff8f1);
    text-align: center;
}

/* The body section provides the top gap, so drop the title's default bottom margin. */
.menu-page .menu-page-hero .section-header {
    margin-bottom: 0;
}

.menu-page .menu-page-body {
    padding-top: 2rem;
}

.menu-page-content {
    max-width: 820px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text, #0a1020);
}

.menu-page-content h2,
.menu-page-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.menu-page-content ul,
.menu-page-content ol {
    padding-left: 1.4rem;
}

.menu-page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.menu-page-back {
    text-align: center;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .menu-page .menu-page-hero {
        padding-top: 1.5rem;
    }
}