/* Global Styles */
:root {
  --primary-color: #8b0000;
  --secondary-color: #f8f1e5;
  --accent-color: #d4af37;
  --text-color: #333;
  --light-text: #fff;
  --dark-bg: #222;
  --light-bg: #f9f9f9;
  --border-color: #ddd;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Animation Classes */
.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fade-in-right {
  animation: fadeInRight 0.8s ease-out forwards;
}

.animate-slide-in-down {
  animation: slideInDown 0.8s ease-out forwards;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-stagger {
  animation-delay: var(--delay, 0s);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #fff;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Enhanced Button Styles */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), #a50000);
  color: var(--light-text);
  padding: 14px 28px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(139, 0, 0, 0.2);
  text-decoration: none;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(139, 0, 0, 0.3);
  background: linear-gradient(135deg, #a50000, var(--primary-color));
}

.btn:active {
  transform: translateY(-1px);
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.text-btn {
  background: none;
  border: none;
  color: var(--primary-color);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font-size: inherit;
  text-decoration: underline;
}

.text-btn:hover {
  color: #6b0000;
}

.center-btn {
  text-align: center;
  margin-top: 30px;
}

/* Header Styles */
header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo h1 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.logo h1:hover {
  transform: scale(1.05);
  text-shadow: 2px 2px 4px rgba(139, 0, 0, 0.2);
}

.logo-image {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 50%;
  padding: 10px;
}

nav {
  display: flex;
  align-items: center;
}

.menu {
  display: flex;
}

.menu li {
  margin: 0 15px;
}

.menu a {
  font-weight: 500;
  padding: 5px 0;
  position: relative;
  transition: var(--transition);
}

.menu a:hover,
.menu a.active {
  color: var(--primary-color);
}

.menu a.active::after,
.menu a:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

/* Mobile Menu Button Enhancement */
.mobile-menu-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  background: rgba(139, 0, 0, 0.1);
  color: var(--primary-color);
}

.mobile-menu-btn.active {
  background: var(--primary-color);
  color: white;
}

.login-btn button {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.login-btn button:hover {
  background-color: var(--primary-color);
  color: var(--light-text);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--light-text);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(139, 0, 0, 0.2) 100%);
  animation: pulse 4s ease-in-out infinite;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: slideInDown 1s ease-out;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero .btn {
  animation: fadeInUp 1s ease-out 0.6s both;
}

/* Intro Section */
.intro {
  padding: 80px 0;
  text-align: center;
}

.intro h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.intro p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
}

/* Featured Dishes */
.featured-dishes {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.featured-dishes h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.dish-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.dish-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(139, 0, 0, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.dish-card:hover::before {
  opacity: 1;
}

.dish-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.dish-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.dish-card:hover img {
  transform: scale(1.1);
}

.dish-card h3 {
  padding: 20px 20px 10px;
  font-size: 20px;
  color: var(--primary-color);
}

.dish-card p {
  padding: 0 20px 15px;
  color: #666;
}

/* Add this CSS for the dish actions: */
.dish-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px 20px;
  margin-top: auto;
}

.dish-actions .price {
  font-weight: 700;
  color: var(--accent-color);
  font-size: 18px;
}

.dish-actions .btn {
  padding: 10px 20px;
  font-size: 14px;
}

.dish-card .price {
  display: block;
  padding: 0 20px 20px;
  font-weight: 700;
  color: var(--accent-color);
  font-size: 18px;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  text-align: center;
}

.testimonials h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.testimonial {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.testimonial p {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../images/cta-bg.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
  color: var(--light-text);
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
footer {
  background-color: var(--dark-bg);
  color: var(--light-text);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.footer-section p {
  margin-bottom: 10px;
  font-size: 14px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

/* Page Banner */
.page-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../images/page-banner.jpg");
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--light-text);
}

.banner-content h1 {
  font-size: 42px;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-content p {
  font-size: 18px;
}

/* Menu Page */
.menu-section {
  padding: 80px 0;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.menu-tab {
  background: none;
  border: none;
  padding: 10px 20px;
  margin: 0 5px 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.menu-tab.active,
.menu-tab:hover {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.menu-items h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.menu-item {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.menu-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 0, 0, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.menu-item:hover::after {
  opacity: 1;
}

.menu-item:hover {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.menu-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.4s ease;
}

.menu-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.menu-item-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.menu-item-info h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.menu-item-info p {
  margin-bottom: 15px;
  color: #666;
  flex-grow: 1;
}

.menu-item-info .price {
  font-weight: 700;
  color: var(--accent-color);
  font-size: 18px;
  align-self: flex-end;
}

.menu-item-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  position: relative;
  z-index: 2;
}

/* About Page */
.about-story,
.philosophy-section {
  padding: 80px 0;
}

.about-grid,
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image img,
.philosophy-image img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-content h2,
.philosophy-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.about-content p,
.philosophy-content p {
  margin-bottom: 15px;
}

.chef-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.chef-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
}

.team-member img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-member h3 {
  padding: 20px 20px 5px;
  font-size: 20px;
  color: var(--primary-color);
}

.team-member .logo-image {
  height: 150px;
  width: 150px;
  margin: 0 auto 15px;
}

.member-title {
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.team-member p {
  padding: 0 20px 20px;
  color: #666;
}

.values-section {
  padding: 80px 0;
}

.values-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-item {
  text-align: center;
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.value-item i {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.value-item h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Gallery Page */
.gallery-section {
  padding: 80px 0;
}

.gallery-filter {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: none;
  border: none;
  padding: 10px 20px;
  margin: 0 5px 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 250px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-info {
  text-align: center;
  color: var(--light-text);
  padding: 20px;
}

.gallery-info h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.video-section {
  padding: 80px 0;
  background-color: var(--light-bg);
  text-align: center;
}

.video-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.video-container {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-container video {
  width: 100%;
}

.video-caption {
  margin-top: 20px;
  font-style: italic;
  color: #666;
}

/* Reservation Page */
.reservation-section {
  padding: 80px 0;
}

.reservation-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
}

.reservation-info h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.reservation-info p {
  margin-bottom: 20px;
}

.reservation-hours {
  margin-top: 40px;
  padding: 20px;
  background-color: var(--light-bg);
  border-radius: 8px;
}

.reservation-hours h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.reservation-form-container {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
}

#login-required-message {
  text-align: center;
  padding: 30px;
  background-color: var(--light-bg);
  border-radius: 8px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 16px;
}

textarea {
  resize: vertical;
}

.reservation-summary {
  margin-top: 30px;
  padding: 20px;
  background-color: var(--light-bg);
  border-radius: 8px;
}

.reservation-summary h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.price-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.price-row.total {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
  font-weight: 700;
  font-size: 18px;
}

.reservation-policy {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.reservation-policy h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.policy-item {
  text-align: center;
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.policy-item i {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.policy-item h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Contact Page */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2,
.contact-form-container h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.info-item {
  display: flex;
  margin-bottom: 30px;
}

.info-item i {
  font-size: 24px;
  color: var(--primary-color);
  margin-right: 20px;
  margin-top: 5px;
}

.info-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.social-contact {
  margin-top: 40px;
}

.social-contact h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.contact-form-container {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.map-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.map-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-section {
  padding: 80px 0;
}

.faq-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #fff;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 18px;
  color: var(--primary-color);
}

.faq-question i {
  transition: var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 1000px;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  overflow: auto;
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 30px;
  border-radius: 8px;
  max-width: 500px;
  position: relative;
}

.image-modal-content {
  max-width: 800px;
  padding: 20px;
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.modal h2 {
  text-align: center;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.google-btn {
  width: 100%;
  height: 50px;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 20px;
}

.google-btn:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

.google-icon-wrapper {
  width: 40px;
  height: 40px;
  margin-left: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.google-icon {
  width: 18px;
  height: 18px;
}

.btn-text {
  margin-left: 10px;
  font-size: 16px;
  color: #757575;
}

.login-message {
  text-align: center;
  margin-top: 20px;
  padding: 10px;
  border-radius: 4px;
}

.login-message.error {
  background-color: #ffebee;
  color: #c62828;
}

.login-message.success {
  background-color: #e8f5e9;
  color: #2e7d32;
}

.confirmation-message {
  text-align: center;
}

.confirmation-message i {
  font-size: 60px;
  color: #2e7d32;
  margin-bottom: 20px;
}

.confirmation-message h2 {
  color: #2e7d32;
}

#confirmation-details {
  margin: 20px 0;
  text-align: left;
  padding: 15px;
  background-color: var(--light-bg);
  border-radius: 4px;
}

#modalImage {
  max-width: 100%;
  max-height: 70vh;
  margin: 0 auto;
  display: block;
}

#modalCaption {
  text-align: center;
  margin-top: 15px;
  font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .reservation-container,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .philosophy-grid {
    grid-template-columns: 1fr;
  }

  .about-image,
  .philosophy-image {
    order: 1;
  }

  .about-content,
  .philosophy-content {
    order: 2;
  }
}

@media (max-width: 768px) {
  .menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .menu.active {
    display: flex;
  }

  .menu li {
    margin: 10px 0;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 576px) {
  header .container {
    flex-wrap: wrap;
  }

  .logo {
    margin-bottom: 10px;
  }

  .login-btn {
    margin-left: auto;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .intro h2,
  .featured-dishes h2,
  .testimonials h2,
  .cta h2 {
    font-size: 28px;
  }

  .intro p {
    font-size: 16px;
  }

  .banner-content h1 {
    font-size: 32px;
  }

  .modal-content {
    margin: 20% auto;
    padding: 20px;
  }
}

/* Google Login Button */
.google-btn {
  width: 100%;
  height: 50px;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 20px;
}

.google-btn:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

.google-icon-wrapper {
  width: 40px;
  height: 40px;
  margin-left: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.google-icon {
  width: 18px;
  height: 18px;
}

.btn-text {
  margin-left: 10px;
  font-size: 16px;
  color: #757575;
}

/* Add these cart styles after the existing styles */

/* Cart Icon */
.cart-icon {
  position: relative;
  margin-right: 15px;
  animation: float 3s ease-in-out infinite;
  transition: all 0.3s ease;
}

.cart-icon.has-items {
  animation: bounce 0.6s ease, float 3s ease-in-out infinite 0.6s;
}

.cart-icon a {
  display: flex;
  align-items: center;
  font-size: 22px;
  color: var(--primary-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px;
  border-radius: 50%;
}

.cart-icon:hover a {
  transform: scale(1.1);
  color: var(--accent-color);
  background: rgba(139, 0, 0, 0.1);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--accent-color);
  color: var(--dark-bg);
  font-size: 12px;
  font-weight: bold;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-count:empty {
  display: none;
}

/* Cart Page */
.cart-section {
  padding: 60px 0;
}

.cart-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.cart-items {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 20px;
}

.empty-cart {
  text-align: center;
  padding: 40px 20px;
}

.empty-cart i {
  font-size: 60px;
  color: #ccc;
  margin-bottom: 20px;
}

.empty-cart h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.empty-cart p {
  margin-bottom: 20px;
  color: #666;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto auto auto;
  gap: 15px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-image img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}

.cart-item-details h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.cart-item-price {
  color: #666;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background-color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.quantity-btn:hover {
  background-color: var(--light-bg);
}

.cart-item-total {
  font-weight: 700;
  font-size: 18px;
  color: var(--primary-color);
}

.remove-btn {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  font-size: 16px;
  transition: var(--transition);
}

.remove-btn:hover {
  color: #d9534f;
}

.cart-summary {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 20px;
  position: sticky;
  top: 100px;
}

.cart-summary h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--primary-color);
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.promo-row {
  margin-top: 20px;
  margin-bottom: 20px;
}

.promo-input {
  display: flex;
  width: 100%;
}

.promo-input input {
  flex-grow: 1;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 4px 0 0 4px;
  font-size: 14px;
}

.promo-input button {
  padding: 10px 15px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: var(--transition);
}

.promo-input button:hover {
  background-color: #6b0000;
}

.discount-row {
  color: #2e7d32;
  font-weight: 600;
}

.total-row {
  font-size: 20px;
  font-weight: 700;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
}

.promo-message {
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 4px;
  font-size: 14px;
}

.promo-message.error {
  background-color: #ffebee;
  color: #c62828;
}

.promo-message.success {
  background-color: #e8f5e9;
  color: #2e7d32;
}

.checkout-btn {
  width: 100%;
}

/* Food Baskets Section */
.food-baskets {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.food-baskets h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.food-baskets p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.baskets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.basket-item {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.basket-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.basket-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.basket-item h3 {
  padding: 20px 20px 10px;
  font-size: 20px;
  color: var(--primary-color);
}

.basket-item p {
  padding: 0 20px 15px;
  color: #666;
  text-align: left;
  margin: 0;
}

.basket-price {
  padding: 0 20px 15px;
  font-weight: 700;
  color: var(--accent-color);
  font-size: 18px;
}

.basket-item .btn {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
}

/* basket-item styles */
.basket-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 15px;
  display: block;
}

/* Beautiful Cart Notification */
.cart-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 320px;
  max-width: 400px;
  border: 1px solid rgba(139, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.cart-notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification-content {
  display: flex;
  align-items: center;
  padding: 20px;
  gap: 15px;
}

.notification-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #28a745, #20c997);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  animation: pulse 2s ease-in-out infinite;
}

.notification-text {
  flex: 1;
}

.notification-title {
  font-weight: 600;
  color: var(--text-color);
  margin: 0 0 5px 0;
  font-size: 16px;
}

.notification-subtitle {
  color: #666;
  margin: 0;
  font-size: 14px;
}

.notification-close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #666;
}

.notification-close:hover {
  background: rgba(0, 0, 0, 0.2);
  color: #333;
}

.notification-progress {
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  width: 100%;
  transition: width 4s linear;
}

/* Cart Notification */
.cart-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary-color);
  color: white;
  padding: 15px 20px;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cart-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* Enhanced Cart Icon */
.cart-icon {
  position: relative;
  margin-right: 15px;
  animation: float 3s ease-in-out infinite;
  transition: all 0.3s ease;
}

.cart-icon.has-items {
  animation: bounce 0.6s ease, float 3s ease-in-out infinite 0.6s;
}

.cart-icon a {
  display: flex;
  align-items: center;
  font-size: 22px;
  color: var(--primary-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px;
  border-radius: 50%;
}

.cart-icon:hover a {
  transform: scale(1.1);
  color: var(--accent-color);
  background: rgba(139, 0, 0, 0.1);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--accent-color);
  color: var(--dark-bg);
  font-size: 12px;
  font-weight: bold;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-count:empty {
  display: none;
}

/* Loading Animation */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loading-text {
  color: white;
  font-size: 18px;
  margin-top: 20px;
  font-weight: 600;
}

/* Language Switcher Styles */
.language-switcher {
  position: relative;
  margin-right: 15px;
}

.language-dropdown {
  position: relative;
}

.language-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 8px 12px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
}

.language-btn:hover {
  background-color: var(--primary-color);
  color: var(--light-text);
}

.language-btn i:last-child {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.language-dropdown.show .language-btn i:last-child {
  transform: rotate(180deg);
}

.language-options {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.language-options.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
  color: var(--text-color);
}

.language-option:hover {
  background-color: var(--light-bg);
}

.language-option.active {
  background-color: var(--primary-color);
  color: white;
}

.language-option .flag {
  font-size: 16px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .reservation-container,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .philosophy-grid {
    grid-template-columns: 1fr;
  }

  .about-image,
  .philosophy-image {
    order: 1;
  }

  .about-content,
  .philosophy-content {
    order: 2;
  }
}

@media (max-width: 768px) {
  .menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .menu.active {
    display: flex;
  }

  .menu li {
    margin: 10px 0;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 576px) {
  header .container {
    flex-wrap: wrap;
  }

  .logo {
    margin-bottom: 10px;
  }

  .login-btn {
    margin-left: auto;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .intro h2,
  .featured-dishes h2,
  .testimonials h2,
  .cta h2 {
    font-size: 28px;
  }

  .intro p {
    font-size: 16px;
  }

  .banner-content h1 {
    font-size: 32px;
  }

  .modal-content {
    margin: 20% auto;
    padding: 20px;
  }
}
