:root {
      /* Color palette variables for easy customization */
      --primary-color: #FEA405;    /* Vibrant orange for highlights/CTAs */
      --light-color: #FFFFF0;      /* Soft cream for backgrounds */
      --neutral-color: #DBE4C9;    /* Subtle green-beige for secondary elements */
      --accent-color: #8AA624;     /* Earthy green for accents */
      --dark-text: #333333;        /* Dark gray for main text */
      --light-text: #FFFFFF;       /* White for text on dark backgrounds */
      
      /* Typography variables */
      --body-font: 'Poppins', sans-serif;
      --heading-spacing: 0.02em;
      --transition-speed: 0.3s;
}
body {
      font-family: var(--body-font);
      background-color: var(--light-color);
      color: var(--dark-text);
      margin: 0;
      padding: 0;
      overflow-x: hidden;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}
img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}
/*
==========================================
  back to top button
==========================================
*/
#btn-back-to-top {
    position: fixed;
    bottom: -60px; 
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%; 
    background-color: var(--primary-color);
    box-shadow: var(--accent-color); 
    color: white; 
    border: none; 
    display: flex; 
    justify-content: center;
    align-items: center;
    font-size: 24px; 
    cursor: pointer;
    transition: all 0.4s ease; 
    z-index: 1000; 
    opacity: 0; 
}

    #btn-back-to-top i {
        margin: auto;
    }

    #btn-back-to-top.show {
        bottom: 20px; 
        opacity: 1; 
    }

    #btn-back-to-top.hide {
        bottom: -60px; 
        opacity: 0; 
    }

/*
==========================================
  preloader 
==========================================
*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff; 
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner {
  width: 134px; 
  height: 298px; 
  animation: spin 2s linear infinite;
}

/* Spin animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
    
/*
==========================================
  Navigation Bar 
==========================================
*/
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 2rem;
  transition: all var(--transition-speed) ease;
}

/* Transparent navbar style (for top of page) */
.navbar.transparent {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  box-shadow: none;
}

/* Solid navbar style (after scrolling) */
.navbar.solid {
  background-color: var(--accent-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Brand styling */
.navbar-brand {
  font-weight: 700;
  color: var(--primary-color) !important;
  letter-spacing: var(--heading-spacing);
  font-size: 1.5rem;
}

/* Hamburger menu for mobile */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
  color: var(--light-text);
  background-color: var(--primary-color);
  border-radius: 4px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.15rem var(--primary-color);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Navigation links */
.nav-link {
  color: var(--light-text) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  margin: 0 0.2rem;
  position: relative;
  transition: all var(--transition-speed) ease;
}

/* Interactive underline effect */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transition: transform var(--transition-speed) ease;
}

.nav-link:hover::after,
.nav-link:focus::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: var(--primary-color) !important;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .navbar {
    padding: 0.5rem 1rem; /* Reduced padding for mobile */
    max-height: 15vh; /* Limit navbar height to 15% of viewport height */
  }
  
  .navbar-brand {
    font-size: 1.2rem; /* Smaller brand text */
  }
  
  .navbar-collapse {
    background-color: var(--accent-color);
    padding: 0.5rem; /* Reduced padding */
    border-radius: 0.5rem;
    margin-top: 0.5rem;
    max-height: 85vh; /* Ensure the dropdown doesn't take too much space */
    overflow-y: auto; /* Allow scrolling if many menu items */
  }
  
  .nav-link {
    padding: 0.5rem 0.75rem !important; /* Reduced padding */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem; /* Slightly smaller text */
  }
  
  .nav-link:last-child {
    border-bottom: none;
  }
  
  /* Specific adjustments for landscape mode */
  @media (orientation: landscape) {
    .navbar {
      max-height: 15vh; /* Stricter height limit in landscape mode */
    }
    
    .navbar-collapse {
      max-height: 75vh; /* Shorter dropdown in landscape */
    }
    
    /* Make menu more compact in landscape */
    .nav-link {
      padding: 0.4rem 0.5rem !important;
      margin: 0;
    }
  }
}

/* Accessibility focus styles */
a:focus, button:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* For high contrast mode */
@media (forced-colors: active) {
  .nav-link::after {
    background-color: CanvasText;
  }
}
    
