/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #000;
  overflow-x: hidden;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: #000;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid #e5e5e5;
}

.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

/* Logo Link Styling */
.logo-link {
  display: block;
  text-decoration: none;
}

.logo-link:hover .logo-image {
  transform: scale(1.05);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 75px;
  width: 120px;
  background-image: url("assets/sofra.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #0727b5;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #0727b5;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.social-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-link {
  color: #666;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f5f5f5;
}

.social-link:hover {
  color: #0727b5;
  background: #e8f0ff;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #000;
  margin: 3px 0;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
  height: 100vh;
  background-image: url("assets/1812.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title-fancy {
  font-family: "Lora", serif;
  font-weight: 600;
  color: white;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 1px 1px 3px rgba(0, 0, 0, 0.9);
  letter-spacing: 1px;
  font-style: normal;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  letter-spacing: 1px;
  font-family: "Inter", sans-serif;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: #dc3545;
  color: white;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-primary:hover {
  background: #c82333;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #000;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #0727b5;
  border: 2px solid #0727b5;
}

.btn-outline:hover {
  background: #0727b5;
  color: white;
  transform: translateY(-2px);
}

/* Featured Dishes Section */
.featured-dishes {
  padding: 100px 0;
  background: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 3rem;
  color: #000;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.dishes-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.dish-item {
  text-align: center;
}

.dish-image {
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.dish-image:hover {
  transform: translateY(-5px) scale(1.02);
}

.dish-image-meze {
  background-image: url("assets/1799.jpg");
}

.dish-image-grilled {
  background-image: url("assets/1809.jpg");
}

.dish-image-seafood {
  background-image: url("assets/1814.jpg");
}

.dish-item h3 {
  font-size: 1.3rem;
  color: #000;
  font-weight: 600;
}

.dishes-cta {
  text-align: center;
}

/* Our Chef Section */
.our-chef {
  padding: 100px 0;
  background: #f8f9fa;
}

.chef-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.chef-text h2 {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 1rem;
  font-family: "Lora", serif;
}

.chef-text h3 {
  font-size: 1.8rem;
  color: #0727b5;
  margin-bottom: 1.5rem;
  font-family: "Lora", serif;
  font-weight: 500;
}

.chef-text > p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.chef-philosophy {
  display: grid;
  gap: 2rem;
}

.philosophy-item h4 {
  color: #0727b5;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  font-family: "Lora", serif;
}

.philosophy-item p {
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

.chef-image {
  height: 600px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-image: url("assets/SofraGuy.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.chef-image:hover {
  transform: scale(1.02);
}

/* Our Bar Section */
.our-bar {
  padding: 100px 0;
  background: #fff;
}

.bar-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.bar-text h2 {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 1.5rem;
}

.bar-text p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.bar-features {
  list-style: none;
  margin-bottom: 2rem;
}

.bar-features li {
  padding: 0.8rem 0;
  color: #555;
  position: relative;
  padding-left: 2rem;
  font-size: 1rem;
}

.bar-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0727b5;
  font-weight: bold;
  font-size: 1.5rem;
}

.bar-image {
  height: 500px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-image: url("assets/1804.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.bar-image:hover {
  transform: scale(1.02);
}

/* Reservations Section */
.reservations {
  padding: 100px 0;
  background: #f8f9fa;
}

.reservations-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.reservations-image {
  height: 600px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-image: url("assets/1798.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.reservations-image:hover {
  transform: scale(1.02);
}

.reservations-text h2 {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 1.5rem;
}

.reservations-text p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.reservation-highlights {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.highlight h4 {
  color: #0727b5;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.highlight p {
  color: #666;
  margin: 0;
  font-size: 1rem;
}

.reservation-widget {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem 0;
  border: 2px dashed #ddd;
  text-align: center;
}

.widget-placeholder p {
  color: #999;
  font-style: italic;
  margin: 0;
}

.reservation-contact {
  text-align: center;
}

.reservation-contact a {
  color: #0727b5;
  text-decoration: none;
  font-weight: 600;
}

.reservation-contact a:hover {
  text-decoration: underline;
}

/* Location Section */
.location {
  padding: 100px 0;
  background: #fff;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.location-info {
  display: grid;
  gap: 3rem;
}

.location-details h3,
.hours-info h3 {
  font-size: 1.8rem;
  color: #000;
  margin-bottom: 1.5rem;
}

.address {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.phone,
.email {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.phone {
  font-weight: 600;
}

.email {
  color: #0727b5;
}

.hours-list {
  display: grid;
  gap: 1rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.day {
  font-weight: 600;
  color: #333;
}

.time {
  color: #0727b5;
  font-weight: 500;
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: fit-content;
}

.map-container iframe {
  border-radius: 15px;
}

/* Footer */
.footer {
  background: #000;
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1.5rem;
  color: #0727b5;
}

.footer-section p {
  margin-bottom: 0.8rem;
  opacity: 0.8;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
  opacity: 1;
  color: #0727b5;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .social-icons {
    display: none;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .dishes-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .chef-content,
  .bar-content,
  .reservations-content,
  .location-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .logo-image {
    height: 60px;
    width: 100px;
  }

  .hours-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .reservations-image,
  .chef-image {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .hero {
    background-attachment: scroll;
  }

  .hero-title {
    font-size: 2rem;
  }

  .nav-container {
    padding: 0 15px;
  }

  .container {
    padding: 0 15px;
  }

  .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  .logo-image {
    height: 50px;
    width: 80px;
  }

  .reservations-image,
  .chef-image {
    height: 300px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content > * {
  animation: fadeInUp 0.8s ease forwards;
}

.hero-content > *:nth-child(1) {
  animation-delay: 0.2s;
}

.hero-content > *:nth-child(2) {
  animation-delay: 0.4s;
}

.hero-content > *:nth-child(3) {
  animation-delay: 0.6s;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus {
  outline: 2px solid #0727b5;
  outline-offset: 2px;
}

/* Loading animations */
.dish-item,
.chef-content,
.bar-content,
.reservations-content,
.location-info {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.dish-item.animate,
.chef-content.animate,
.bar-content.animate,
.reservations-content.animate,
.location-info.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Print styles */
@media print {
  .navbar,
  .footer {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  h1,
  h2,
  h3 {
    page-break-after: avoid;
  }
}

/* About Page Styles */
.about-hero {
  height: 60vh;
  background-image: url("assets/1804.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.about-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.about-hero .hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.about-hero h1 {
  font-family: "Lora", serif;
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.about-hero p {
  font-size: 1.3rem;
  font-weight: 300;
  opacity: 0.95;
  letter-spacing: 1px;
}

.hero-title-white {
  font-family: "Lora", serif;
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  color: white;
}

.about-content {
  padding: 100px 0;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 2rem;
  font-family: "Lora", serif;
}

.about-text h3 {
  font-size: 1.8rem;
  color: #0727b5;
  margin: 2.5rem 0 1rem 0;
  font-family: "Lora", serif;
}

.about-text p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-images-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: 100%;
}

.chef-portrait-image {
  height: 575px; /* Increased from 450px to 500px */
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-image: url("assets/SofraGuy.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.chef-portrait-image:hover {
  transform: scale(1.02);
}

.restaurant-atmosphere-image {
  height: 300px; /* Reduced height for landscape image */
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-image: url("assets/1810.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.restaurant-atmosphere-image:hover {
  transform: scale(1.02);
}

/* Values Section */
.values-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.values-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 4rem;
  font-family: "Lora", serif;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.value-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
}

.value-item h3 {
  font-size: 1.5rem;
  color: #0727b5;
  margin-bottom: 1rem;
  font-family: "Lora", serif;
}

.value-item p {
  color: #666;
  line-height: 1.6;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.5rem;
  }

  .about-hero p {
    font-size: 1.1rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .about-images-container {
    gap: 1.5rem;
  }

  .chef-portrait-image,
  .restaurant-atmosphere-image {
    height: 350px; /* Adjusted for mobile */
  }

  .restaurant-atmosphere-image {
    height: 200px; /* Adjusted for mobile */
  }
}

@media (max-width: 480px) {
  .about-hero h1 {
    font-size: 2rem;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .values-section h2 {
    font-size: 2rem;
  }

  .chef-portrait-image,
  .restaurant-atmosphere-image {
    height: 300px; /* Adjusted for small mobile */
  }

  .restaurant-atmosphere-image {
    height: 180px; /* Adjusted for small mobile */
  }
}

/* Menu Page Styles */
.menu-hero {
  height: 60vh;
  background-image: url("assets/1809.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.menu-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.menu-hero .hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.menu-hero h1 {
  font-family: "Lora", serif;
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.menu-hero p {
  font-size: 1.3rem;
  font-weight: 300;
  opacity: 0.95;
  letter-spacing: 1px;
}

.menu-content {
  padding: 100px 0;
  background: #fff;
}

.menu-section {
  margin-bottom: 80px;
}

.section-title {
  font-family: "Lora", serif;
  font-size: 3rem;
  color: #000;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #0727b5;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.menu-item {
  padding: 1.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.menu-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.menu-item.vegan {
  border-left: 4px solid #28a745;
}

.menu-item.featured {
  border: 2px solid #0727b5;
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.item-header h3 {
  font-family: "Lora", serif;
  font-size: 1.3rem;
  color: #000;
  margin: 0;
  flex: 1;
}

.price {
  font-weight: 600;
  color: #0727b5;
  font-size: 1.1rem;
  margin-left: 1rem;
}

.price-options {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-left: 1rem;
}

.price-options span {
  font-weight: 600;
  color: #0727b5;
  font-size: 1rem;
}

.description {
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

.add-ons {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  margin-top: 2rem;
}

.add-ons h4 {
  font-family: "Lora", serif;
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 1rem;
}

.addon-items {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.addon-items span {
  color: #666;
  font-size: 1rem;
}

.addon-items strong {
  color: #0727b5;
}

.menu-note {
  background: #fff8e1;
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid #ffc107;
  margin-top: 2rem;
}

.menu-note p {
  margin: 0;
  color: #856404;
  font-style: italic;
  line-height: 1.6;
}

.menu-cta {
  text-align: center;
  padding: 4rem 2rem;
  background: #f8f9fa;
  border-radius: 20px;
  color: #333;
  margin-top: 4rem;
  border: 1px solid #e9ecef;
}

.menu-cta h2 {
  font-family: "Lora", serif;
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 1rem;
}

.menu-cta p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

/* Responsive Design for Menu Page */
@media (max-width: 768px) {
  .menu-hero h1 {
    font-size: 2.5rem;
  }

  .menu-hero p {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .addon-items {
    flex-direction: column;
    gap: 1rem;
  }

  .menu-cta h2 {
    font-size: 2rem;
  }

  .menu-cta p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .menu-hero h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .item-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .price,
  .price-options {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .menu-item {
    padding: 1rem;
  }

  .menu-cta {
    padding: 3rem 1rem;
  }
}

/* Menu Navigation Styles */
.menu-navigation {
  padding: 40px 0;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
  /* Remove sticky positioning */
}

.menu-nav-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.menu-nav-btn {
  padding: 12px 24px;
  background: white;
  color: #333;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 2px solid #e9ecef;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.menu-nav-btn:hover {
  background: #0727b5;
  color: white;
  border-color: #0727b5;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(7, 39, 181, 0.2);
}

.chef-special-btn {
  /* Remove all the special red styling, keep it as normal button */
  background: white;
  color: #333;
  border-color: #e9ecef;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.chef-special-btn::before {
  content: "⭐";
  margin-right: 8px;
}

.chef-special-btn:hover {
  background: #0727b5;
  color: white;
  border-color: #0727b5;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(7, 39, 181, 0.2);
}

/* Chef's Specials Highlight Styling */
.chef-specials-highlight {
  background: linear-gradient(135deg, #fff8f0 0%, #fff 100%);
  border-radius: 20px;
  padding: 3rem 2rem;
  margin: 2rem 0;
  border: 2px solid #ffeaa7;
  position: relative;
  overflow: hidden;
}

.chef-specials-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #dc3545, #ffc107, #dc3545);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

.chef-specials-highlight .section-title {
  color: #dc3545;
  text-shadow: 1px 1px 3px rgba(220, 53, 69, 0.1);
}

.chef-specials-highlight .section-title::after {
  background: linear-gradient(90deg, #dc3545, #ffc107);
  height: 4px;
  width: 120px;
}

.chef-specials-highlight .menu-item {
  background: white;
  border: 1px solid #ffeaa7;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.08);
}

.chef-specials-highlight .menu-item:hover {
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.15);
  transform: translateY(-3px);
  border-color: #dc3545;
}

.chef-specials-highlight .menu-item .item-header h3 {
  color: #dc3545;
}

/* Responsive Design for Menu Navigation */
@media (max-width: 768px) {
  .menu-navigation {
    padding: 20px 0;
    /* Remove position: relative and top: 0 since it's no longer sticky */
  }

  .menu-nav-buttons {
    gap: 0.5rem;
  }

  .menu-nav-btn {
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .chef-specials-highlight {
    padding: 2rem 1rem;
    margin: 1rem 0;
  }
}

@media (max-width: 480px) {
  .menu-nav-buttons {
    flex-direction: column;
    align-items: center;
  }

  .menu-nav-btn {
    width: 200px;
    text-align: center;
  }
}

/* Smooth scrolling offset for fixed navigation */
.menu-section {
  scroll-margin-top: 140px;
}

/* Beverages Section Styles */
.beverages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.beverage-category h3 {
  font-family: "Lora", serif;
  font-size: 1.5rem;
  color: #0727b5;
  margin-bottom: 1.5rem;
  text-align: center;
}

.beverage-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.beverage-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.beverage-item:hover {
  background: #e9ecef;
}

.beverage-item span:first-child {
  font-weight: 500;
  color: #333;
}

.beverage-item .price {
  font-weight: 600;
  color: #0727b5;
}

/* Wine Section Styles */
.wine-section {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.wine-section h3 {
  font-family: "Lora", serif;
  font-size: 2rem;
  color: #000;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.wine-section h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: #0727b5;
}

.wine-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.wine-item {
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
  border-left: 4px solid #0727b5;
}

.wine-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.wine-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.wine-header h4 {
  font-family: "Lora", serif;
  font-size: 1.2rem;
  color: #000;
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.wine-prices {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: flex-end;
}

.wine-prices span {
  font-weight: 600;
  color: #0727b5;
  font-size: 0.95rem;
}

.wine-description {
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
  font-style: italic;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  .beverages-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .wine-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .wine-prices {
    align-items: flex-start;
  }

  .wine-section h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .beverage-item {
    padding: 0.6rem 0.8rem;
  }

  .wine-item {
    padding: 1rem;
  }

  .wine-header h4 {
    font-size: 1.1rem;
  }

  .wine-section h3 {
    font-size: 1.6rem;
  }
}

/* Reservation Page Styles */
.reservation-widget-section {
  padding: 120px 0 60px;
  background: #fff;
}

.widget-container {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.widget-container h1 {
  font-family: "Lora", serif;
  font-size: 3.5rem;
  color: #000;
  margin-bottom: 1rem;
}

.widget-subtitle {
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 3rem;
  letter-spacing: 0.5px;
}

/* Updated reservation widget embed - removed container styling */
.reservation-widget-embed {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.reservation-widget-embed iframe {
  width: 100%;
  border: none;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.reservation-info {
  padding: 80px 0;
  background: #f8f9fa;
}

.reservation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.reservation-text h2 {
  font-family: "Lora", serif;
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 1.5rem;
}

.reservation-text > p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.reservation-details {
  margin-bottom: 2.5rem;
}

.detail-item {
  margin-bottom: 2rem;
}

.detail-item h4 {
  font-family: "Lora", serif;
  font-size: 1.3rem;
  color: #0727b5;
  margin-bottom: 0.8rem;
}

.detail-item p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.detail-item a {
  color: #0727b5;
  text-decoration: none;
  font-weight: 600;
}

.detail-item a:hover {
  text-decoration: underline;
}

.contact-info {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-info h4 {
  font-family: "Lora", serif;
  font-size: 1.3rem;
  color: #000;
  margin-bottom: 1rem;
}

.contact-info p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.contact-info a {
  color: #0727b5;
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  text-decoration: underline;
}

.hours-text {
  font-size: 0.95rem;
  color: #888;
  margin-top: 1rem;
}

.dining-image {
  height: 600px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-image: url("assets/1798.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.dining-image:hover {
  transform: scale(1.02);
}

/* Responsive Design for Reservation Page */
@media (max-width: 768px) {
  .widget-container h1 {
    font-size: 2.5rem;
  }

  .widget-subtitle {
    font-size: 1.1rem;
  }

  .reservation-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .reservation-text h2 {
    font-size: 2rem;
  }

  .dining-image {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .widget-container h1 {
    font-size: 2rem;
  }

  .reservation-text h2 {
    font-size: 1.8rem;
  }

  .dining-image {
    height: 300px;
  }
}