/* Import elegant fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap');

body {
  background-image: url('assets/images/food-background.jpg');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.7);
  background-blend-mode: overlay;
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  min-height: 100vh;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* Logo Container */
.logo-container {
  text-align: center;
  margin: 20px 0;
  padding: 20px;
}

.logo-container img {
  max-width: 150px;
  filter: drop-shadow(0 4px 12px rgba(201, 169, 110, 0.4));
  transition: transform 0.3s ease;
}

.logo-container img:hover {
  transform: scale(1.05);
}

/* Enhanced Category Tabs */
.category-tabs {
  text-align: center;
  margin-bottom: 30px;
  padding: 0 20px;
}

.category-tab {
  background: rgba(201, 169, 110, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(201, 169, 110, 0.3);
  color: #c9a96e;
  margin: 8px;
  padding: 12px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-shadow: 0 2px 8px rgba(201, 169, 110, 0.15);
}

.category-tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.2), transparent);
  transition: left 0.5s ease;
}

.category-tab:hover::before {
  left: 100%;
}

.category-tab.active,
.category-tab:hover {
  background: rgba(201, 169, 110, 0.4);
  color: #c9a96e;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 169, 110, 0.3);
  border-color: rgba(201, 169, 110, 0.7);
}

/* Enhanced Menu Grid */
.menu-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 30px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Enhanced Carousel Caption */
.carousel-caption h5 {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #c9a96e;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(201, 169, 110, 0.3);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.carousel-caption p {
  font-size: 1.3rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
  letter-spacing: 1px;
}

/* Enhanced Category Grid */
.category-grid {
  padding: 30px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Enhanced Category Tile */
.category-tile {
  background: linear-gradient(135deg, rgba(25, 25, 25, 0.95), rgba(15, 15, 15, 0.9));
  border: 2px solid rgba(201, 169, 110, 0.3);
  border-radius: 15px;
  padding: 15px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.category-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.1), transparent);
  transition: left 0.5s ease;
}

.category-tile:hover::before {
  left: 100%;
}

.category-tile:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 35px rgba(201, 169, 110, 0.4);
  border-color: rgba(201, 169, 110, 0.7);
  background: linear-gradient(135deg, rgba(35, 35, 35, 0.95), rgba(25, 25, 25, 0.9));
}

.category-tile img {
  height: 140px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
  filter: brightness(0.9);
}

.category-tile:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Enhanced Category Box */
.category-box {
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
  border: 2px solid rgba(201, 169, 110, 0.2);
}

.category-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
  transition: background 0.3s ease;
}

.category-box:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(201, 169, 110, 0.3);
  border-color: rgba(201, 169, 110, 0.5);
}

.category-box:hover::before {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
}

/* Enhanced Category Title */
.category-title {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #c9a96e;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  z-index: 2;
  position: relative;
}

/* Enhanced Menu Intro */
.menu-intro {
  background-color: #0f0f0f;
  background-image: url('../images/pattern.svg');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  padding: 50px 20px;
}

.section-subtitle {
  color: #c9a96e;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(201, 169, 110, 0.15);
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #c9a96e, transparent);
  border-radius: 2px;
  margin: 15px 0;
}

.menu-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #c9a96e;
  margin-top: 15px;
  letter-spacing: 2px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.menu-intro p.lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.5px;
}

/* Enhanced Promo Event Section */
.promo-event-section {
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.95), rgba(0, 0, 0, 0.9));
  color: white;
  padding: 50px 20px;
  border-top: 2px solid rgba(201, 169, 110, 0.3);
}

.update-label {
  background: linear-gradient(135deg, #c9a96e, #b8a082);
  color: #0f0f0f;
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  font-weight: bold;
  padding: 8px 15px;
  border-radius: 25px;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
}

.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #c9a96e, transparent);
  border-radius: 2px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.event-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #c9a96e;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

/* Enhanced Instagram Button */
.btn-instagram {
  border: 2px solid #c9a96e;
  color: #c9a96e;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  background: rgba(201, 169, 110, 0.1);
}

.btn-instagram::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-instagram:hover::before {
  left: 100%;
}

.btn-instagram:hover {
  background: rgba(201, 169, 110, 0.9);
  color: #0f0f0f;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 169, 110, 0.4);
}

/* Enhanced Footer */
.soho-footer {
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.95), rgba(0, 0, 0, 0.9));
  font-family: 'Cormorant Garamond', serif;
  border-top: 2px solid rgba(201, 169, 110, 0.3);
  padding: 40px 20px;
}

.footer-logo {
  max-width: 120px;
  filter: drop-shadow(0 4px 12px rgba(201, 169, 110, 0.3));
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.footer-link:hover {
  color: #c9a96e;
  text-shadow: 0 2px 8px rgba(201, 169, 110, 0.3);
}

.footer-bold {
  font-weight: 600;
  color: #fff;
  font-family: 'Playfair Display', serif;
}

.footer-book {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
}

.footer-number {
  font-size: 1.4rem;
  font-weight: bold;
  color: #c9a96e;
  font-family: 'Playfair Display', serif;
  text-shadow: 0 2px 8px rgba(201, 169, 110, 0.3);
}

.footer-divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #c9a96e, transparent);
  border-radius: 2px;
  margin: 15px 0;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.copyright .link {
  display: inline;
  color: #c9a96e;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.copyright .link:hover {
  color: #ddbf85;
}

/* Responsive Design */
@media (max-width: 768px) {
  .carousel-caption h5 {
    font-size: 2rem;
  }
  
  .carousel-caption p {
    font-size: 1.1rem;
  }
  
  .menu-intro h2 {
    font-size: 2.2rem;
  }
  
  .event-title {
    font-size: 2rem;
  }
  
  .category-box {
    height: 160px;
  }
  
  .category-title {
    font-size: 1.1rem;
    padding: 12px;
  }
}

@media (max-width: 576px) {
  .carousel-caption h5 {
    font-size: 1.6rem;
  }
  
  .carousel-caption p {
    font-size: 1rem;
  }
  
  .menu-intro h2 {
    font-size: 1.8rem;
  }
  
  .event-title {
    font-size: 1.6rem;
  }
  
  .category-tab {
    padding: 10px 20px;
    font-size: 0.85rem;
    margin: 5px;
  }
  
  .category-box {
    height: 140px;
  }
  
  .category-title {
    font-size: 1rem;
    padding: 10px;
  }
}