.content {
  padding-top: 70px; /* Reduced from 100px to accommodate smaller header */
  padding-left: 15px;
  padding-right: 15px;
  background: #f4f4f4;
}

/* Ensure content area takes up appropriate space */
@media (max-width: 991.98px) {
  .content {
    min-height: 85vh; /* Content should take at least 85% of viewport height */
  }
}

    
/* 
==========================================
  Hero Carousel Styles
==========================================
*/

/* Carousel Base Styling */
.hero-section {
  position: relative;
  overflow: hidden;
}

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

/* Overlay for better text contrast and visual appeal */
.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Caption Positioning and Styling */
.carousel-caption {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  text-align: left;
  z-index: 2;
  width: 80%; /* Limit width for better readability */
  max-width: 600px;
}

.carousel-caption h1 {
  color: var(--light-text);
  font-family: var(--body-font);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  letter-spacing: var(--heading-spacing);
}

.carousel-caption p {
  color: var(--light-text);
  font-family: var(--body-font);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

/* Social Links Styling */
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--light-text);
  margin-right: 10px;
  transition: all var(--transition-speed) ease-in-out;
}

.social-links a:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
}

.social-links i {
  font-size: 1.25rem;
}

/* Animation Classes */
.animate-left {
  opacity: 0;
  animation: fadeInLeft 1s ease forwards;
}

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

/* Carousel Controls - Improved positioning for mobile */
.carousel-control-prev,
.carousel-control-next {
  width: 10%;
  z-index: 10;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .carousel-caption {
    left: 5%;
    width: 90%;
  }
  
  .carousel-caption h1 {
    font-size: 2rem;
  }
  
  .carousel-caption p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .carousel-caption {
    width: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  
  /* Position controls to not overlap with text on mobile */
  .carousel-control-prev {
    left: 0;
    justify-content: flex-start;
    padding-left: 15px;
  }
  
  .carousel-control-next {
    right: 0;
    justify-content: flex-end;
    padding-right: 15px;
  }
  
  .social-links {
    justify-content: center;
    display: flex;
  }
}

@media (max-width: 576px) {
  .carousel-caption h1 {
    font-size: 1.75rem;
  }
  
  .carousel-item img {
    height: 100vh;
  }
}


/* 
==========================================
  About Section with Chefs showcase
==========================================
*/
/*Chef Section Styles*/
/* Section Typography */
.section-title {
  color: var(--dark-text);
  font-family: var(--body-font);
  font-weight: 700;
  letter-spacing: var(--heading-spacing);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 3px;
}

.section-subtitle {
  color: var(--dark-text);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Chef Cards Styling */
.chef-card {
  text-align: center;
  transition: transform var(--transition-speed) ease-in-out;
  opacity: 0;
  transform: translateY(30px);
}

.chef-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.chef-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto;
  width: 150px;
  height: 150px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-speed) ease;
}

.chef-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
  border-radius: 50%;
  transition: transform var(--transition-speed) ease;
}

.chef-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  border-radius: 50%;
  transition: opacity var(--transition-speed) ease;
}

.chef-image-container:hover .chef-overlay {
  opacity: 1;
}

.chef-image-container:hover .chef-image {
  transform: scale(1.1);
}

.chef-details-btn {
  background-color: var(--primary-color);
  color: var(--light-text);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  transition: all var(--transition-speed) ease;
}

.chef-details-btn:hover {
  background-color: var(--accent-color);
  transform: scale(1.05);
}

.chef-name {
  margin-top: 15px;
  font-weight: 600;
  color: var(--dark-text);
  font-size: 1.1rem;
}

.chef-title {
  color: var(--primary-color);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Fade-Up Animation */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.animated {
  opacity: 1;
  transform: translateY(0);
}


/* Counter Section Styling */
.counter-section {
  background-color: var(--neutral-color);
  padding: 50px 0;
  position: relative;
}

.counter-box {
  background-color: var(--light-color);
  border-radius: 10px;
  padding: 30px 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-speed) ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.counter-box:hover {
  transform: translateY(-10px);
}

.counter-icon {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 15px;
}

.counter-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
  line-height: 1;
}

.counter-label {
  font-size: 1rem;
  color: var(--dark-text);
  font-weight: 500;
}

