/* CSS Variables */
:root {
  --background: #f9f6f3;
  --foreground: #3d3832;
  --card: #f5f0eb;
  --card-foreground: #3d3832;
  --popover: #f5f0eb;
  --popover-foreground: #3d3832;
  --primary: #9d8770;
  --primary-foreground: #ffffff;
  --primary-hover: #8d7660;
  --secondary: #a89a8c;
  --secondary-foreground: #ffffff;
  --muted: #ede8e2;
  --muted-foreground: #6b6054;
  --accent: #c4b5a4;
  --accent-foreground: #3d3832;
  --destructive: #c97c7c;
  --destructive-foreground: #ffffff;
  --success: #7db88d;
  --success-foreground: #ffffff;
  --border: #ddd4c9;
  --input: #f5f0eb;
  --ring: #9d8770;
  --chart-1: #9d8770;
  --chart-2: #c4b5a4;
  --chart-3: #a89a8c;
  --chart-4: #ede8e2;
  --chart-5: #3d3832;
  --radius: 0.625rem;
  --sidebar: #f5f0eb;
  --sidebar-foreground: #3d3832;
  --sidebar-primary: #9d8770;
  --sidebar-primary-foreground: #ffffff;
  --sidebar-accent: #c4b5a4;
  --sidebar-accent-foreground: #3d3832;
  --sidebar-border: #ddd4c9;
  --sidebar-ring: #9d8770;
  --gradient-start: rgba(249, 246, 243, 0.2);
  --gradient-end: rgba(249, 246, 243, 0.5);
}

