/* ===================================
   CSS Root Variables
   =================================== */
:root {
  --primary: #2F5E2C;
  --secondary: #8BC53F;
  --main: #F5B113;
  --tertiary: #F5A391;
  --muted: #808097;
  --annotation: #D1121F;
  --white: #FFFFFF;
  --font-tertiary: #4A2E2A;
  --body-bg: #FAFAFA;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--body-bg);
  color: var(--font-tertiary);
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

/* ===================================
   Animation Styles
   =================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

/* Initial state for animated elements */
.animate-fade-in-up,
.animate-fade-in-right,
.animate-fade-in {
  opacity: 0;
}

/* Animation on page load */
.animate-on-load .animate-fade-in-up {
  animation: fadeInUp 1s ease-out 0.2s forwards;
}

.animate-on-load .animate-fade-in-right {
  animation: fadeInRight 1s ease-out 0.4s forwards;
}

/* Animation on scroll */
.animate-on-scroll {
  opacity: 1;
}

.animate-on-scroll.in-view .animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.animate-on-scroll.in-view .animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Subtle parallax effect on scroll */
.hero-image img {
  transition: transform 0.3s ease-out;
}

/* ===================================
   Navbar Styles
   =================================== */
.navbar {
  padding: 1.5rem 0;
  transition: all 0.4s ease;
  background-color: var(--main) !important;
}

.navbar.scrolled {
  background-color: var(--font-tertiary) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

/* Navbar scrolled state - switch to dark theme */
.navbar.scrolled.navbar-light {
  --bs-navbar-color: var(--white);
  --bs-navbar-hover-color: var(--main);
  --bs-navbar-active-color: var(--main);
}

.navbar.scrolled .navbar-toggler-icon {
  filter: invert(1);
}

.navbar.scrolled .navbar-toggler[aria-expanded="false"] .navbar-toggler-icon {
  filter: invert(1);
}

/* Custom nav link spacing */
.navbar-nav .nav-link {
  margin: 0 0.75rem;
  font-weight: 600;
}

/* Book Table Button Styling */
.btn-book-table {
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  background-color: var(--secondary) !important;
  border-color: var(--secondary) !important;
  color: var(--primary) !important;
  min-height: 44px;
  font-size: 0.85rem;
}

@media (min-width: 992px) {
  .btn-book-table {
    padding: 0.6rem 1.8rem;
    min-height: 50px;
    font-size: 1rem;
    display: inline-block;
  }
}

.btn-book-table:hover {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.navbar.scrolled .btn-book-table {
  background-color: var(--main) !important;
  border-color: var(--main) !important;
  color: var(--font-tertiary) !important; 
}

.navbar.scrolled .btn-book-table:hover {
  background-color: var(--secondary) !important;
  border-color: var(--secondary) !important;
  color: var(--primary) !important;
}

.navbar-toggler {
  border: none;
  position: relative;
  z-index: 1050;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler-icon {
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
}

/* Hamburger to X animation */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-image: none !important;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  left: 0;
  top: 50%;
  transition: transform 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler:focus .navbar-toggler-icon,
.navbar-toggler:active .navbar-toggler-icon,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

.navbar-toggler[aria-expanded="false"] .navbar-toggler-icon {
  filter: none;
}

/* Mobile Fullscreen Menu Styles */
@media (max-width: 991px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--font-tertiary);
    z-index: 1040;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-out, 
                visibility 0.2s ease-out;
  }
  
  .navbar-collapse.show {
    opacity: 1;
    visibility: visible;
  }
  
  .navbar-collapse.collapsing {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease-in, 
                visibility 0.15s ease-in;
    height: auto !important;
  }
  
  .navbar.scrolled .navbar-collapse {
    background-color: var(--font-tertiary);
  }
  
  .navbar-nav {
    text-align: center;
    width: 100%;
    padding: 0;
  }
  
  .navbar-nav .nav-item {
    margin: 1rem 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.25s ease-out, transform 0.25s ease-out;
  }
  
  .navbar-collapse.show .nav-item {
    opacity: 1;
    transform: translateY(0);
  }
  
  .navbar-collapse.show .nav-item:nth-child(1) {
    transition-delay: 0.02s;
  }
  
  .navbar-collapse.show .nav-item:nth-child(2) {
    transition-delay: 0.04s;
  }
  
  .navbar-collapse.show .nav-item:nth-child(3) {
    transition-delay: 0.06s;
  }
  
  .navbar-collapse.show .nav-item:nth-child(4) {
    transition-delay: 0.08s;
  }
  
  .navbar-nav .nav-link {
    font-size: 1.5rem;
    padding: 1rem 2rem;
    border-radius: 10px;
    display: inline-block;
    transition: all 0.2s ease-in-out;
    color: var(--white);
  }
  
  .navbar-nav .nav-link:hover {
    background-color: rgba(245, 177, 19, 0.2);
    transform: scale(1.05);
    color: var(--main);
  }
  
  .navbar.scrolled .navbar-nav .nav-link {
    color: var(--white);
  }
  
  .navbar.scrolled .navbar-nav .nav-link:hover {
    background-color: rgba(245, 177, 19, 0.2);
    color: var(--main);
  }
  
  .btn-book-table {
    margin-top: 1.5rem;
    padding: 1rem 3rem;
    font-size: 1.3rem;
    display: inline-block;
    width: auto;
    min-width: 250px;
    background-color: var(--main);
    color: var(--font-tertiary);
  }
  
  .btn-book-table:hover {
    background-color: var(--secondary);
    color: var(--primary);
  }
  
  /* Prevent body scroll when menu is open */
  body.menu-open {
    overflow: hidden;
  }
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
  background-color: var(--main);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 140px;
  padding-bottom: 60px;
}

.hero-content {
  padding-right: 2rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--font-tertiary);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.hero-title .highlight {
  color: var(--annotation);
}

.hero-subtitle {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--font-tertiary);
  margin-bottom: 0.3rem;
}

.hero-location {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--font-tertiary);
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--font-tertiary);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-buttons-mobile {
  margin-top: 1rem;
}