/* Chef Modal Styling */
.modal-content {
  border: none;
  border-radius: 15px;
  overflow: hidden;
}

.modal-header {
  background-color: var(--primary-color);
  color: var(--light-text);
  border-bottom: none;
}

.chef-modal-image {
  border: 3px solid var(--primary-color);
  max-width: 100%;
  height: auto;
}

.chef-subtitle {
  color: var(--accent-color);
  margin-top: 15px;
  margin-bottom: 8px;
  font-weight: 600;
}

.chef-specialties {
  padding-left: 20px;
  margin-bottom: 15px;
}

.chef-specialties li {
  margin-bottom: 5px;
}

.chef-social-links {
  margin-top: 20px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--neutral-color);
  color: var(--dark-text);
  border-radius: 50%;
  margin-right: 10px;
  transition: all var(--transition-speed) ease;
}

.social-link:hover {
  background-color: var(--primary-color);
  color: var(--light-text);
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .chef-image-container {
    width: 120px;
    height: 120px;
  }
  
  .chef-name {
    font-size: 1rem;
  }
  
  .chef-title {
    font-size: 0.8rem;
  }
  
  .counter-number {
    font-size: 2rem;
  }
  
  .counter-label {
    font-size: 0.9rem;
  }
}

@media (max-width: 575.98px) {
  .chef-image-container {
    width: 100px;
    height: 100px;
  }
  
  .counter-box {
    padding: 20px 10px;
  }
  
  .counter-icon {
    font-size: 1.5rem;
  }
}

/* 
==========================================
  Menu Section
==========================================
*/

 .menu-sectionMenu {
  width: 95%;
  margin: 3rem auto;
  max-width: 1200px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-radius: 18px;
  overflow: hidden;
  background-color: var(--light-text);
  position: relative;
}

.menu-containerMenu {
  display: flex;
  background-color: var(--light-text);
  width: 100%;
  padding: 0;
}

/* Menu Navigation Sidebar */
.nav-boxMenu {
  flex: 1;
  background: linear-gradient(135deg, var(--neutral-color) 0%, var(--light-color) 100%);
  padding: 30px 15px;
  border-right: 2px solid var(--neutral-color);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}

.nav-boxMenu::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10px;
  width: 10px;
  height: 100%;
  background-color: var(--primary-color);
  opacity: 0.4;
}

.nav-boxMenu .titleMenu {
  font-size: 28px;
  margin-bottom: 25px;
  color: var(--dark-text);
  position: relative;
  padding-bottom: 15px;
  text-align: center;
  font-weight: 600;
}