.dark {
  --background: #1a1714;
  --foreground: #e8e2dc;
  --card: #252220;
  --card-foreground: #e8e2dc;
  --popover: #252220;
  --popover-foreground: #e8e2dc;
  --primary: #c4b5a4;
  --primary-foreground: #252220;
  --primary-hover: #b5a595;
  --secondary: #9d8770;
  --secondary-foreground: #ffffff;
  --muted: #332f2b;
  --muted-foreground: #b5a898;
  --accent: #c4b5a4;
  --accent-foreground: #252220;
  --destructive: #d89b9b;
  --destructive-foreground: #1a1714;
  --success: #8dc69d;
  --success-foreground: #1a1714;
  --border: #4a453f;
  --input: #252220;
  --ring: #c4b5a4;
  --chart-1: #c4b5a4;
  --chart-2: #9d8770;
  --chart-3: #a89a8c;
  --chart-4: #e8e2dc;
  --chart-5: #252220;
  --sidebar: #252220;
  --sidebar-foreground: #e8e2dc;
  --sidebar-primary: #c4b5a4;
  --sidebar-primary-foreground: #252220;
  --sidebar-accent: #9d8770;
  --sidebar-accent-foreground: #e8e2dc;
  --sidebar-border: #4a453f;
  --sidebar-ring: #c4b5a4;
  --gradient-start: rgba(26, 23, 20, 0.2);
  --gradient-end: rgba(26, 23, 20, 0.5);
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: "Geist", system-ui, -apple-system, sans-serif;
  height: -webkit-fill-available;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: "Geist", system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Utility Classes */
.max-w-6xl {
  max-width: 72rem;
}

.max-w-7xl {
  max-width: 80rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hidden {
  display: none !important;
}

.text-primary {
  color: var(--primary);
}

.text-muted-foreground {
  color: var(--muted-foreground);
}

.bg-primary {
  background-color: var(--primary);
}

.text-primary-foreground {
  color: var(--primary-foreground);
}

.bg-muted {
  background-color: var(--muted);
}

.bg-card {
  background-color: var(--card);
}

.hover\:bg-muted:hover {
  background-color: var(--muted);
}

.hover\:bg-primary\/90:hover {
  background-color: var(--primary-hover);
}

.transition-all {
  transition: all 0.3s ease;
}

.transition-colors {
  transition: color 0.2s ease, background-color 0.2s ease;
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-500 {
  transition-duration: 500ms;
}

.duration-1000 {
  transition-duration: 1000ms;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-full {
  border-radius: 9999px;
}

.z-50 {
  z-index: 50;
}

/* Navigation Styles */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(246, 239, 239, 0.7) 0%, rgba(246, 239, 239, 0.5) 100%);
  backdrop-filter: blur(8px) saturate(120%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(205, 192, 176, 0.1);
}

.dark .nav-header {
  background: linear-gradient(to bottom, rgba(15, 14, 13, 0.7) 0%, rgba(15, 14, 13, 0.5) 100%);
  border-bottom: 1px solid rgba(212, 197, 176, 0.1);
}

.nav-header.scrolled {
  background: rgba(246, 239, 239, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(168, 145, 117, 0.2);
}

.dark .nav-header.scrolled {
  background: rgba(15, 14, 13, 0.95);
  border-bottom: 1px solid rgba(212, 197, 176, 0.2);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), 0 1px 4px rgba(0, 0, 0, 0.2);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
}

/* Logo Styles */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: transform 0.2s ease;
  z-index: 10;
}

.nav-logo:hover {
  transform: translateY(-2px);
}

.logo-image-wrapper {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  border: 2px solid rgba(168, 145, 117, 0.2);
}

.dark .logo-image-wrapper {
  border-color: rgba(212, 197, 176, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.nav-logo:hover .logo-image-wrapper {
  box-shadow: 0 6px 20px rgba(168, 145, 117, 0.4);
  border-color: var(--primary);
}

.dark .nav-logo:hover .logo-image-wrapper {
  box-shadow: 0 6px 20px rgba(212, 197, 176, 0.5);
}

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

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.logo-title {
  padding-bottom: 4px;
  font-size: 16px;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-family: 'Jokerman', 'Comic Sans MS', cursive;
}

.logo-subtitle {
  font-size: 5.5px;
  font-weight: 500;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.2;
}

/* Show logo text on larger screens */
@media (min-width: 375px) {
  .logo-title {
    font-size: 18px;
    padding-bottom: 5px;
  }
  
  .logo-subtitle {
    font-size: 6px;
  }
}

@media (min-width: 480px) {
  .logo-title {
    font-size: 26px;
  }
  
  .logo-subtitle {
    font-size: 7.5px;
  }
}

@media (min-width: 640px) {
  .logo-title {
    font-size: 30px;
  }
  
  .logo-subtitle {
    font-size: 8.5px;
  }
}

@media (min-width: 768px) {
  .logo-title {
    font-size: 32px;
  }
  
  .logo-subtitle {
    font-size: 9px;
  }
}

@media (min-width: 900px) {
  .logo-title {
    font-size: 35px;
  }
  
  .logo-subtitle {
    font-size: 10px;
  }
}

/* Desktop Menu */
.nav-menu-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: none;
  border: none;
  color: var(--foreground);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
  position: relative;
}

.nav-link i {
  width: 18px;
  height: 18px;
  opacity: 0.8;
  transition: all 0.2s ease;
}

.nav-link:hover {
  background-color: var(--muted);
  color: var(--primary);
  transform: translateY(-1px);
}

.nav-link:hover i {
  opacity: 1;
  transform: scale(1.1);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* Navigation Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.25rem;
  background: rgba(168, 145, 117, 0.05);
  border-radius: 1rem;
  border: 1px solid rgba(168, 145, 117, 0.1);
}

.dark .nav-actions {
  background: rgba(212, 197, 176, 0.05);
  border-color: rgba(212, 197, 176, 0.1);
}

.theme-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  color: var(--foreground);
  cursor: pointer;
  transition: all 0.3s ease;
}

.theme-toggle-btn:hover {
  background: var(--primary);
  color: var(--primary-foreground);
  transform: rotate(15deg) scale(1.05);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(168, 145, 117, 0.3);
}

.dark .theme-toggle-btn:hover {
  box-shadow: 0 4px 12px rgba(212, 197, 176, 0.4);
}

.book-now-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: var(--primary-foreground);
  border: none;
  border-radius: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(168, 145, 117, 0.4);
  position: relative;
  overflow: hidden;
}

.book-now-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.book-now-btn:hover::before {
  opacity: 1;
}

.book-now-btn i {
  width: 18px;
  height: 18px;
  z-index: 1;
}

.book-now-btn span {
  z-index: 1;
}

.book-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168, 145, 117, 0.5);
}