.hero-buttons-mobile .btn {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-menu {
  background-color: var(--annotation);
  color: var(--white);
  padding: 0.8rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--annotation);
}

.btn-menu:hover {
  background-color: transparent;
  color: var(--annotation);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-feedback {
  background-color: var(--white);
  color: var(--primary);
  padding: 0.8rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--white);
}

.btn-feedback:hover {
  background-color: transparent;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-image {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===================================
   Menu Section with Oval Transition
   =================================== */
.menu-section {
  position: relative;
  padding: 0 0 100px;
  background-color: var(--body-bg);
  margin-top: 0;
}

.oval-background {
  position: relative;
  width: 100%;
  height: 450px;
  background-color: var(--main);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
}

.menu-header {
  position: relative;
  z-index: 5;
  margin-bottom: 0;
  text-align: center;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--font-tertiary);
}

.menu-highlight {
  color: var(--primary);
}

.section-subtitle {
  font-size: 1.3rem;
  color: var(--font-tertiary);
  font-weight: 500;
}

/* Menu Carousel */
.menu-carousel-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
  padding-bottom: 20px;
}

.menu-carousel {
  position: relative;
  width: 100%;
  max-width: 1400px;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.menu-item {
  position: absolute;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, left 0.8s ease-out, bottom 0.8s ease-out;
  cursor: pointer;
  pointer-events: auto;
}

.menu-item img {
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.8s ease-out;
  border: 5px solid rgba(255, 255, 255, 0.3);
}

/* VISIBLE DISHES (Bottom half of oval) */

/* Position 0 - Center (Active) - Bottom center */
.menu-item[data-position="0"] {
  z-index: 10;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) scale(1);
  opacity: 1;
  filter: grayscale(0%);
}

.menu-item[data-position="0"] img {
  width: 220px;
  height: 220px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border-width: 6px;
}

/* Position 1 - Right side */
.menu-item[data-position="1"] {
  z-index: 8;
  left: 73%;
  bottom: 100px;
  transform: translateX(-50%) scale(0.75);
  opacity: 0.85;
  filter: grayscale(10%);
}