.nav-boxMenu .titleMenu::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 3px;
  width: 60px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.menu-navMenu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-navMenu li {
  cursor: pointer;
  margin-bottom: 20px;
  padding: 12px 15px;
  font-size: 16px;
  color: var(--dark-text);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 10px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.menu-navMenu li span {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, color 0.3s ease;
}

.menu-navMenu li:hover span {
  transform: translateY(-2px);
}

.nav-indicatorMenu {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
  border-radius: 3px;
}

.menu-navMenu li:hover .nav-indicatorMenu {
  width: 100%;
}

.menu-navMenu li.activeMenu {
  background-color: var(--primary-color);
  color: var(--light-text);
  box-shadow: 0 5px 15px rgba(254, 164, 5, 0.3);
  transform: translateY(-2px);
}

.menu-navMenu li.activeMenu .nav-indicatorMenu {
  width: 100%;
  background-color: var(--light-text);
}

/* Menu Content Area */
.content-boxMenu {
  flex: 3;
  background-color: var(--light-text);
  position: relative;
  overflow: hidden;
}

.groupMenu {
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 50px;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.groupMenu.visibleMenu {
  display: flex;
  opacity: 1;
  position: relative;
  animation: slideInMenu 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.groupMenu:nth-child(odd) {
  background-color: rgba(219, 228, 201, 0.1);
}

.menu-image-wrapperMenu {
  flex: 0 0 300px;
  margin-right: 50px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  transform: perspective(1000px) rotateY(0deg);
  transition: transform 0.6s ease;
}

.menu-image-wrapperMenu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(254, 164, 5, 0.4) 0%, rgba(138, 166, 36, 0.1) 100%);
  opacity: 0;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.groupMenu.visibleMenu .menu-image-wrapperMenu::before {
  opacity: 1;
}

.groupMenu.visibleMenu .menu-image-wrapperMenu {
  animation: floatInMenu 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.menu-image-wrapperMenu:hover {
  transform: perspective(1000px) rotateY(5deg);
}

.groupMenu img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.groupMenu img:hover {
  transform: scale(1.05);
}

.group-detailsMenu {
  flex: 1;
  position: relative;
}

.groupMenu.visibleMenu .group-detailsMenu {
  animation: fadeInRightMenu 0.7s 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.group-detailsMenu h3 {
  margin-bottom: 30px;
  font-size: 32px;
  color: var(--dark-text);
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.group-detailsMenu h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.group-detailsMenu:hover h3::after {
  width: 100%;
}

.menu-itemsMenu {
  list-style: none;
  padding: 0;
}

.menu-itemsMenu li {
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--dark-text);
  display: flex;
  align-items: baseline;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(20px);
}

.groupMenu.visibleMenu .menu-itemsMenu li {
  animation: fadeInItemMenu 0.5s forwards;
}

.groupMenu.visibleMenu .menu-itemsMenu li:nth-child(1) { animation-delay: 0.2s; }
.groupMenu.visibleMenu .menu-itemsMenu li:nth-child(2) { animation-delay: 0.3s; }
.groupMenu.visibleMenu .menu-itemsMenu li:nth-child(3) { animation-delay: 0.4s; }
.groupMenu.visibleMenu .menu-itemsMenu li:nth-child(4) { animation-delay: 0.5s; }

.menu-itemsMenu li:hover {
  transform: translateX(5px) !important;
  background-color: rgba(254, 164, 5, 0.05);
  border-radius: 8px;
  padding: 5px 10px;
}

.menu-itemMenu {
  display: flex;
  width: 100%;
  align-items: baseline;
}

.item-nameMenu {
  white-space: normal;
  margin-right: 8px;
  font-weight: 500;
  color: var(--dark-text);
  transition: color 0.3s ease;
}

.menu-itemsMenu li:hover .item-nameMenu {
  color: var(--primary-color);
}

.dotsMenu {
  border-bottom: 1px dotted #ccc;
  flex: 1;
  margin: 0 8px;
  transition: border-color 0.3s ease;
}

.menu-itemsMenu li:hover .dotsMenu {
  border-color: var(--primary-color);
}

.item-priceMenu {
  white-space: nowrap;
  margin-left: 8px;
  font-weight: 600;
  color: var(--accent-color);
  padding: 3px 8px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.menu-itemsMenu li:hover .item-priceMenu {
  background-color: var(--primary-color);
  color: var(--light-text);
  transform: scale(1.1);
}

/* Animation for menu items */
.animate-downMenu {
  animation: fadeInDownMenu 0.8s ease-out forwards;
}

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

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

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

@keyframes floatInMenu {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

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

/* Responsive Styles */
@media (max-width: 992px) {
  .menu-image-wrapperMenu {
    flex: 0 0 250px;
    margin-right: 30px;
  }
  
  .groupMenu img {
    height: 180px;
  }
  
  .group-detailsMenu h3 {
    font-size: 28px;
  }
  
  .menu-itemsMenu li {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .menu-containerMenu {
    flex-direction: column;
  }
  
  .nav-boxMenu {
    border-right: none;
    border-bottom: 2px solid var(--neutral-color);
    padding: 20px 10px;
  }
  
  .menu-navMenu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  
  .menu-navMenu li {
    margin-bottom: 10px;
    flex: 0 0 calc(50% - 10px);
    padding: 10px;
  }
  
  .groupMenu {
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
  }
  
  .menu-image-wrapperMenu {
    flex: 0 0 auto;
    width: 100%;
    max-width: 300px;
    margin-right: 0;
    margin-bottom: 30px;
  }
  
  .group-detailsMenu h3 {
    margin-bottom: 25px;
    font-size: 24px;
    text-align: center;
  }
  
  .group-detailsMenu h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .menu-itemMenu {
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .item-nameMenu {
    margin-bottom: 5px;
    text-align: center;
  }
  
  .dotsMenu {
    display: none;
  }
  
  .item-priceMenu {
    background-color: rgba(254, 164, 5, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    margin-top: 5px;
  }
  
  .menu-itemsMenu li {
    margin-bottom: 20px;
    padding: 10px;
    border-bottom: 1px dashed var(--neutral-color);
    border-radius: 8px;
    background-color: rgba(219, 228, 201, 0.1);
  }
  
  .menu-itemsMenu li:last-child {
    border-bottom: none;
  }
  
  /* Special card-like layout for mobile */
  .menu-itemsMenu {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
  }
  
  .menu-itemsMenu li {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--light-color);
    border: 1px solid var(--neutral-color);
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s ease;
    margin-bottom: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }
  
  .menu-itemsMenu li:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
}

@media (max-width: 480px) {
  .menu-itemsMenu {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
  
  .menu-navMenu li {
    flex: 0 0 100%;
  }
  
  .group-detailsMenu h3 {
    font-size: 22px;
  }
  
  .item-nameMenu {
    font-size: 14px;
  }
  
  .item-priceMenu {
    font-size: 14px;
  }
}

/* 
==========================================
  Gallery Section
==========================================
*/

/* Gallery Container */
.gallery-section {
  padding: 4rem 0;
  background-color: var(--neutral-color);
}

.gallery-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-color);
}

/* Gallery Grid Layout */
.album-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  gap: 15px;
  height: 700px;
  width: 100%;
  margin: 0 auto;
}

/* Gallery Items General Styling */
.grid-item {
  background-color: var(--light-color);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

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

/* Overlay with Zoom Button */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.btn-view {
  background-color: var(--light-color);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-view i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.btn-view:hover {
  background-color: var(--light-color);
  transform: scale(1.1);
}

/* Grid Item Positions */
.item-1 {
  grid-column: 1 / 4;
  grid-row: 1 / 13;
}

.item-2 {
  grid-column: 4 / 7;
  grid-row: 1 / 5;
}

.item-3 {
  grid-column: 7 / 13;
  grid-row: 1 / 5;
}

.item-4 {
  grid-column: 4 / 10;
  grid-row: 5 / 9;
}

.item-5 {
  grid-column: 10 / 13;
  grid-row: 5 / 9;
}

.item-6 {
  grid-column: 4 / 6;
  grid-row: 9 / 13;
}

.item-7 {
  grid-column: 6 / 9;
  grid-row: 9 / 13;
}

.item-8 {
  grid-column: 9 / 13;
  grid-row: 9 / 13;
}



@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);
  }
}

/* See More Button */
#seeMoreBtn {
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
}

#seeMoreBtn:hover {
  background-color: var(--primary-color, #212529);
  color: #ffffff;
}

#seeMoreBtn i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

#seeMoreBtn.expanded i {
  transform: rotate(180deg);
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1050;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.lightbox-content {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lightbox-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.lightbox-image-container {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

#lightboxImage {
  max-height: 90%;
  max-width: 90%;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1060;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.nav-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1060;
  margin: 0 15px;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

.image-counter {
  text-align: center;
  color: white;
  font-size: 1rem;
  margin-top: 1rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .album-grid {
    height: 600px;
  }
}

@media (max-width: 768px) {
  .album-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto;
    height: auto;
    gap: 10px;
  }
  
  .grid-item {
    height: 200px;
  }
  
  /* Showing only first 3 items on mobile initially */
  .mobile-hidden {
    display: none;
  }
  
  .mobile-hidden.show {
    display: block;
  }
  
  /* Mobile grid layout */
  .item-1 {
    grid-column: 1 / 7;
    grid-row: auto;
  }
  
  .item-2 {
    grid-column: 1 / 3;
    grid-row: auto;
  }
  
  .item-3 {
    grid-column: 3 / 7;
    grid-row: auto;
  }
  
  .item-4 {
    grid-column: 1 / 5;
    grid-row: auto;
  }
  
  .item-5 {
    grid-column: 5 / 7;
    grid-row: auto;
  }
  
  .item-6 {
    grid-column: 1 / 3;
    grid-row: auto;
  }
  
  .item-7 {
    grid-column: 3 / 5;
    grid-row: auto;
  }
  
  .item-8 {
    grid-column: 5 / 7;
    grid-row: auto;
  }
  
  /* Show See More button */
  #seeMoreBtn {
    display: inline-block !important;
  }
  
  /* Lightbox adjustments */
  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .gallery-title {
    font-size: 2rem;
  }
  
  .grid-item {
    height: 180px;
  }
  
  .item-1, .item-2, .item-3,
  .item-4, .item-5, .item-6,
  .item-7, .item-8 {
    grid-column: 1 / 7;
  }
  
  .lightbox-content {
    height: 70vh;
  }
}


/* 
==========================================
  Benefits Section
==========================================
*/

.benefits-section {
    padding: 5rem 0;
    width: 80%;
    margin: 0 auto;
}

.benefit-card {
    perspective: 1000px;
    height: 400px;
    margin-bottom: 30px;
    cursor: pointer;
}

.benefit-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.benefit-card.flipped .benefit-card-inner {
    transform: rotateY(180deg);
}

.benefit-card-front,
.benefit-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
    pointer-events: auto;
}

.benefit-card-front {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    color: var(--light-text);
    background-position: center;
    background-size: cover;
    text-align: center;
}

.benefit-card-front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.benefit-card-front .content-rotate {
    position: relative;
    padding: 2rem;
    z-index: 2;
}

.benefit-card-back {
    background-color: var(--neutral-color);
    transform: rotateY(180deg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
}

.benefit-btn {
    background-color: var(--primary-color);
    color: var(--light-text);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color var(--transition-speed);
    margin: 0 auto;
}

.benefit-btn:hover {
    background-color: #e89400;
    color: var(--light-text);
}

.back-btn {
    background-color: transparent;
    color: var(--dark-text);
    border: 1px solid var(--dark-text);
    margin-top: auto;
    align-self: center;
}

.back-btn:hover {
    background-color: var(--dark-text);
    color: var(--light-text);
}

@media (max-width: 768px) {
    .benefit-card {
        height: 350px;
    }
}


/* 
==========================================
  Reservation Section
==========================================
*/


.reservation-section {
  --form-border-radius: 16px;
  --form-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --input-height: 48px;
  padding: 4rem 0;
  background-color: var(--light-color);
}

/* Form and Image Container Layout */
.form-image-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  margin: 2rem auto;
}

/* Form Container Styling */
.form-container {
  flex: 1;
  max-width: 600px;
  background-color: var(--light-text);
  padding: 2.5rem;
  border-radius: var(--form-border-radius);
  box-shadow: var(--form-shadow);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.form-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Form Typography */
.form-container .section-title {
  color: var(--dark-text);
  margin-bottom: 1rem;
  font-weight: 600;
}

.form-container .section-description {
  color: var(--dark-text);
  opacity: 0.8;
  margin-bottom: 2rem;
}

/* Form Input Styling */
.form-control, .form-select {
  height: var(--input-height);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  transition: all var(--transition-speed);
  font-family: var(--body-font);
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(254, 164, 5, 0.25);
}

.input-group-text {
  background-color: var(--neutral-color);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--dark-text);
}

/* Custom Select Styling */
.custom-select-wrapper {
  position: relative;
}

.custom-select-wrapper::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--primary-color);
  pointer-events: none;
}

.form-select {
  appearance: none;
  padding-right: 2rem;
  background-color: var(--light-text);
  cursor: pointer;
}

/* Number Input Styling */
#numPersons {
  text-align: center;
}