.dark .book-now-btn {
  box-shadow: 0 4px 12px rgba(212, 197, 176, 0.5);
}

.dark .book-now-btn:hover {
  box-shadow: 0 6px 20px rgba(212, 197, 176, 0.6);
}

.book-now-btn:active {
  transform: translateY(0);
}

/* Mobile Actions */
.nav-mobile-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.theme-toggle-btn-mobile,
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  color: var(--foreground);
  cursor: pointer;
  transition: all 0.2s ease;
}

.theme-toggle-btn-mobile:hover,
.mobile-menu-btn:hover {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(168, 145, 117, 0.3);
}

.dark .theme-toggle-btn-mobile:hover,
.dark .mobile-menu-btn:hover {
  box-shadow: 0 4px 12px rgba(212, 197, 176, 0.4);
}

.theme-toggle-btn-mobile:active,
.mobile-menu-btn:active {
  transform: scale(0.95);
}

/* Mobile Menu */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: rgba(246, 239, 239, 0.98);
  backdrop-filter: blur(10px);
  border-radius: 0 0 1rem 1rem;
  margin-top: -1px;
}

.dark .mobile-menu {
  background: rgba(15, 14, 13, 0.98);
}

.mobile-menu:not(.hidden) {
  max-height: 500px;
  animation: slideDown 0.3s ease-out;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.dark .mobile-menu:not(.hidden) {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.mobile-menu-content {
  padding: 1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: none;
  border: none;
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
  text-align: left;
  width: 100%;
  border: 1px solid transparent;
}

.mobile-nav-link i {
  width: 20px;
  height: 20px;
  opacity: 0.8;
  transition: all 0.2s ease;
}

.mobile-nav-link:hover {
  background: var(--muted);
  color: var(--primary);
  transform: translateX(4px);
  border-color: var(--border);
}

.mobile-nav-link:hover i {
  opacity: 1;
  transform: scale(1.1);
}

.mobile-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  margin-top: 0.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: var(--primary-foreground);
  border: none;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(168, 145, 117, 0.4);
  width: 100%;
}

.dark .mobile-book-btn {
  box-shadow: 0 4px 12px rgba(212, 197, 176, 0.5);
}

.mobile-book-btn i {
  width: 20px;
  height: 20px;
}

.mobile-book-btn:active {
  transform: scale(0.98);
}

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

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1200&h=800&fit=crop');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, 
    rgba(61, 56, 50, 0.65), 
    rgba(107, 96, 84, 0.5), 
    rgba(61, 56, 50, 0.75));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
  max-width: 64rem;
  margin: 0 auto;
}

.hero-text-container {
  transition: all 1s ease;
  opacity: 0;
  transform: translateY(2.5rem);
}

.hero-text-container.loaded {
  opacity: 1;
  transform: translateY(0);
}

.hero-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  animation: fadeInScale 1.2s ease-out;
}

.hero-logo-image {
  width: 150px;
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
  animation: float 3s ease-in-out infinite;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #e8e2dc;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-family: 'Jokerman', 'Comic Sans MS', cursive;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #c4b5a4;
  margin-bottom: 1rem;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.125rem;
  color: #d4ccc0;
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.hero-btn-primary,
.hero-btn-secondary {
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #9d8770 0%, #8d7660 100%);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(157, 135, 112, 0.3);
  position: relative;
  overflow: hidden;
}

.hero-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-btn-primary:hover::before {
  opacity: 1;
}

.hero-btn-primary:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 15px 30px rgba(157, 135, 112, 0.4);
}

.hero-btn-secondary {
  background: rgba(196, 181, 164, 0.12);
  backdrop-filter: blur(12px);
  color: #e8e2dc;
  border: 2px solid rgba(196, 181, 164, 0.25);
}

.hero-btn-secondary:hover {
  background: rgba(196, 181, 164, 0.2);
  border-color: rgba(196, 181, 164, 0.4);
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 10px 20px rgba(196, 181, 164, 0.25);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
  color: #c4b5a4;
  font-size: 2rem;
  opacity: 0.7;
  transition: all 0.3s ease;
  cursor: pointer;
}

