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

body {
  font-family: "Libre Franklin", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Smart Sticky Navigation - Fixed navbar class */
.navbar.fixed {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1400px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
  padding: 0.8rem 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  animation: slideDownFloating 0.5s ease forwards;
}

@keyframes slideDownFloating {
  from {
    transform: translate(-50%, -100%);
    opacity: 0;
  }

  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.nav-logo {
  font-family: "Rancho", cursive;
  font-size: 2rem;
  color: #e76f51;
  font-weight: bold;
  flex-shrink: 0;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-logo {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1rem;
  margin: 0 auto;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #e76f51;
  background: rgba(231, 111, 81, 0.1);
}

.nav-menu a::after {
  display: none;
}

/* Nav Dropdown Menu */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  min-width: 220px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 0.5rem;
  margin-top: 1rem;
  z-index: 1000;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  animation: fadeInDropdown 0.3s ease;
}

@keyframes fadeInDropdown {
  from {
    opacity: 0;
    transform: translate(-50%, 10px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.8rem 1.5rem;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  border-radius: 8px;
}

.dropdown-menu a:hover {
  background: rgba(231, 111, 81, 0.1);
  color: #e76f51;
}

.dropdown-menu li:first-child a {
  border-radius: 8px 8px 4px 4px;
}

.dropdown-menu li:last-child a {
  border-radius: 4px 4px 8px 8px;
}

/* Nav Right Section (Welcome Badge + Cart) */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.nav-cart-btn {
  position: relative;
  background: linear-gradient(135deg, #e76f51 0%, #f4a261 100%);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  box-shadow: 0 3px 15px rgba(231, 111, 81, 0.3);
  transition: all 0.3s ease;
}

.nav-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(231, 111, 81, 0.5);
}

.nav-cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #dc3545;
  color: white;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  border: 2px solid white;
}

.nav-cart-count.hidden {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  padding: 3rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.slide-content h1 {
  font-family: "Rancho", cursive;
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.slide-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-button {
  background: #e76f51;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #d55e42;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(231, 111, 81, 0.4);
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  padding: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 2;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.prev:hover,
.next:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.dots-container {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
  background: white;
  transform: scale(1.2);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

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

.section-header h2 {
  font-family: "Rancho", cursive;
  font-size: 3rem;
  color: #ffb485;
  margin-bottom: 0.5rem;
}

.section-header p {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.2rem;
  color: #e76f51;
  font-weight: 600;
}

/* About Restaurant Section */
.about-restaurant-section {
  padding: 6rem 0;
  background: white;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.about-restaurant-section.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.about-content-row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 5rem;
}

.about-image-left,
.about-image-right {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image-left img,
.about-image-right img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-image-left:hover img,
.about-image-right:hover img {
  transform: scale(1.05);
}

.about-text-content {
  padding: 0 2rem;
}

.title-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0 2rem;
}

.line-left,
.line-right {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, transparent, #e76f51);
}

.line-right {
  background: linear-gradient(to left, transparent, #e76f51);
}

.icon-divider {
  font-size: 1.5rem;
  color: #e76f51;
}

.about-text-content .text {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
}

/* Services Section */
.services-section {
  margin-top: 5rem;
  padding: 4rem 0;
  background: #f8f9fa;
  border-radius: 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding: 0 2rem;
}

.service-item {
  position: relative;
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 20px;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  z-index: 0;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Background image overlay với hiệu ứng blur nhẹ */
.service-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
  z-index: -1;
  transition: all 0.4s ease;
  transform: scale(1);
}

/* Background images cho từng loại service */
.birthday-bg::before {
  background-image: url("../images/Birthday.jpg");
}

.wedding-bg::before {
  background-image: url("../images/Wedding.jpg");
}

.dinner-bg::before {
  background-image: url("../images/business.jpg");
}

.service-item.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Hiệu ứng hover - phóng to background và sáng hơn */
.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-item:hover::before {
  transform: scale(1.08);
  filter: brightness(0.65);
}

.service-item h3 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-family: "Playfair Display", serif;
}

.service-item .text {
  color: #fff;
  line-height: 1.8;
  font-size: 0.95rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  opacity: 0.95;
}

/* Opening Hours Section */
.openings-section {
  margin-top: 5rem;
  text-align: center;
}

.openings-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  background: #f8f9fa;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.opening-subtitle {
  font-size: 1.2rem;
  color: #e76f51;
  font-weight: 600;
  margin-bottom: 2rem;
}

.location-info h3 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 2rem;
  font-family: "Rancho", cursive;
}

.info-list {
  list-style: none;
  padding: 0;
  text-align: left;
  display: inline-block;
}

.info-list li {
  padding: 0.8rem 0;
  color: #666;
  font-size: 1.1rem;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.info-list li:last-child {
  border-bottom: none;
}

.info-icon {
  font-size: 1.2rem;
  width: 30px;
  text-align: center;
}

/* Chefs Section */
.chefs-section {
  padding: 6rem 0;
  background-image: url("../images/Frame 3.png");
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.chefs-section.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.chefs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.chef-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  position: relative;
}

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

.chef-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.chef-image {
  position: relative;
  overflow: hidden;
  height: 400px;
}

.chef-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.chef-info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  padding: 1.5rem 0;
  transform: translateY(35%);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.chef-info h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 0.3rem;
}

.chef-info p {
  color: #e76f51;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.chef-card:hover .chef-info {
  transform: translateY(0);
}

/* Chef social icons (hidden until hover) */
.chef-social {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.8rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.chef-social .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  color: #333;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.chef-social .social-link svg {
  display: block;
  width: 18px;
  height: 18px;
}

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

.chef-social .social-link:hover {
  background: #e76f51;
  color: white;
  transform: translateY(-3px);
}

/* Top Sellers Section */
.top-sellers-section {
  padding: 6rem 0;
  background-image: url("../images/Frame 2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.top-sellers-section.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.top-sellers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.seller-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(255, 239, 117, 0.1);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  position: relative;
}

.seller-card.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.seller-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.seller-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(45deg, #e76f51, #f4a261);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: bold;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.seller-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.seller-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.seller-info {
  padding: 2rem;
}

.seller-info h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.seller-info p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.seller-details .price {
  font-size: 1.8rem;
  font-weight: bold;
  color: #e76f51;
}

.rating {
  text-align: right;
}

.stars {
  color: #ffd700;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.rating-text {
  color: #666;
  font-size: 0.9rem;
}

.order-btn {
  width: 100%;
  background: linear-gradient(45deg, #e76f51, #f4a261);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: translateY(0);
}

.order-btn:hover {
  background: linear-gradient(45deg, #d35400, #e76f51);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(231, 111, 81, 0.3);
}

/* About Section */
.about-restaurant-section {
  padding: 6rem 0;
  background-image: url("../images/Frame 5.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.chefs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;

  margin-top: 2rem;
}

.chef-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

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

.chef-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.chef-image {
  position: relative;
  overflow: hidden;
  height: 400px;
}

.chef-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.chef-info {
  padding: 2rem;
  text-align: center;
}

.chef-info h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.chef-info p {
  color: #e76f51;
  font-weight: 600;
}

/* Menu Section */
.menu-section {
  padding: 6rem 0;
  background: url("../images/Frame 4.png") center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.menu-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgba(255, 255, 255, 0.85); */
  z-index: 1;
}

.menu-section .container {
  position: relative;
  z-index: 2;
}

.menu-section.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.menu-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.menu-column {
  text-align: center;
}

.menu-column-title {
  font-family: "Rancho", cursive;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 2rem;
  text-align: center;
}

.menu-item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.menu-item:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.menu-item-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  flex-shrink: 0;
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.menu-item:hover .menu-item-image img {
  transform: scale(1.15);
}

.menu-item-info {
  text-align: left;
  flex: 1;
}

.menu-item-info h4 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 0.3rem;
}

.menu-item-info p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.menu-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.price {
  font-size: 1.3rem;
  font-weight: bold;
  color: #e76f51;
  white-space: nowrap;
}

.menu-order-btn {
  background: linear-gradient(45deg, #e76f51, #f4a261);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.menu-order-btn:hover {
  background: linear-gradient(45deg, #d35400, #e76f51);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(231, 111, 81, 0.3);
}

/* Events Section */
.events-section {
  padding: 6rem 0;
  background-image: url("../images/Frame 3.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

/* Overlay tối để chữ dễ đọc hơn */
.events-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.3); */
  z-index: 0;
}

.events-section .container {
  position: relative;
  z-index: 10;
}

.events-section .section-header h2 {
  color: #000000;
  font-size: 4rem;
  border: 3px solid #ffdd00;
  padding: 1rem 2rem;
  display: inline-block;
  border-radius: 10px;
  /* text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5); */
}

.events-section .section-header p {
  color: #000000;
  font-size: 1.8rem;
  /* text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3); */
}

/* Events List */
.events-list-container {
  margin: 3rem 0 4rem;
}

.events-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.event-list-item {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  gap: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.event-list-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #e76f51 0%, #ff8c69 100%);
}

.event-list-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(231, 111, 81, 0.2);
  border-color: #e76f51;
}

.event-date-badge {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #e76f51 0%, #ff8c69 100%);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(231, 111, 81, 0.3);
}

.event-day {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  font-family: "Playfair Display", serif;
}

.event-month {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-list-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.event-list-category {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(231, 111, 81, 0.1);
  color: #e76f51;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

.event-list-category.private {
  background: rgba(100, 108, 255, 0.1);
  color: #646cff;
}

.event-list-category.wedding {
  background: rgba(255, 107, 129, 0.1);
  color: #ff6b81;
}

.event-list-title {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #2a1810;
  margin: 0;
  line-height: 1.3;
}

.event-list-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

.event-list-time svg {
  color: #e76f51;
}

.event-list-desc {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.event-list-btn {
  align-self: flex-start;
  padding: 0.6rem 1.5rem;
  background: linear-gradient(135deg, #e76f51 0%, #ff8c69 100%);
  color: #ffffff;
  border: none;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.event-list-btn:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(231, 111, 81, 0.4);
}

.events-carousel {
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.event-card {
  display: none;
  background: #000;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease;
  position: relative;
}

.event-card.active {
  display: block;
  animation: slideInEvent 0.6s ease;
}

@keyframes slideInEvent {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.event-video-container {
  position: relative;
  width: 100%;
  min-height: 650px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.event-overlay {
  position: relative;
  z-index: 10;
  padding: 4rem 3rem;
  max-width: 900px;
  text-align: center;
  background: rgba(255, 135, 135, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  margin: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.event-category-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, #e76f51 0%, #f4a261 100%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease;
  box-shadow: 0 5px 15px rgba(231, 111, 81, 0.4);
}

.event-title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.event-date-text {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.3rem;
  color: #f4a261;
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.event-description {
  font-family: "Libre Franklin", sans-serif;
  font-size: 1.15rem;
  line-height: 1.9;
  color: #f0f0f0;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.5s forwards;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  margin-bottom: 2rem;
}

.event-booking-btn {
  display: inline-block;
  padding: 1rem 3rem;
  background: linear-gradient(135deg, #e76f51 0%, #f4a261 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.7s forwards;
  box-shadow: 0 10px 30px rgba(231, 111, 81, 0.4);
  text-decoration: none;
}

.event-booking-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(231, 111, 81, 0.6);
  background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
}

/* Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
  z-index: 100;
}

.carousel-prev,
.carousel-next {
  background: rgba(255, 255, 255, 0.9);
  color: rgb(255, 79, 79);
  border: 2px solid rgba(255, 255, 255, 0.3);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 100;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: linear-gradient(135deg, #e76f51 0%, #f4a261 100%);
  border-color: #e76f51;
  transform: scale(1.15);
  box-shadow: 0 10px 30px rgba(231, 111, 81, 0.5);
}

/* Contact Section */
/* Contact Section */
.contact-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f4f0 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 0 L50 50 M50 0 L100 50 M0 50 L50 100" stroke="rgba(231, 111, 81, 0.03)" stroke-width="1"/></svg>');
  opacity: 0.5;
  pointer-events: none;
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin: 3rem 0 4rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 2rem;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.contact-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e76f51 0%, #ff8c69 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.contact-item:hover::before {
  transform: scaleX(1);
}

.contact-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(231, 111, 81, 0.2);
}

.contact-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff5f0 0%, #ffe8dd 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  transition: all 0.4s ease;
}

.contact-icon-wrapper::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 2px solid rgba(231, 111, 81, 0.2);
  opacity: 0;
  transition: all 0.4s ease;
}

.contact-item:hover .contact-icon-wrapper {
  background: linear-gradient(135deg, #e76f51 0%, #ff8c69 100%);
  transform: rotate(360deg) scale(1.1);
}

.contact-item:hover .contact-icon-wrapper::after {
  opacity: 1;
  transform: scale(1.2);
}

.contact-icon-svg {
  color: #e76f51;
  transition: all 0.4s ease;
}

.contact-item:hover .contact-icon-svg {
  color: #ffffff;
  transform: scale(1.1);
}

.contact-info-text {
  width: 100%;
}

.contact-info-text h4 {
  color: #2a1810;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
}

.contact-info-text p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.contact-info-text strong {
  color: #e76f51;
  font-weight: 600;
}

.contact-link {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.6rem 1.5rem;
  background: linear-gradient(135deg, #e76f51 0%, #ff8c69 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(231, 111, 81, 0.3);
}

.contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 111, 81, 0.4);
}

/* Reservation CTA */
.reservation-cta {
  text-align: center;
  margin-top: 3rem;
}

.open-booking-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, #e76f51 0%, #ff8c69 100%);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(231, 111, 81, 0.3);
  position: relative;
}

.open-booking-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(231, 111, 81, 0.5);
  background: linear-gradient(135deg, #ff8c69 0%, #e76f51 100%);
}

.open-booking-btn:active {
  transform: translateY(-2px);
}

.open-booking-btn svg {
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-item {
    padding: 2rem 1.5rem;
  }

  .contact-icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .open-booking-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #3d2817 0%, #2a1810 100%);
  color: #e0d5c7;
  padding: 4rem 0 0;
  position: relative;
}

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

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

.footer-column {
  display: flex;
  flex-direction: column;
}

/* Column 1: Brand */
.footer-brand {
  max-width: 350px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.footer-logo img {
  width: 45px;
  height: 45px;
  filter: brightness(0) invert(1);
}

.footer-logo h3 {
  font-family: "Rancho", cursive;
  font-size: 2rem;
  color: #ff8c69;
  margin: 0;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #c9b8a8;
  font-style: italic;
  margin-bottom: 1.8rem;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: #d4c4b4;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #ff8c69;
}

/* Footer Titles */
.footer-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #ff8c69 0%, transparent 100%);
}

/* Opening Hours */
.footer-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-hours li:last-child {
  border-bottom: none;
}

.footer-hours .day {
  color: #c9b8a8;
  font-size: 0.9rem;
  flex: 1;
}

.footer-hours .time {
  color: #ff9a76;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: right;
}

/* Information Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  color: #c9b8a8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a::before {
  content: "▸";
  color: #ff8c69;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  color: #ff8c69;
  padding-left: 0.5rem;
}

.footer-links a:hover::before {
  transform: translateX(3px);
}

/* Social Section */
.footer-social-text {
  font-size: 0.9rem;
  color: #c9b8a8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social-icons {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 140, 105, 0.1);
  border: 1px solid rgba(255, 140, 105, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff8c69;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: #ff8c69;
  color: #2a1810;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 140, 105, 0.4);
}

/* Newsletter */
.footer-newsletter h5 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-newsletter p {
  font-size: 0.85rem;
  color: #c9b8a8;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 140, 105, 0.2);
  border-radius: 50px;
  padding: 4px;
  transition: all 0.3s ease;
}

.newsletter-form:focus-within {
  border-color: #ff8c69;
  box-shadow: 0 0 0 3px rgba(255, 140, 105, 0.1);
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.8rem 1.2rem;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8c69 0%, #ff6b45 100%);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 140, 105, 0.4);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}

.footer-copyright {
  color: #b0a090;
  font-size: 0.9rem;
}

.footer-copyright .heart {
  color: #ff6b6b;
  display: inline-block;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
}

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

.footer-bottom-links a {
  color: #b0a090;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #ff8c69;
}

.footer-bottom-links .separator {
  color: rgba(255, 255, 255, 0.3);
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8c69 0%, #ff6b45 100%);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 140, 105, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(255, 140, 105, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-hours li {
    flex-direction: column;
    gap: 0.3rem;
  }

  .footer-hours .time {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 3rem 0 0;
  }

  .footer-container {
    padding: 0 1.5rem;
  }

  .footer-social-icons {
    justify-content: flex-start;
  }

  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Menu Order Confirmation Modal */
.menu-order-confirmation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  z-index: 3000;
  animation: fadeIn 0.3s ease;
}

.menu-order-confirmation .confirmation-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.menu-order-confirmation .confirmation-content h3 {
  color: #e76f51;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.menu-order-confirmation .confirmation-content p {
  color: #333;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.menu-order-confirmation .confirmation-close {
  background: linear-gradient(45deg, #e76f51, #f4a261);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-order-confirmation .confirmation-close:hover {
  background: linear-gradient(45deg, #d35400, #e76f51);
  transform: translateY(-2px);
}

.menu-order-btn.clicked {
  transform: translateY(-2px) scale(0.95);
  background: linear-gradient(45deg, #d35400, #e76f51);
}

/* ===================================
   DARK MODE STYLES
   =================================== */

/* CSS Variables for Light Theme (Default) */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-card: #ffffff;
  --text-primary: #ffbb00;
  --text-secondary: #ff8686;
  --text-muted: #999999;
  --border-color: #e0e0e0;
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.15);
  --shadow-heavy: rgba(0, 0, 0, 0.2);
  --overlay-dark: rgba(149, 149, 149, 0.5);
  --accent-color: #e76f51;
  --accent-hover: #d35f41;
}

/* CSS Variables for Dark Theme */
[data-theme="dark"] {
  --bg-primary: #1a1a1a;
  --bg-secondary: #2d2d2d;
  --bg-card: #252525;
  --text-primary: #f0f0f0;
  --text-secondary: #b0b0b0;
  --text-muted: #888888;
  --border-color: #404040;
  --shadow-light: rgba(0, 0, 0, 0.3);
  --shadow-medium: rgba(0, 0, 0, 0.4);
  --shadow-heavy: rgba(0, 0, 0, 0.5);
  --overlay-dark: rgba(0, 0, 0, 0.7);
  --accent-color: #ff8566;
  --accent-hover: #ff6b47;
}

/* Apply theme variables to elements */
body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  transition: background-color 0.3s ease, color 0.3s ease;
}

body.theme-transitioning * {
  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease !important;
}

/* Navigation */
.navbar {
  background-color: var(--bg-card);
  box-shadow: 0 2px 10px var(--shadow-light);
}

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

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

.nav-menu a:hover {
  color: var(--accent-color);
}

/* Sections */
.top-sellers-section,
.about-section,
.menu-section,
.events-section,
.contact-section {
  background-color: var(--bg-secondary);
}

/* Cards */
.seller-card,
.chef-card,
.menu-item,
.event-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 15px var(--shadow-light);
}

.seller-card:hover,
.chef-card:hover,
.menu-item:hover {
  box-shadow: 0 8px 25px var(--shadow-medium);
}

/* Section Headers */
.section-header h2 {
  color: var(--text-primary);
}

.section-header p {
  color: var(--text-secondary);
}

/* Text Elements */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-primary);
}

p {
  color: var(--text-secondary);
}

/* Buttons */
.cta-button,
.order-btn {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
}

.cta-button:hover,
.order-btn:hover {
  background: linear-gradient(135deg, var(--accent-hover), var(--accent-color));
}

/* Form Elements */
.contact-form input,
.contact-form select,
.contact-form textarea {
  background-color: var(--bg-card);
  color: var(--text-primary);
  border: 2px solid var(--border-color);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent-color);
  background-color: var(--bg-card);
}

/* Footer */
.footer {
  background-color: var(--bg-card);
  color: var(--text-secondary);
  border-top: 1px solid var(--border-color);
}

/* Dark Mode Toggle Button */
.theme-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px var(--shadow-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s ease;
  z-index: 9999;
}

.theme-toggle:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 6px 20px var(--shadow-heavy);
}

.theme-toggle:active {
  transform: scale(0.95);
}

.theme-toggle .sun-icon,
.theme-toggle .moon-icon {
  position: absolute;
  transition: all 0.3s ease;
}

.theme-toggle .sun-icon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.theme-toggle .moon-icon {
  opacity: 0;
  transform: rotate(180deg) scale(0);
}

.theme-toggle.dark-mode .sun-icon {
  opacity: 0;
  transform: rotate(-180deg) scale(0);
}

.theme-toggle.dark-mode .moon-icon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* Dark mode specific adjustments */
[data-theme="dark"] .slide-content {
  background: rgba(0, 0, 0, 0.7);
}

[data-theme="dark"] .seller-badge,
[data-theme="dark"] .menu-column-title {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

[data-theme="dark"] .hamburger span {
  background-color: var(--text-primary);
}

[data-theme="dark"] .prev,
[data-theme="dark"] .next {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

[data-theme="dark"] .prev:hover,
[data-theme="dark"] .next:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .dot {
  background-color: rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .dot.active {
  background-color: var(--accent-color);
}

/* Responsive adjustments for dark mode toggle */
@media (max-width: 768px) {
  .theme-toggle {
    width: 50px;
    height: 50px;
    font-size: 20px;
    bottom: 20px;
    right: 20px;
  }

  /* Nav right section mobile */
  .nav-right {
    gap: 15px;
  }

  .welcome-badge {
    display: none !important;
    /* Hide on mobile to save space */
  }

  .nav-cart-btn {
    width: 45px;
    height: 45px;
  }

  .nav-cart-count {
    width: 20px;
    height: 20px;
    font-size: 0.65rem;
  }

  /* Hide dropdown on mobile */
  .dropdown-menu {
    display: none !important;
  }

  .nav-dropdown > a::after {
    content: none;
  }

  /* About Restaurant responsive */
  .about-content-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image-left,
  .about-image-right {
    display: none;
  }

  .about-text-content {
    padding: 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .service-item {
    min-height: 300px;
    padding: 2.5rem 1.5rem;
  }

  /* Events Section Mobile */
  .events-section {
    padding: 4rem 0;
  }

  .event-video-container {
    min-height: 500px;
  }

  .event-overlay {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }

  .event-title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .event-date-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .event-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .event-booking-btn {
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
  }

  .carousel-controls {
    gap: 1rem;
    margin-top: 2rem;
  }

  .carousel-prev,
  .carousel-next {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .service-item h3 {
    font-size: 1.5rem;
  }

  .service-item .text {
    font-size: 0.9rem;
  }

  .openings-content {
    padding: 2rem 1rem;
  }

  .info-list {
    width: 100%;
  }
}

/* Event Modal Styles */
.event-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  animation: fadeInModal 0.3s ease;
}

@keyframes fadeInModal {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.event-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #fff;
  margin: 2rem auto;
  padding: 0;
  width: 90%;
  max-width: 900px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  animation: slideUpModal 0.4s ease;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

@keyframes slideUpModal {
  from {
    transform: translateY(50px);
    opacity: 0;
  }

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

.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  color: white;
  font-size: 35px;
  font-weight: 300;
  cursor: pointer;
  z-index: 10001;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.modal-close:hover {
  background: rgba(231, 111, 81, 0.9);
  transform: rotate(90deg);
}

.modal-video-container {
  position: relative;
  width: 100%;
  min-height: 500px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  /* Video không tương tác được */
}

/* Text overlay on top of video */
.modal-text-overlay {
  position: relative;
  z-index: 10;
  padding: 4rem 3rem;
  max-width: 800px;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  margin: 2rem;
}

.modal-title {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.modal-date {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.2rem;
  color: #f4a261;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.modal-description {
  font-family: "Libre Franklin", sans-serif;
  font-size: 1.15rem;
  line-height: 1.9;
  color: #f0f0f0;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* Responsive modal */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    margin: 1rem auto;
  }

  .modal-video-container {
    min-height: 400px;
  }

  .modal-text-overlay {
    padding: 2.5rem 1.5rem;
    margin: 1rem;
  }

  .modal-title {
    font-size: 1.8rem;
  }

  .modal-date {
    font-size: 0.95rem;
  }

  .modal-description {
    font-size: 1rem;
  }

  .modal-close {
    right: 15px;
    top: 15px;
    width: 40px;
    height: 40px;
    font-size: 30px;
  }

  .info-list li {
    font-size: 1rem;
  }

  .chefs-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== PRELOADER ========== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  text-align: center;
  opacity: 0;
  animation: logoFadeIn 2s ease forwards;
}

.preloader-logo h1 {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: 2px;
}

.preloader-logo p {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.5rem;
  color: #f4a261;
  margin: 0.5rem 0 0 0;
  letter-spacing: 8px;
  text-transform: uppercase;
}

@keyframes logoFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* ========== BOOKING MODALS ========== */
.booking-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  animation: fadeInModal 0.3s ease;
}

.booking-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-modal-content {
  background: linear-gradient(135deg, #fff 0%, #fef6f0 100%);
  margin: 0.5rem auto;
  padding: 1.5rem 2rem;
  width: 90%;
  max-width: 450px;
  border-radius: 20px;
  position: relative;
  animation: slideUpModal 0.4s ease;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border: 3px solid #e76f51;
}

.booking-form-content {
  max-width: 550px;
  padding: 1.5rem 1.5rem;
}

.booking-food-content {
  max-width: 800px;
  padding: 1.5rem;
}

.booking-success-content {
  max-width: 800px;
  text-align: center;
}

.booking-modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  color: #333;
  font-size: 35px;
  font-weight: 300;
  cursor: pointer;
  z-index: 10001;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(231, 111, 81, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.booking-modal-close:hover {
  background: #e76f51;
  color: white;
  transform: rotate(90deg);
}

.booking-modal-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Booking Options */
.booking-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.booking-option-btn {
  background: linear-gradient(135deg, #e76f51 0%, #f4a261 100%);
  border: none;
  border-radius: 50px;
  padding: 1rem 1.5rem;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  box-shadow: 0 5px 15px rgba(231, 111, 81, 0.3);
}

.booking-option-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(231, 111, 81, 0.4);
}

.booking-icon {
  font-size: 1.3rem;
}

.booking-social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.booking-social-links a {
  color: #333;
  transition: all 0.3s ease;
}

.booking-social-links a:hover {
  color: #e76f51;
  transform: translateY(-3px);
}

/* Booking Form */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
}

.form-hint {
  font-size: 0.7rem;
  font-weight: 400;
  color: #666;
}

.form-group input,
.form-group textarea {
  padding: 0.7rem 0.9rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: "Libre Franklin", sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e76f51;
  box-shadow: 0 0 0 3px rgba(231, 111, 81, 0.1);
}

.booking-submit-btn,
.booking-complete-btn {
  background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
  border: none;
  border-radius: 50px;
  padding: 1rem 2rem;
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  box-shadow: 0 5px 15px rgba(231, 111, 81, 0.3);
}

.booking-complete-btn {
  margin-top: 2rem;
}

.booking-submit-btn:hover,
.booking-complete-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(231, 111, 81, 0.4);
}

/* Booking with Food */
.booking-food-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.food-menu-section h3,
.cart-section h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 0.8rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid #e76f51;
}

.food-menu-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.food-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.food-item:hover {
  border-color: #e76f51;
  box-shadow: 0 3px 10px rgba(231, 111, 81, 0.2);
}

.food-name {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 600;
  color: #333;
  flex: 1;
  font-size: 0.9rem;
}

.food-price {
  font-family: "Libre Franklin", sans-serif;
  font-weight: 700;
  color: #e76f51;
  margin: 0 0.8rem;
  font-size: 0.95rem;
}

.add-to-cart-btn {
  background: #e76f51;
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.add-to-cart-btn:hover {
  background: #d35400;
  transform: scale(1.1);
}

.cart-section {
  background: rgba(231, 111, 81, 0.05);
  padding: 1rem;
  border-radius: 12px;
  border: 2px solid #e76f51;
}

.cart-items {
  min-height: 150px;
  max-height: 200px;
  overflow-y: auto;
  margin-bottom: 0.8rem;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem;
  background: white;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.cart-item-name {
  font-family: "Josefin Sans", sans-serif;
  color: #333;
  flex: 1;
}

.cart-item-price {
  font-weight: 600;
  color: #e76f51;
  margin: 0 1rem;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-qty-btn {
  background: #e76f51;
  color: white;
  border: none;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.cart-qty-btn:hover {
  background: #d35400;
}

.cart-qty-btn.remove-btn {
  background: #dc3545;
}

.cart-qty-btn.remove-btn:hover {
  background: #c82333;
}

.cart-summary {
  border-top: 2px solid #e76f51;
  padding-top: 1rem;
  margin-top: 1rem;
}

.cart-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-family: "Libre Franklin", sans-serif;
  color: #333;
}

.cart-total {
  font-weight: 700;
  font-size: 1.2rem;
  color: #e76f51;
  border-top: 2px solid #e76f51;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
}

.cart-payment-options {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1rem;
}

.payment-btn {
  background: linear-gradient(135deg, #e76f51 0%, #d35400 100%);
  border: none;
  border-radius: 25px;
  padding: 0.8rem 1.5rem;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.payment-btn:hover {
  transform: translateX(5px);
  box-shadow: 0 3px 10px rgba(231, 111, 81, 0.3);
}

/* Success Modal */
.success-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.success-message {
  font-family: "Libre Franklin", sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2rem;
}

.success-contact {
  background: rgba(231, 111, 81, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  margin-bottom: 2rem;
}

.success-contact p {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.1rem;
  color: #333;
  margin: 0.5rem 0;
}

.success-btn {
  background: linear-gradient(135deg, #e76f51 0%, #f4a261 100%);
  border: none;
  border-radius: 50px;
  padding: 1.2rem 3rem;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(231, 111, 81, 0.3);
}

.success-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(231, 111, 81, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .preloader-logo h1 {
    font-size: 2.5rem;
  }

  .preloader-logo p {
    font-size: 1rem;
    letter-spacing: 4px;
  }

  .booking-modal-content {
    width: 95%;
    padding: 2rem 1.5rem;
  }

  .booking-modal-title {
    font-size: 1.8rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .booking-food-layout {
    grid-template-columns: 1fr;
  }

  .booking-option-btn {
    font-size: 1rem;
    padding: 1.2rem 1.5rem;
  }

  .success-title {
    font-size: 1.5rem;
  }

  .success-message {
    font-size: 1rem;
  }
}

/* ========== GUEST NAME MODAL ========== */
.guest-modal {
  display: flex;
  position: fixed;
  z-index: 100000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(15px);
}

.guest-modal.hidden {
  display: none;
}

.guest-modal-content {
  background: linear-gradient(135deg, #fff 0%, #fef6f0 100%);
  padding: 3rem;
  width: 90%;
  max-width: 500px;
  border-radius: 30px;
  text-align: center;
  animation: slideUpModal 0.5s ease;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border: 3px solid #e76f51;
}

.guest-modal-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.guest-modal-subtitle {
  font-family: "Libre Franklin", sans-serif;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

.guest-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.guest-form input {
  padding: 1rem 1.5rem;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-family: "Libre Franklin", sans-serif;
  font-size: 1.1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.guest-form input:focus {
  outline: none;
  border-color: #e76f51;
  box-shadow: 0 0 0 4px rgba(231, 111, 81, 0.1);
}

.guest-submit-btn {
  background: linear-gradient(135deg, #e76f51 0%, #f4a261 100%);
  border: none;
  border-radius: 50px;
  padding: 1.2rem 2rem;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(231, 111, 81, 0.3);
}

.guest-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(231, 111, 81, 0.4);
}

/* ========== WELCOME BADGE (In Navbar) ========== */
.welcome-badge {
  background: linear-gradient(90deg, #ff7e5f, #ffb347);
  padding: 8px 18px;
  border-radius: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.5s ease both;
}

.welcome-badge.hidden {
  display: none;
}

.welcome-text {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}

#guestDisplayName {
  font-weight: 700;

  color: #fff;
}

/* ========== CART MODAL ========== */
.cart-modal-items {
  min-height: 200px;
  max-height: 400px;
  overflow-y: auto;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(231, 111, 81, 0.05);
  border-radius: 15px;
}

.cart-modal-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: white;
  border-radius: 10px;
  margin-bottom: 0.8rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.cart-modal-item-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.cart-modal-item-name {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 600;
  color: #333;
  font-size: 1.05rem;
}

.cart-modal-item-price {
  font-family: "Libre Franklin", sans-serif;
  font-size: 0.9rem;
  color: #666;
}

.cart-modal-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-modal-qty {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  min-width: 30px;
  text-align: center;
}

.cart-modal-qty-btn {
  background: #e76f51;
  color: white;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 600;
}

.cart-modal-remove-btn {
  background: #dc3545;
  color: white;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.cart-modal-item-total {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  color: #e76f51;
  font-size: 1.1rem;
  text-align: right;
}

.cart-modal-qty-btn:hover {
  background: #d35400;
  transform: scale(1.1);
}

.cart-modal-remove-btn:hover {
  background: #c82333;
  transform: scale(1.1);
}

.cart-modal-summary {
  border-top: 2px solid #e76f51;
  padding-top: 1rem;
  margin-bottom: 1.5rem;
}

.cart-modal-summary .cart-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-family: "Libre Franklin", sans-serif;
  color: #333;
  font-size: 1.1rem;
}

.cart-modal-summary .cart-total {
  font-weight: 700;
  font-size: 1.3rem;
  color: #e76f51;
  border-top: 2px solid #e76f51;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
}

.book-from-cart-btn {
  width: 100%;
  margin-top: 0;
  background: linear-gradient(135deg, #e76f51 0%, #f4a261 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(231, 111, 81, 0.3);
}

.book-from-cart-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(231, 111, 81, 0.5);
}

/* Update contact section */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.reservation-cta {
  text-align: center;
  padding: 2rem 0;
}

.open-booking-btn {
  background: linear-gradient(135deg, #e76f51 0%, #f4a261 100%);
  border: none;
  border-radius: 50px;
  padding: 1.5rem 3rem;
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(231, 111, 81, 0.3);
}

.open-booking-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(231, 111, 81, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .guest-modal-title {
    font-size: 1.8rem;
  }

  .cart-modal-item {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .cart-modal-item-controls {
    justify-content: space-between;
  }

  .cart-modal-item-total {
    text-align: left;
    font-size: 1.2rem;
  }

  .cart-modal-items {
    max-height: 300px;
  }

  .book-from-cart-btn {
    font-size: 1.1rem;
    padding: 0.9rem 1.5rem;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}