.input-group button {
  color: var(--dark-text);
  border-color: rgba(0, 0, 0, 0.1);
}

.input-group button:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--light-text);
}

/* Error Message Styling */
.error-message {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: none;
  transition: opacity var(--transition-speed);
}

.form-control.invalid, .form-select.invalid {
  border-color: #dc3545;
}

.form-group:has(.form-control.invalid) .error-message,
.form-group:has(.form-select.invalid) .error-message,
.form-group:has(.input-group .invalid) .error-message {
  display: block;
}

.form-control.valid {
  border-color: #198754;
}

/* Image Container Styling */
.image-container {
  flex: 1;
  max-width: 600px;
  position: relative;
  overflow: hidden;
  border-radius: var(--form-border-radius);
  box-shadow: var(--form-shadow);
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--form-border-radius);
  transition: transform var(--transition-speed);
}

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

/* Image Overlay */
.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: var(--light-text);
  opacity: 0;
  transition: opacity var(--transition-speed);
}

.image-container:hover .image-overlay {
  opacity: 1;
}

.overlay-content h3 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.overlay-content p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Submit Button Styling */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--light-text);
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all var(--transition-speed);
}

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(254, 164, 5, 0.3);
}

/* Animation Classes */
.animate-down {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
  .form-image-container {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .form-image-container {
    flex-direction: column;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .form-container,
  .image-container {
    max-width: 100%;
    width: 100%;
  }
  
  .image-container {
    height: 300px;
    margin-top: 2rem;
  }
  
  .image-overlay {
    opacity: 1;
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .form-container {
    padding: 1.5rem;
  }
  
  .btn-primary {
    width: 100%;
  }
}


/* 
==========================================
  Map Section
==========================================
*/

/* Main section styling */
.map-section {
  background-color: var(--light-color);
  position: relative;
}

/* Section title styling */
.map-section .section-title {
  font-family: var(--body-font);
  color: var(--dark-text);
  letter-spacing: var(--heading-spacing);
  position: relative;
  margin-bottom: 2rem;
}

.map-section .section-title .highlight {
  color: var(--primary-color);
  font-weight: 700;
}

/* Location details styling */
.location-details {
  margin-bottom: 1.5rem;
}

.location-details p {
  margin-bottom: 0.5rem;
  color: var(--dark-text);
  font-size: 1.1rem;
}

.location-details i {
  color: var(--accent-color);
  margin-right: 8px;
}

/* Map container styling */
.map-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 2rem;
  border: 2px solid var(--neutral-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: box-shadow var(--transition-speed) ease;
  height: 400px; /* Fixed height for consistency */
}

.map-container:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

/* Loading indicator styling */
.map-loading-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 1;
}

/* Iframe styling */
.map-frame {
  width: 100%;
  height: 100%;
  border: 0;
  position: relative;
  z-index: 0;
}

/* Call-to-action styling */
.map-cta {
  margin-top: 1.5rem;
}

.highlight-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 1rem;
  background-color: var(--primary-color);
  color: var(--dark-text);
}

.map-cta .btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transition: all var(--transition-speed) ease;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
}