.menu-item[data-position="1"] img {
  width: 170px;
  height: 170px;
}

/* Position 2 - Far right */
.menu-item[data-position="2"] {
  z-index: 6;
  left: 92%;
  bottom: 180px;
  transform: translateX(-50%) scale(0.6);
  opacity: 0.65;
  filter: grayscale(20%);
}

.menu-item[data-position="2"] img {
  width: 140px;
  height: 140px;
}

/* Position -1 - Left side */
.menu-item[data-position="-1"] {
  z-index: 8;
  left: 27%;
  bottom: 100px;
  transform: translateX(-50%) scale(0.75);
  opacity: 0.85;
  filter: grayscale(10%);
}

.menu-item[data-position="-1"] img {
  width: 170px;
  height: 170px;
}

/* Position -2 - Far left */
.menu-item[data-position="-2"] {
  z-index: 6;
  left: 8%;
  bottom: 180px;
  transform: translateX(-50%) scale(0.6);
  opacity: 0.65;
  filter: grayscale(20%);
}

.menu-item[data-position="-2"] img {
  width: 140px;
  height: 140px;
}

/* Position 3 - Farthest right (fading out along oval path) */
.menu-item[data-position="3"] {
  z-index: 4;
  left: 98%;
  bottom: 280px;
  transform: translateX(-50%) scale(0.45);
  opacity: 0;
  filter: grayscale(40%);
  pointer-events: none;
}

.menu-item[data-position="3"] img {
  width: 100px;
  height: 100px;
}

/* Position -3 - Farthest left (fading out along oval path) */
.menu-item[data-position="-3"] {
  z-index: 4;
  left: 2%;
  bottom: 280px;
  transform: translateX(-50%) scale(0.45);
  opacity: 0;
  filter: grayscale(40%);
  pointer-events: none;
}

.menu-item[data-position="-3"] img {
  width: 100px;
  height: 100px;
}

/* Hidden positions (out of range) */
.menu-item[data-position="4"],
.menu-item[data-position="-4"],
.menu-item[data-position="5"],
.menu-item[data-position="-5"],
.menu-item[data-position="6"],
.menu-item[data-position="-6"] {
  z-index: -1;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) scale(0.3);
  opacity: 0;
  pointer-events: none;
}

.menu-item[data-position="3"] img,
.menu-item[data-position="-3"] img,
.menu-item[data-position="4"] img,
.menu-item[data-position="-4"] img,
.menu-item[data-position="5"] img,
.menu-item[data-position="-5"] img,
.menu-item[data-position="6"] img,
.menu-item[data-position="-6"] img {
  width: 80px;
  height: 80px;
}

.carousel-nav {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 20;
  bottom: 110px;
  pointer-events: auto;
}

.carousel-nav:hover {
  background-color: var(--secondary);
  color: var(--primary);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.carousel-nav.prev {
  left: calc(50% - 180px);
}

.carousel-nav.next {
  right: calc(50% - 180px);
}

.carousel-nav i {
  font-size: 1.5rem;
}

/* Menu Detail Area */
.menu-detail {
  background-color: transparent;
  border-radius: 30px;
  padding: 3rem;
  margin-top: 4rem;
  color: var(--font-tertiary);
}

.dish-name {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}

.dish-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
  margin: 0;
}

.dish-price.d-lg-none {
  margin: 0 0 1rem 0;
}

.dish-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--font-tertiary);
}

.dish-actions .btn {
  min-height: 44px;
}

@media (min-width: 992px) {
  .dish-actions .btn {
    min-height: 50px;
  }
  
  .dish-name {
    margin-bottom: 0.5rem;
  }
}

.btn-feedback-alt {
  background-color: var(--primary);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  font-size: 0.9rem;
}

@media (min-width: 992px) {
  .btn-feedback-alt {
    padding: 0.6rem 1.8rem;
    min-height: 50px;
    font-size: 1rem;
  }
}

.btn-feedback-alt:hover {
  background-color: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
}

.dish-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
  margin: 0;
}