.scroll-indicator:hover {
  color: #e8e2dc;
  opacity: 0.9;
  transform: translateX(-50%) scale(1.1);
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transform: translateX(-50%) translateY(0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translateX(-50%) translateY(-30px);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translateX(-50%) translateY(-15px);
  }
  90% {
    transform: translateX(-50%) translateY(-4px);
  }
}

/* Section Styles */
.services-section {
  padding: 5rem 1rem;
  background: linear-gradient(to bottom, var(--background), var(--gradient-start));
}

.venues-section {
  padding: 5rem 1rem;
  background-color: var(--background);
}

.catering-section {
  padding: 5rem 1rem;
  background: linear-gradient(to bottom, var(--gradient-start), var(--background));
}

.teambuilding-section {
  padding: 5rem 1rem;
  background-color: var(--background);
}

.social-section {
  padding: 5rem 1rem;
  background: linear-gradient(to bottom, var(--background), var(--gradient-start));
}

.contact-section {
  padding: 5rem 1rem;
  background-color: var(--background);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  transition: all 1s ease;
  opacity: 0;
  transform: translateY(2.5rem);
}

.section-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 32rem;
  margin: 0 auto;
}

/* Carousel Styles */
.carousel-container {
  position: relative;
}

.carousel-wrapper {
  overflow: hidden;
  border-radius: 1rem;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-out;
}

.carousel-slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background-color: var(--card);
  border-radius: 1rem;
}

.carousel-slide .slide-image {
  flex: 1;
  display: none;
}

.carousel-slide .slide-image img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  border-radius: 0.75rem;
}

.carousel-slide .slide-content {
  flex: 1;
}

.carousel-slide .slide-content h3 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.carousel-slide .slide-content p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.carousel-slide .slide-content button {
  padding: 0.5rem 1.5rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: 9999px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.carousel-slide .slide-content button:hover {
  background-color: var(--primary-hover);
}

.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary);
  color: var(--primary-foreground);
  border: none;
  padding: 0.75rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s ease;
  z-index: 10;
}

.carousel-nav-btn:hover {
  background-color: var(--primary-hover);
}

.carousel-prev {
  left: -4rem;
}

.carousel-next {
  right: -4rem;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.carousel-indicator {
  height: 0.5rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  background-color: var(--muted);
}

.carousel-indicator.active {
  background-color: var(--primary);
  width: 2rem;
}

.carousel-indicator:not(.active) {
  width: 0.5rem;
}

.carousel-indicator:hover:not(.active) {
  background-color: var(--muted-foreground);
}

/* Venues Styles */
.venues-filters {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.search-container {
  position: relative;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-foreground);
  width: 1.25rem;
  height: 1.25rem;
}

.search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 3rem;
  background-color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--foreground);
  transition: all 0.2s ease;
}

.search-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--primary);
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.category-btn {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-transform: capitalize;
  background-color: var(--muted);
  color: var(--foreground);
}

.category-btn.active {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.category-btn:hover:not(.active) {
  background-color: rgba(191, 191, 191, 0.5);
}

.venues-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.venue-card {
  background-color: var(--card);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.5s ease;
  cursor: pointer;
  opacity: 0;
  transform: translateY(2.5rem);
}

.venue-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.venue-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-0.5rem);
}

.venue-card .venue-image {
  position: relative;
  height: 12rem;
  overflow: hidden;
}

.venue-card .venue-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.venue-card .venue-image .venue-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.venue-card:hover .venue-image .venue-overlay {
  opacity: 1;
}

.venue-card .venue-content {
  padding: 1.5rem;
}

.venue-card .venue-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.venue-card .venue-content .venue-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.venue-card .venue-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.venue-card .venue-capacity {
  font-size: 0.875rem;
  font-weight: 500;
  background-color: var(--muted);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.venue-card .venue-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
}