.map-cta .btn-primary:hover,
.map-cta .btn-primary:focus {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .map-section{
    margin: 0 auto;
  }
  .map-container {
    height: 300px;
  }
  
  .location-details p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .map-section{
    margin: 0 auto;
  }
  .map-container {
    height: 250px;
    margin: 0 auto;
    width: calc(100% + 30px);
    border-radius: 0;
  }
  
  .highlight-label {
    font-size: 1.1rem;
  }
}



/* 
==========================================
  Footer Section
==========================================
*/


/* Footer Styles */
.site-footer {
    background-color: var(--dark-text);
    color: var(--light-text);
    font-family: var(--body-font);
    position: relative;
}

/* Add a subtle pattern overlay */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.site-footer h3 {
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: var(--heading-spacing);
}

.site-footer h4 {
    color: var(--light-text);
    font-weight: 500;
    font-size: 1.2rem;
    letter-spacing: var(--heading-spacing);
    position: relative;
    padding-bottom: 0.5rem;
}

.site-footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

/* Lists styling */
.footer-hours, .footer-links {
    list-style: none;
}

.footer-hours li {
    color: var(--light-text);
}

.special-hours {
    color: var(--primary-color);
    font-weight: 500;
}

/* Links styling */
.footer-link, .small-link {
    color: var(--light-text);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
    display: inline-block;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

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

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

.small-link {
    font-size: 0.85rem;
    opacity: 0.8;
}

.small-link:hover {
    color: var(--primary-color);
    opacity: 1;
}

/* Social icons */
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    transition: all var(--transition-speed) ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--dark-text);
    transform: translateY(-3px);
}

/* Newsletter form */
.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--light-text);
    padding: 0.6rem 1rem;
    border-radius: 4px 0 0 4px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: none;
}

.btn-subscribe {
    background-color: var(--primary-color);
    color: var(--dark-text);
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 0 4px 4px 0;
    transition: background-color var(--transition-speed) ease;
}

.btn-subscribe:hover {
    background-color: #ff9100;
}

.form-check-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Divider */
.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

/* Copyright and legal links */
.copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.legal-links {
    list-style: none;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .legal-links {
        justify-content: flex-start !important;
    }
}