/* ===================================
   Feedback Section
   =================================== */
.feedback-section {
  background-color: var(--body-bg);
  padding: 100px 0;
  color: var(--font-tertiary);
}

.section-title-light {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
}

.section-subtitle-light {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.feedback-carousel-wrapper {
  margin-top: 4rem;
  position: relative;
  padding: 0 80px;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  touch-action: pan-y;
}

.feedback-carousel {
  position: relative;
  overflow: hidden;
  min-height: 350px;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

.feedback-carousel-track {
  display: flex;
  transition: transform 0.6s ease;
  gap: 2rem;
}

.feedback-card {
  background-color: var(--tertiary);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  width: calc((100% - 4rem) / 3);
  flex-shrink: 0;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

/* Mobile: 1 card */
@media (max-width: 767px) {
  .feedback-card {
    width: 100%;
    padding: 2rem 1.5rem;
    min-height: 300px;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  }
  
  .feedback-carousel-wrapper {
    padding: 0 55px;
  }
  
  .feedback-text {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1.8rem;
  }
  
  .feedback-name {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
  }
  
  .feedback-position {
    font-size: 0.95rem;
  }
  
  .feedback-nav {
    width: 42px;
    height: 42px;
  }
  
  .feedback-nav i {
    font-size: 1.4rem;
  }
  
  .section-title-light {
    font-size: 2.2rem;
  }
  
  .section-subtitle-light {
    font-size: 1.05rem;
    line-height: 1.6;
  }
}

/* Tablet: 2 cards */
@media (min-width: 768px) and (max-width: 991px) {
  .feedback-card {
    width: calc((100% - 2rem) / 2);
  }
}

.feedback-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Feedback Navigation Arrows */
.feedback-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.feedback-nav:hover {
  background-color: var(--secondary);
  color: var(--primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feedback-nav.prev {
  left: 0;
}

.feedback-nav.next {
  right: 0;
}

.feedback-nav i {
  font-size: 1.5rem;
}

.feedback-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--font-tertiary);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.feedback-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--font-tertiary);
  margin-bottom: 0.3rem;
}

.feedback-position {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

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

.feedback-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(139, 197, 63, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feedback-dot.active {
  background-color: var(--secondary);
  transform: scale(1.2);
  border-color: var(--secondary);
}

@media (max-width: 991px) {
  .feedback-dots {
    margin-top: 1.5rem;
  }
  
  .feedback-dot {
    width: 10px;
    height: 10px;
  }
}



/* ===================================
   Book a Table Section
   =================================== */
.book-section {
  background-color: var(--main);
  padding: 100px 0;
}

.section-title-dark {
  font-size: 3rem;
  font-weight: 700;
  color: var(--font-tertiary);
}

.section-subtitle-dark {
  font-size: 1.1rem;
  color: var(--font-tertiary);
}

.booking-form-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: 30px;
  padding: 3rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.booking-form-right {
  min-height: 280px;
}

.booking-form-right textarea {
  resize: vertical;
  min-height: 210px;
}

.form-label {
  font-weight: 600;
  color: var(--font-tertiary);
  margin-bottom: 0.5rem;
}

.form-control {
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(47, 94, 44, 0.1);
}

.btn-submit {
  background-color: var(--secondary);
  color: var(--primary);
  padding: 0.8rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ===================================
   Footer Section
   =================================== */
.footer-section {
  background-color: var(--primary);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-logo {
  margin-bottom: 1rem;
}

.logo-text-white {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: bold;
}

.footer-description {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-contact p {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
  color: var(--secondary);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

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

.footer-divider {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 2rem 0;
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
  margin: 0.3rem 0;
}

/* ===================================
   Responsive Design
   =================================== */

/* Extra small devices (landscape phones) */
@media (max-width: 480px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .hero-section {
    padding-top: 140px;
  }
  
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.15;
  }
  
  .hero-subtitle {
    font-size: 1.4rem;
  }
  
  .hero-location {
    font-size: 1.15rem;
  }
  
  .hero-description {
    font-size: 0.93rem;
    line-height: 1.6;
  }
  
  .btn-menu, .btn-feedback {
    padding: 0.85rem 1.5rem;
    font-size: 0.98rem;
  }
  
  .oval-background {
    height: 310px;
    padding-top: 20px;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .menu-item[data-position="0"] img {
    width: 145px;
    height: 145px;
  }
  
  .menu-item[data-position="1"] img,
  .menu-item[data-position="-1"] img {
    width: 105px;
    height: 105px;
  }
  
  .menu-item[data-position="0"] {
    bottom: 15px;
  }
  
  .menu-item[data-position="1"],
  .menu-item[data-position="-1"] {
    bottom: 85px;
  }
  
  .carousel-nav {
    width: 38px;
    height: 38px;
    bottom: 90px;
  }
  
  .carousel-nav i {
    font-size: 1.2rem;
  }
  
  .menu-detail {
    padding: 1.3rem 0.9rem;
  }
  
  .section-title-light, .section-title-dark {
    font-size: 1.7rem;
  }
  
  .section-subtitle-light, .section-subtitle-dark {
    font-size: 0.98rem;
  }
  
  .feedback-card {
    padding: 1.6rem 1.2rem;
    min-height: 270px;
    border-radius: 18px;
  }
  
  .feedback-text {
    font-size: 0.98rem;
    line-height: 1.7;
  }
  
  .feedback-name {
    font-size: 1.1rem;
  }
  
  .feedback-carousel-wrapper {
    padding: 0 48px;
  }
  
  .feedback-nav {
    width: 38px;
    height: 38px;
  }
  
  .feedback-nav i {
    font-size: 1.2rem;
  }
  
  .dish-name {
    font-size: 1.5rem;
  }
  
  .dish-description {
    font-size: 0.93rem;
    line-height: 1.65;
  }
  
  .dish-price {
    font-size: 1.9rem;
  }
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 2rem;
  }
  
  .hero-location {
    font-size: 1.5rem;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }
  
  .section-title, .section-title-light, .section-title-dark {
    font-size: 2.5rem;
  }
  
  /* Improve section padding on tablets */
  .feedback-section,
  .book-section {
    padding: 60px 0;
  }
  
  .oval-background {
    height: 380px;
  }
  
  .menu-carousel-wrapper {
    height: 380px;
  }
  
  .menu-item[data-position="0"] img {
    width: 180px;
    height: 180px;
  }
  
  .menu-item[data-position="1"] img,
  .menu-item[data-position="-1"] img {
    width: 140px;
    height: 140px;
  }
  
  .menu-item[data-position="2"] img,
  .menu-item[data-position="-2"] img {
    width: 110px;
    height: 110px;
  }
  
  .menu-item[data-position="1"] {
    left: 65%;
  }
  
  .menu-item[data-position="-1"] {
    left: 35%;
  }
  
  .menu-item[data-position="2"] {
    left: 82%;
  }
  
  .menu-item[data-position="-2"] {
    left: 18%;
  }
  
  .menu-item[data-position="1"],
  .menu-item[data-position="-1"] {
    bottom: 80px;
  }
  
  .menu-item[data-position="2"],
  .menu-item[data-position="-2"] {
    bottom: 150px;
  }
  
  .carousel-nav.prev {
    left: 2%;
  }
  
  .carousel-nav.next {
    right: 2%;
  }
  
  .carousel-nav {
    bottom: 90px;
  }
  
  .menu-detail {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 140px;
    padding-bottom: 30px;
    min-height: auto;
  }
  
  .hero-content {
    text-align: center;
    margin-bottom: 2.5rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 0.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  
  .hero-location {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  
  .hero-description {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
  }
  
  .btn-menu, .btn-feedback {
    text-align: center;
    padding: 1rem 2rem;
    min-height: 48px;
    font-size: 1.05rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  }
  
  .hero-image {
    border-radius: 20px;
    margin: 0 auto;
    max-width: 90%;
  }
  
  /* Improve section spacing */
  .feedback-section,
  .book-section {
    padding: 50px 0;
  }
  
  .menu-section {
    padding: 0 0 50px;
  }
  
  /* Better carousel navigation on mobile */
  .carousel-nav,
  .feedback-nav {
    width: 44px;
    height: 44px;
  }
  
  .carousel-nav i,
  .feedback-nav i {
    font-size: 1.3rem;
  }
  
  .oval-background {
    height: 320px;
    padding-top: 25px;
  }
  
  .menu-header {
    margin-bottom: 20px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .menu-carousel-wrapper {
    height: 320px;
  }
  
  /* Mobile: Show only center and adjacent items */
  .menu-item[data-position="2"],
  .menu-item[data-position="-2"] {
    opacity: 0 !important;
    pointer-events: none;
  }
  
  .menu-item[data-position="0"] img {
    width: 170px;
    height: 170px;
    border-width: 4px;
  }
  
  .menu-item[data-position="1"] img,
  .menu-item[data-position="-1"] img {
    width: 130px;
    height: 130px;
  }
  
  .menu-item[data-position="0"] {
    bottom: 20px;
  }
  
  .menu-item[data-position="1"] {
    left: 70%;
    bottom: 90px;
  }
  
  .menu-item[data-position="-1"] {
    left: 30%;
    bottom: 90px;
  }
  
  .carousel-nav {
    width: 42px;
    height: 42px;
    bottom: 95px;
  }
  
  .carousel-nav.prev {
    left: 8%;
  }
  
  .carousel-nav.next {
    right: 8%;
  }
  
  .carousel-nav i {
    font-size: 1.4rem;
  }
  
  .menu-detail {
    margin-top: 2.5rem;
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }
  
  .dish-name {
    font-size: 1.7rem;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .dish-description {
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .dish-price {
    font-size: 2.2rem;
  }
  
  .booking-form-wrapper {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding-top: 140px;
    padding-bottom: 20px;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 0.6rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .hero-location {
    font-size: 1.2rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.2rem;
  }
  
  .hero-buttons {
    gap: 0.7rem;
  }
  
  .btn-menu, .btn-feedback {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
  }
  
  .hero-image {
    border-radius: 15px;
    max-width: 100%;
  }
  
  .section-title, .section-title-light, .section-title-dark {
    font-size: 1.9rem;
    margin-bottom: 0.8rem;
  }
  
  .section-subtitle,
  .section-subtitle-light,
  .section-subtitle-dark {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .navbar-nav .nav-link {
    margin: 0.5rem 0;
    font-size: 1.05rem;
  }
  
  .btn-book-table {
    margin-top: 1rem;
    display: block;
    text-align: center;
    min-height: 48px;
  }
  
  .oval-background {
    height: 340px;
    padding-top: 25px;
  }
  
  .menu-item[data-position="0"] img {
    width: 155px;
    height: 155px;
  }
  
  .menu-item[data-position="1"] img,
  .menu-item[data-position="-1"] img {
    width: 115px;
    height: 115px;
  }
  
  .menu-item[data-position="1"] {
    left: 72%;
  }
  
  .menu-item[data-position="-1"] {
    left: 28%;
  }
  
  .carousel-nav.prev {
    left: 3%;
  }
  
  .carousel-nav.next {
    right: 3%;
  }
  
  .menu-detail {
    padding: 1.5rem 1rem;
    margin-top: 2rem;
  }
  
  .dish-name {
    font-size: 1.6rem;
  }
  
  .dish-description {
    font-size: 0.95rem;
  }
  
  .dish-price {
    font-size: 2rem;
  }
  
  .feedback-card {
    padding: 1.8rem 1.3rem;
    min-height: 280px;
  }
  
  .feedback-text {
    font-size: 1rem;
  }
  
  .feedback-carousel-wrapper {
    padding: 0 50px;
  }
  
  /* Improve form on small screens */
  .booking-form-wrapper {
    padding: 1.5rem;
  }
  
  .form-control {
    font-size: 16px; /* Prevent zoom on iOS */
  }
  
  /* Better footer spacing */
  .footer-section {
    padding: 40px 0 20px;
  }
  
  .footer-title {
    font-size: 1.1rem;
    margin-top: 1.5rem;
  }
}