.venue-card .venue-btn {
  width: 100%;
  padding: 0.5rem 1rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.venue-card .venue-btn:hover {
  background-color: var(--primary-hover);
}

.no-results {
  text-align: center;
  padding: 3rem 0;
}

.no-results p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

/* Catering Styles */
.catering-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.catering-card {
  background-color: var(--card);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.5s ease;
  cursor: pointer;
  opacity: 0;
  transform: translateY(2.5rem);
}

.catering-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.catering-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.catering-card .catering-image {
  height: 10rem;
  overflow: hidden;
}

.catering-card .catering-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.catering-card .catering-content {
  padding: 1rem;
}

.catering-card .catering-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.catering-card .catering-content .catering-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.catering-card .catering-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.catering-card .catering-price {
  font-weight: 700;
  color: var(--primary);
}

.catering-card .catering-view-btn {
  padding: 0.25rem 0.75rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: 9999px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.catering-card .catering-view-btn:hover {
  background-color: var(--primary-hover);
}

/* Team Building Styles */
.programs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.program-card {
  background-color: var(--card);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.5s ease;
  cursor: pointer;
  opacity: 0;
  transform: translateY(2.5rem);
}

.program-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.program-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.program-card .program-image {
  position: relative;
  height: 12rem;
  overflow: hidden;
}

.program-card .program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.program-card .program-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.program-card:hover .program-overlay {
  opacity: 1;
}

.program-card .program-overlay button {
  width: 100%;
  padding: 0.5rem 1rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.program-card .program-overlay button:hover {
  background-color: var(--primary-hover);
}

.program-card .program-content {
  padding: 1.5rem;
}

.program-card .program-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.program-card .program-content .program-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.program-card .program-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}

.program-card .program-meta span {
  font-weight: 500;
}

/* Social Events Styles */
.social-events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.social-event-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  height: 20rem;
  cursor: pointer;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(2.5rem);
}

.social-event-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.social-event-card .event-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.social-event-card:hover .event-background {
  transform: scale(1.1);
}

.social-event-card .event-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4), transparent);
}

.social-event-card .event-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #ffffff;
}

.social-event-card .event-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.social-event-card .event-content .event-description {
  font-size: 0.875rem;
  color: #e5e7eb;
  margin-bottom: 1rem;
}

.social-event-card .event-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.social-event-card .event-highlight {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.social-event-card .event-btn {
  width: 100%;
  padding: 0.5rem 1rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  opacity: 0;
  transform: translateY(1rem);
  transition: all 0.3s ease;
}

.social-event-card:hover .event-btn {
  opacity: 1;
  transform: translateY(0);
}

.social-event-card .event-btn:hover {
  background-color: var(--primary-hover);
}

/* Contact Styles */
.contact-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-info {
  transition: all 1s ease;
  opacity: 0;
  transform: translateY(2.5rem);
}

.contact-info.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-info .contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info .contact-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  width: 3rem;
  border-radius: 0.5rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.contact-info .contact-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-info .contact-item p {
  color: var(--muted-foreground);
}

.contact-info .social-links {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.contact-info .social-links h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-info .social-icons {
  display: flex;
  gap: 1rem;
}

.contact-info .social-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.contact-info .social-icon:hover {
  background-color: rgba(205, 192, 176, 0.9);
}

.contact-form-container {
  transition: all 1s ease;
  opacity: 0;
  transform: translateY(2.5rem);
}

.contact-form-container.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 100ms;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: var(--card);
  padding: 2rem;
  border-radius: 1rem;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.75rem 1rem;
  background-color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--foreground);
  transition: all 0.2s ease;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--primary);
}

.contact-form textarea {
  resize: none;
}

.contact-form .submit-btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.contact-form .submit-btn:hover {
  background-color: var(--primary-hover);
}

.contact-form .form-success {
  padding: 1rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 0.5rem;
  color: var(--success);
  text-align: center;
  font-weight: 500;
  animation: fadeIn 0.3s ease;
}

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

/* Footer Styles */
.footer {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 3rem 1rem;
}

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

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-text {
  font-size: 0.875rem;
  opacity: 0.9;
}

.footer-heading {
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
  font-size: 0.875rem;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 0.8;
}

.footer-contact li {
  font-size: 0.875rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
}

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

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-bottom-links a:hover {
  opacity: 0.8;
}

