/* 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');

/* Enhanced Styles with Elegant Background */
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: 'Arial', sans-serif;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  padding-top: 0;
}

/* Enhanced Fixed Header with Soft Colors - Same as category_style_fix.css */
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(15px);
  border-bottom: 2px solid rgba(201, 169, 110, 0.4);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Back Button with Soft Elegant Colors */
.back-button {
  background: rgba(201, 169, 110, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 2px solid rgba(201, 169, 110, 0.3);
  text-decoration: none;
  color: #c9a96e;
}

.back-button:hover {
  background: rgba(201, 169, 110, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 169, 110, 0.3);
  color: #c9a96e;
}

/* Logo and Title Center */
.logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo-section img {
  max-width: 50px;
  filter: drop-shadow(0 4px 12px rgba(201, 169, 110, 0.4));
  transition: transform 0.3s ease;
  margin-bottom: 5px;
}

.logo-section img:hover {
  transform: scale(1.05);
}

/* Updated Event Title with Elegant Soft Gold */
.event-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #c9a96e;
  text-shadow: 0 2px 8px rgba(201, 169, 110, 0.3);
  letter-spacing: 1.8px;
  margin: 0;
  text-transform: uppercase;
}

/* Toggle Navigation with Soft Colors */
.nav-toggle {
  background: rgba(201, 169, 110, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(201, 169, 110, 0.3);
  position: relative;
}

.nav-toggle:hover {
  background: rgba(201, 169, 110, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 169, 110, 0.3);
}

.nav-toggle i {
  color: #c9a96e;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.nav-toggle.active i {
  transform: rotate(90deg);
}

/* Dropdown Navigation Menu with Soft Colors */
.nav-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 12px;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(201, 169, 110, 0.3);
  overflow: hidden;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.nav-dropdown.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgba(201, 169, 110, 0.3);
}

.nav-item {
  display: block;
  padding: 15px 20px;
  color: #c9a96e;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  position: relative;
  overflow: hidden;
  text-shadow: 0 2px 8px rgba(201, 169, 110, 0.15);
}

.nav-item:last-child {
  border-bottom: none;
}

.nav-item:hover {
  background: rgba(201, 169, 110, 0.1);
  color: #c9a96e;
  padding-left: 25px;
}

.nav-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: #c9a96e;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.nav-item:hover::before {
  transform: scaleY(1);
}

.nav-item.active {
  background: rgba(201, 169, 110, 0.2);
  color: #c9a96e;
}

.nav-item.active::before {
  transform: scaleY(1);
}

.nav-item i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

/* Overlay for closing dropdown */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 998;
  display: none;
}

/* Main Content */
.main-content {
  margin-top: 90px;
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

/* Enhanced Page Title Section with Elegant Background */
.page-header {
  text-align: center;
  padding: 60px 0 40px;
  background: 
    radial-gradient(circle at 20% 80%, rgba(201, 169, 110, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201, 169, 110, 0.1) 0%, transparent 50%);
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(201,169,110,0.1)"/></svg>') repeat;
  opacity: 0.3;
  pointer-events: none;
}

.section-subtitle {
  font-size: 1rem;
  letter-spacing: 3px;
  color: #c9a96e;
  font-weight: 300;
  margin-bottom: 10px;
}

.page-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #c9a96e;
  margin-bottom: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.divider {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a96e, transparent);
  margin: 20px auto;
}

.page-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* Enhanced Banner Images with Soft Color Scheme */
.banner-gallery {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.banner-item {
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.banner-item:nth-child(1) { animation-delay: 0.1s; }
.banner-item:nth-child(2) { animation-delay: 0.3s; }
.banner-item:nth-child(3) { animation-delay: 0.5s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: rgba(201, 169, 110, 0.05);
  border: 2px solid rgba(201, 169, 110, 0.2);
  cursor: pointer;
}

.banner-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(201, 169, 110, 0.2);
  border-color: rgba(201, 169, 110, 0.5);
}

.banner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(201, 169, 110, 0.1) 0%,
    transparent 50%,
    rgba(201, 169, 110, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.banner-card:hover::before {
  opacity: 1;
}

.banner-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 0;
}

.banner-card:hover .banner-image {
  transform: scale(1.05);
}

/* Zoom Icon Overlay with Soft Colors */
.zoom-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(201, 169, 110, 0.9);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
}

.banner-card:hover .zoom-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.zoom-overlay i {
  color: #000;
  font-size: 1.5rem;
}

/* Banner Title with Elegant Colors */
.banner-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.7) 70%,
    transparent 100%
  );
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  z-index: 2;
}

.banner-card:hover .banner-title {
  color: #c9a96e;
  text-shadow: 0 0 10px rgba(201, 169, 110, 0.8);
}

/* Modal Styles for Full View with Soft Colors */
.modal-content {
  background: rgba(0, 0, 0, 0.95);
  border: 2px solid rgba(201, 169, 110, 0.3);
  border-radius: 15px;
}

.modal-header {
  border-bottom: 1px solid rgba(201, 169, 110, 0.3);
}

.modal-title {
  color: #c9a96e;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.btn-close {
  filter: invert(1);
}

.modal-body {
  padding: 0;
}

.modal-body img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Footer Styles with Elegant Colors */
.soho-footer {
  background-color: #0f0f0f;
  font-family: 'Cormorant Garamond', serif;
}

.footer-logo {
  max-width: 120px;
}

.footer-link {
  color: #ccc;
  text-decoration: none;
}

.footer-link:hover {
  color: #c9a96e;
}

.footer-bold {
  font-weight: 500;
  color: #fff;
}

.footer-book {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.footer-number {
  font-size: 1.3rem;
  font-weight: bold;
  color: #c9a96e;
}

.footer-divider {
  width: 40px;
  height: 2px;
  background-color: #c9a96e;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    padding: 0 15px;
  }

  .main-content {
    margin-top: 85px;
  }

  .event-title {
    font-size: 1rem;
    letter-spacing: 1.2px;
  }

  .logo-section img {
    max-width: 45px;
  }

  .back-button,
  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .nav-dropdown {
    min-width: 180px;
    right: -10px;
  }

  .page-title {
    font-size: 2.2rem;
  }

  .banner-gallery {
    padding: 0 15px;
  }

  .banner-item {
    margin-bottom: 30px;
  }

  .banner-title {
    font-size: 1.1rem;
    padding: 20px;
  }

  .zoom-overlay {
    width: 50px;
    height: 50px;
  }

  .zoom-overlay i {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .main-content {
    margin-top: 80px;
  }

  .fixed-header {
    padding: 10px 0;
  }

  .event-title {
    font-size: 0.9rem;
  }

  .nav-dropdown {
    min-width: 160px;
    right: -5px;
  }

  .nav-item {
    padding: 12px 15px;
    font-size: 14px;
  }

  .page-title {
    font-size: 1.8rem;
  }

  .page-header {
    padding: 40px 0 30px;
  }

  .banner-title {
    font-size: 1rem;
    padding: 15px;
  }
}