.powered-by {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0.9;
}

.powered-by-text {
  font-size: 0.875rem;
  color: inherit;
  font-weight: 500;
}

.powered-by-logo {
  height: 140px;
  width: 140px;
  border-radius: 50%;
  object-fit: cover;
  transition: all 0.3s ease;
  border: 2px solid rgba(168, 145, 117, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: var(--card);
  padding: 0.5rem;
}

.dark .powered-by-logo {
  filter: brightness(1.2);
  border-color: rgba(212, 197, 176, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.powered-by:hover .powered-by-logo {
  opacity: 1;
  transform: scale(1.1) rotate(5deg);
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(168, 145, 117, 0.4);
}

.dark .powered-by:hover .powered-by-logo {
  box-shadow: 0 6px 20px rgba(212, 197, 176, 0.5);
}

/* Modal Styles */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  padding-top: 6rem; /* Space for fixed header */
}

.modal.hidden {
  display: none !important;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.modal-content {
  background-color: var(--card);
  border-radius: 1rem;
  max-width: 32rem;
  width: 100%;
  max-height: calc(100vh - 8rem); /* Subtract header and padding space */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
  animation: modalAppear 0.3s ease-out;
  cursor: default;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

@keyframes modalAppear {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-header {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  background-color: var(--card);
  border-radius: 1rem 1rem 0 0;
  z-index: 1;
  flex-shrink: 0;
}

.modal-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

.modal-close {
  padding: 0.5rem;
  background: none;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  color: var(--foreground);
}

.modal-close:hover {
  background-color: var(--muted);
}

.modal-body {
  padding: 1.5rem;
  overflow-y: auto;
  flex: 1;
  overscroll-behavior: contain;
}

.modal-image {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
}

.modal-body > p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.menu-items {
  margin-bottom: 1.5rem;
}

.menu-items h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background-color: var(--muted);
  border-radius: 0.5rem;
}

.menu-item .check {
  color: var(--primary);
  font-weight: 700;
}

.modal-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.modal-price span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.program-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.program-detail {
  padding: 1rem;
  background-color: var(--muted);
  border-radius: 0.5rem;
}

.program-detail .detail-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.program-detail .detail-value {
  font-size: 1.125rem;
  font-weight: 700;
}

.venue-modal-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.venue-modal-detail {
  padding: 1rem;
  background-color: var(--muted);
  border-radius: 0.5rem;
}

.venue-modal-detail .detail-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.venue-modal-detail .detail-value {
  font-size: 1.125rem;
  font-weight: 700;
}

.venue-amenities {
  margin-bottom: 1.5rem;
}

.venue-amenities h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background-color: var(--muted);
  border-radius: 0.5rem;
}

.amenity-item .check {
  color: var(--primary);
  font-weight: 700;
}

.modal-action-btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
}

.modal-action-btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.modal-action-btn:active {
  transform: translateY(0);
}

/* Animation Classes */
.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

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

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

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

/* Responsive Design */

/* Small phones (iPhone SE, etc.) */
@media (max-width: 374px) {
  .nav-container {
    padding: 0 0.75rem;
  }
  
  .logo-image-wrapper {
    width: 42px;
    height: 42px;
  }
  
  .logo-title {
    font-size: 18px;
  }
  
  .logo-subtitle {
    font-size: 5.5px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
}

/* Standard phones (iPhone 12/13/14, etc.) */
@media (min-width: 375px) and (max-width: 639px) {
  .nav-container {
    padding: 0 1rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
}

/* Large phones and small tablets */
@media (min-width: 640px) {
  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .sm\:block {
    display: block;
  }
  
  .hero-buttons {
    flex-direction: row;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .contact-form .form-row {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-bottom-content {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }
  
  .md\:hidden {
    display: none;
  }
  
  .md\:text-5xl {
    font-size: 3rem;
  }
  
  .md\:text-7xl {
    font-size: 4.5rem;
  }
  
  .md\:text-2xl {
    font-size: 1.5rem;
  }
  
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .carousel-slide .slide-image {
    display: block;
  }
  
  .venues-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .catering-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-title {
    font-size: 4.5rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
}

/* iPad and tablets (portrait and landscape) */
@media (min-width: 820px) and (max-width: 899px) {
  .nav-container {
    padding: 0 1.5rem;
  }
  
  .logo-image-wrapper {
    width: 56px;
    height: 56px;
  }
  
  .mobile-menu {
    max-width: 400px;
  }
}

/* Tablets and small laptops - Keep mobile menu */
@media (min-width: 900px) {
  .catering-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .social-events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-container {
    grid-template-columns: 1fr 2fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .carousel-prev {
    left: -5rem;
  }
  
  .carousel-next {
    right: -5rem;
  }
}

/* Navigation Desktop View - Large laptops and up */
@media (min-width: 1300px) {
  .nav-menu-desktop {
    display: flex;
  }
  
  .nav-mobile-actions {
    display: none;
  }
}

@media (min-width: 1024px) {
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  
  .venues-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .catering-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .contact-container {
    grid-template-columns: 1fr 2fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .hero-title {
    font-size: 5rem;
  }
  
  .nav-link {
    padding: 0.75rem 1.25rem;
  }
}

/* Large laptops and desktops */
@media (min-width: 1280px) {
  .nav-container {
    max-width: 1280px;
    margin: 0 auto;
  }
  
  .hero-title {
    font-size: 5.5rem;
  }
  
  .section-title {
    font-size: 3rem;
  }
}

/* Extra large desktops */
@media (min-width: 1536px) {
  .nav-container {
    max-width: 1536px;
  }
  
  .hero-title {
    font-size: 6rem;
  }
}

/* Tablet modal adjustments */
@media (min-width: 641px) and (max-width: 1024px) {
  .modal {
    padding: 1.5rem;
    padding-top: 5.5rem;
  }
  
  .modal-content {
    max-height: calc(100vh - 7rem);
  }
}

/* Mobile modal improvements */
@media (max-width: 640px) {
  body {
    min-height: 100vh;
    min-height: -webkit-fill-available;
  }

  .hero-section {
    padding-top: 5rem;
    min-height: 100vh;
    min-height: -webkit-fill-available;
  }

  .modal {
    padding: 0.5rem;
    padding-top: 5rem; /* Less top padding on mobile */
  }
  
  .modal-content {
    max-width: 100%;
    max-height: calc(100vh - 6rem); /* Adjusted for mobile */
    border-radius: 1rem;
  }
  
  .modal-header {
    padding: 1rem;
    border-radius: 1rem 1rem 0 0;
  }
  
  .modal-header h2 {
    font-size: 1.25rem;
  }
  
  .modal-body {
    padding: 1rem;
  }
  
  .modal-image {
    height: 12rem;
    border-radius: 0.5rem;
  }
  
  .menu-items-grid {
    grid-template-columns: 1fr;
  }
  
  .program-details {
    grid-template-columns: 1fr;
  }
  
  .venue-modal-info {
    grid-template-columns: 1fr;
  }
  
  .amenities-grid {
    grid-template-columns: 1fr;
  }
}

/* Dark mode support (if needed) */
@media (prefers-color-scheme: dark) {
  /* Dark mode variables are already defined in the .dark class above */
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for accessibility */
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Enhanced focus for navigation */
.nav-link:focus-visible,
.mobile-nav-link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  background: var(--muted);
}

.theme-toggle-btn:focus-visible,
.theme-toggle-btn-mobile:focus-visible,
.mobile-menu-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(168, 145, 117, 0.2);
}

.dark .theme-toggle-btn:focus-visible,
.dark .theme-toggle-btn-mobile:focus-visible,
.dark .mobile-menu-btn:focus-visible {
  box-shadow: 0 0 0 4px rgba(212, 197, 176, 0.2);
}

.book-now-btn:focus-visible,
.mobile-book-btn:focus-visible {
  outline: 2px solid var(--primary-foreground);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(168, 145, 117, 0.3);
}

.dark .book-now-btn:focus-visible,
.dark .mobile-book-btn:focus-visible {
  box-shadow: 0 0 0 4px rgba(212, 197, 176, 0.3);
}