/* ============================================================
   7 Seas Restaurant & Catering — Master Stylesheet
   Color Palette:  Navy #0a1628 · Gold #c8a97e · Cream #f5f0e8
   Fonts: Playfair Display (headings) · Poppins (body)
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --navy: #0a1628;
  --navy-light: #112240;
  --navy-dark: #060f1d;
  --gold: #c8a97e;
  --gold-light: #ddc9a3;
  --gold-dark: #a8895e;
  --cream: #f5f0e8;
  --cream-dark: #e8e0d2;
  --white: #ffffff;
  --text-light: #ccd6f6;
  --text-muted: #8892b0;
  --bs-body-font-family: 'Poppins', sans-serif;
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 15px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 5px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 10px 50px rgba(0, 0, 0, 0.18);
  --shadow-gold: 0 5px 25px rgba(200, 169, 126, 0.25);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--navy);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
}

a {
  text-decoration: none;
  color: var(--gold);
  transition: var(--transition);
}

a:hover {
  color: var(--gold-dark);
}

img {
  max-width: 100%;
  height: auto;
}

::selection {
  background: var(--gold);
  color: var(--white);
}

/* ---------- Utility Classes ---------- */
.section-padding {
  padding: 100px 0;
}

.section-padding-sm {
  padding: 60px 0;
}

.bg-navy {
  background-color: var(--navy);
}

.bg-navy-light {
  background-color: var(--navy-light);
}

.bg-cream {
  background-color: var(--cream);
}

.text-gold {
  color: var(--gold) !important;
}

.text-navy {
  color: var(--navy) !important;
}

.text-cream {
  color: var(--cream) !important;
}

/* ---------- Section Header ---------- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* Inline (text-start) headers — tighter spacing against body content */
.section-header.text-start {
  margin-bottom: 18px;
}

.section-header.text-start h2 {
  margin-bottom: 8px;
}

.section-header.text-start .divider {
  margin: 0 0 10px;
}

.section-header .subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.section-header .divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 20px;
  border: none;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Navy background section header overrides */
.bg-navy .section-header h2,
.bg-navy-light .section-header h2 {
  color: var(--white);
}

.bg-navy .section-header p,
.bg-navy-light .section-header p {
  color: var(--text-light);
}

/* ---------- Buttons ---------- */
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 2px solid var(--gold);
  border-radius: 0;
  transition: var(--transition);
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 2px solid var(--gold);
  border-radius: 0;
  transition: var(--transition);
}

.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--navy);
}

/* White outline variant */
.btn-white-outline {
  background: transparent;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 2px solid var(--white);
  border-radius: 0;
  transition: var(--transition);
}

.btn-white-outline:hover {
  background: var(--white);
  color: var(--navy);
}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader {
  width: 50px;
  height: 50px;
  border: 3px solid var(--navy-light);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  padding: 18px 0;
  transition: var(--transition);
  z-index: 1050;
}

.navbar.scrolled {
  background: rgba(10, 22, 40, 0.97) !important;
  padding: 10px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--white) !important;
  letter-spacing: 1px;
}

.navbar-brand span {
  color: var(--gold);
}

.navbar-nav .nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8) !important;
  padding: 8px 18px !important;
  position: relative;
  transition: var(--transition);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: calc(100% - 36px);
}

.navbar-toggler {
  border: none;
  padding: 0;
  margin-right: 8px;
  outline: none !important;
  box-shadow: none !important;
  width: 22px;
  height: 18px;
  position: relative;
}

.navbar-toggler-icon {
  width: 20px;
  height: 1.5px;
  background: var(--white);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background 0.2s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--white);
  position: absolute;
  left: 0;
  transition: top 0.2s ease, transform 0.2s ease;
}

.navbar-toggler-icon::before {
  top: -6px;
}

.navbar-toggler-icon::after {
  top: 6px;
}

/* Hamburger → X when menu is open */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  top: 0;
  transform: rotate(45deg);
  background: var(--gold);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  top: 0;
  transform: rotate(-45deg);
  background: var(--gold);
}

/* Mobile nav dropdown */
@media (max-width: 991.98px) {
  .navbar-brand {
    font-size: 1.6rem;
  }

  .navbar-collapse {
    background: rgba(10, 22, 40, 0.98);
    padding: 20px;
    margin-top: 15px;
    border-top: 1px solid rgba(200, 169, 126, 0.2);
  }

  .navbar-nav .nav-link {
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .footer-brand {
    font-size: 1.8rem;
  }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--navy);
  overflow: hidden;
  padding: 140px 0 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0%   { transform: scale(1);    }
  100% { transform: scale(1.08); }
}

/* Dark gradient overlay for text legibility */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(6, 15, 29, 0.75) 0%,
      rgba(10, 22, 40, 0.55) 40%,
      rgba(10, 22, 40, 0.60) 60%,
      rgba(6, 15, 29, 0.85) 100%
    );
}

/* Subtle gold radial accents on top of the overlay */
.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(200, 169, 126, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(200, 169, 126, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(200, 169, 126, 0.06) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content .hero-badge {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200, 169, 126, 0.3);
  padding: 8px 25px;
  margin-bottom: 30px;
}

.hero-content h1 {
  font-size: 4.5rem;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-content h1 span {
  color: var(--gold);
  display: block;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.scroll-indicator:hover {
  color: var(--gold);
}

.scroll-indicator:hover .mouse {
  border-color: var(--gold);
}

.scroll-indicator .mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(200, 169, 126, 0.4);
  border-radius: 20px;
  position: relative;
}

.scroll-indicator .mouse::before {
  content: '';
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 22px; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 160px 0 100px;
  text-align: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(200, 169, 126, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(200, 169, 126, 0.04) 0%, transparent 50%);
}

.page-hero h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 15px;
  position: relative;
}

.page-hero .breadcrumb {
  justify-content: center;
  position: relative;
}

.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--text-light);
  letter-spacing: 1px;
}

.page-hero .breadcrumb-item.active {
  color: var(--gold);
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-muted);
}

/* ============================================================
   ABOUT PREVIEW (Home)
   ============================================================ */
.about-preview {
  position: relative;
}

.about-preview .about-img-wrapper {
  position: relative;
  padding: 20px;
}

.about-preview .about-img-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  transform: translate(15px, 15px);
  z-index: 0;
}

.about-preview .about-img-wrapper img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 400px;
  object-fit: cover;
  filter: brightness(0.85);
}

.about-preview .experience-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--gold);
  color: var(--navy);
  padding: 20px 25px;
  text-align: center;
  z-index: 2;
}

.about-preview .experience-badge .number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.about-preview .experience-badge .label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-text h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-text p {
  color: #555;
  margin-bottom: 15px;
}

.about-text .signature {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold);
  margin-top: 20px;
}

/* ============================================================
   FEATURED DISHES
   ============================================================ */
.dish-card {
  background: var(--white);
  border: none;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.dish-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.dish-card .card-img-top {
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dish-card:hover .card-img-top {
  transform: scale(1.05);
}

.dish-card .img-wrapper {
  overflow: hidden;
  position: relative;
}

.dish-card .img-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(10, 22, 40, 0.3));
}

.dish-card .card-body {
  padding: 25px;
  text-align: center;
}

.dish-card .card-title {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.dish-card .card-text {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.dish-card .price {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.feature-box {
  text-align: center;
  padding: 40px 30px;
  transition: var(--transition);
  border: 1px solid rgba(200, 169, 126, 0.15);
  height: 100%;
}

.feature-box:hover {
  background: var(--navy-light);
  border-color: var(--gold);
  transform: translateY(-5px);
}

.feature-box .icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 1.8rem;
  transition: var(--transition);
}

.feature-box:hover .icon {
  background: var(--gold);
  color: var(--navy);
}

.feature-box h5 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.feature-box p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ============================================================
   CATERING HIGHLIGHT
   ============================================================ */
.catering-highlight {
  position: relative;
  padding: 120px 0;
  background: var(--cream);
  overflow: hidden;
}

.catering-highlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 30%, rgba(200, 169, 126, 0.12) 0%, transparent 50%);
}

.catering-highlight h2 {
  font-size: 2.8rem;
  color: var(--navy);
  margin-bottom: 20px;
}

.catering-highlight p {
  color: var(--text);
  font-size: 1.1rem;
  margin-bottom: 35px;
}

.catering-types {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 35px;
}

.catering-types .type-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--gold);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 500;
}

.catering-types .type-badge i {
  color: var(--gold);
}

/* ============================================================
   TESTIMONIALS — 3-AT-A-TIME SLIDER
   ============================================================ */
.testimonial-slider {
  position: relative;
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.testimonial-card {
  background: var(--cream);
  padding: 40px 30px 35px;
  text-align: center;
  border: none;
  box-shadow: var(--shadow-sm);
  position: relative;
  flex-shrink: 0;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.testimonial-card .stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 18px;
  letter-spacing: 3px;
}

.testimonial-card .quote {
  font-style: italic;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 22px;
  position: relative;
  padding-top: 20px;
}

.testimonial-card .quote::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}

.testimonial-card .client-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.testimonial-card .client-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Slider arrows — square, at outer edges */
.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  background: var(--white);
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
}

.testimonial-arrow:hover {
  background: var(--gold);
  color: var(--navy);
}

.testimonial-prev {
  left: -23px;
}

.testimonial-next {
  right: -23px;
}

/* Dots */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 35px;
}

.testimonial-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.testimonial-dots .dot.active {
  background: var(--gold);
  width: 30px;
  border-radius: 20px;
}

/* Tablet — arrows inside to avoid overflow */
@media (max-width: 991.98px) {
  .testimonial-prev {
    left: 8px;
  }
  .testimonial-next {
    right: 8px;
  }
  .testimonial-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.92);
  }
}

/* Mobile */
@media (max-width: 575.98px) {
  .testimonial-card {
    padding: 35px 22px 28px;
  }
  .testimonial-card .quote {
    font-size: 0.9rem;
  }
  .testimonial-arrow {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }
  .testimonial-prev {
    left: 5px;
  }
  .testimonial-next {
    right: 5px;
  }
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 80px 0 100px;
  text-align: center;
  background: var(--cream);
}

.cta-section h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 35px;
}

/* ============================================================
   MAP SECTION
   ============================================================ */
.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  filter: grayscale(30%) contrast(1.05);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  padding: 80px 0 0;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
  display: inline-block;
}

.footer-brand span {
  color: var(--gold);
}

.footer-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 25px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-contact li i {
  color: var(--gold);
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-contact li a {
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-contact li a:hover {
  color: var(--gold);
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-hours li span:last-child {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 169, 126, 0.3);
  color: var(--gold);
  font-size: 1rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 25px 0;
  margin-top: 60px;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
#scrollTop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-gold);
}

#scrollTop.visible {
  opacity: 1;
  visibility: visible;
}

#scrollTop:hover {
  background: var(--navy);
  color: var(--gold);
  transform: translateY(-3px);
}

/* ============================================================
   WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 46px;
  height: 46px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: bottom 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

/* When scroll-to-top is visible, move WhatsApp up above it */
#scrollTop.visible ~ .whatsapp-float {
  bottom: 79px;
}

.whatsapp-float:hover {
  background: #128c7e;
  color: var(--white);
  transform: scale(1.1);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story .story-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.about-story .story-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-story .story-text p {
  color: #555;
  margin-bottom: 15px;
}

.vision-mission-card {
  padding: 50px 40px;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(200, 169, 126, 0.2);
  transition: var(--transition);
}

.vision-mission-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.vision-mission-card .icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  background: rgba(200, 169, 126, 0.1);
  color: var(--gold);
  font-size: 2rem;
}

.vision-mission-card h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.vision-mission-card p {
  color: #666;
  font-size: 0.95rem;
}

.chef-section {
  position: relative;
}

.chef-section .chef-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: brightness(0.9);
}

.chef-section .chef-info h3 {
  font-size: 2rem;
  margin-bottom: 5px;
}

.chef-section .chef-info .designation {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.chef-section .chef-info p {
  color: #555;
  margin-bottom: 15px;
}

/* Interior gallery on about page */
.interior-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: var(--transition);
  cursor: pointer;
}

.interior-grid img:hover {
  filter: brightness(0.8);
  transform: scale(1.02);
}

/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 50px;
}

.menu-filter-dropdown {
  display: none;
  margin-bottom: 50px;
}

.menu-filter-dropdown .form-select {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 18px;
  border: 2px solid var(--gold);
  border-radius: 0;
  color: var(--gold);
  background-color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.menu-filter-dropdown .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 169, 126, 0.15);
  color: var(--navy);
}

@media (max-width: 767.98px) {
  .menu-filters {
    display: none;
  }
  .menu-filter-dropdown {
    display: block;
  }
}

.menu-filters .filter-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 25px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  transition: var(--transition);
}

.menu-filters .filter-btn.active,
.menu-filters .filter-btn:hover {
  background: var(--gold);
  color: var(--navy);
}

.menu-category {
  margin-bottom: 60px;
}

.menu-category h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 10px;
}

.menu-category .cat-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 35px;
  border: none;
}

.menu-item-card {
  background: var(--white);
  border: 1px solid #eee;
  padding: 25px;
  height: 100%;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.menu-item-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.menu-item-card .item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.menu-item-card .item-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  flex: 1;
  margin-right: 10px;
}

.menu-item-card .item-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

.menu-item-card .item-desc {
  color: #777;
  font-size: 0.85rem;
  line-height: 1.6;
  flex: 1;
}

.menu-item-card .item-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-top: 10px;
  background: rgba(200, 169, 126, 0.1);
  color: var(--gold);
}

.menu-item-card .veg-indicator {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #2e7d32;
  border-radius: 2px;
  position: relative;
  margin-right: 6px;
  vertical-align: middle;
}

.menu-item-card .veg-indicator::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #2e7d32;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.menu-item-card .non-veg-indicator {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #c62828;
  border-radius: 2px;
  position: relative;
  margin-right: 6px;
  vertical-align: middle;
}

.menu-item-card .non-veg-indicator::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 8px solid #c62828;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ============================================================
   CATERING PAGE
   ============================================================ */
.catering-card {
  background: var(--white);
  border: none;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
}

.catering-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.catering-card .card-img-top {
  height: 250px;
  object-fit: cover;
}

.catering-card .card-body {
  padding: 30px;
}

.catering-card .card-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

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

.catering-card .features-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.catering-card .features-list li {
  padding: 6px 0;
  color: #555;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.catering-card .features-list li i {
  color: var(--gold);
  font-size: 0.8rem;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0);
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover::after {
  background: rgba(10, 22, 40, 0.4);
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item .overlay i {
  color: var(--white);
  font-size: 2rem;
}

@media (max-width: 767.98px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (max-width: 575.98px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Lightbox modal */
.lightbox-modal .modal-content {
  background: transparent;
  border: none;
}

.lightbox-modal .modal-body {
  padding: 0;
  position: relative;
}

.lightbox-modal .btn-close {
  position: absolute;
  top: -40px;
  right: 0;
  filter: invert(1);
  opacity: 0.8;
}

.lightbox-modal img {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-section {
  background: var(--cream);
}

.custom-form .form-control,
.custom-form .form-select {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  padding: 14px 18px;
  border: 1px solid #ddd;
  border-radius: 0;
  background: var(--white);
  color: var(--navy);
  transition: var(--transition);
}

.custom-form .form-control:focus,
.custom-form .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 169, 126, 0.15);
}

.custom-form .form-control::placeholder {
  color: #aaa;
}

.custom-form textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.custom-form .form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.custom-form .invalid-feedback {
  font-size: 0.8rem;
}

.form-card {
  background: var(--white);
  padding: 50px;
  box-shadow: var(--shadow-md);
}

@media (max-width: 767.98px) {
  .form-card {
    padding: 30px 20px;
  }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-card {
  padding: 35px 30px;
  text-align: center;
  background: var(--white);
  border: 1px solid #eee;
  height: 100%;
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.contact-info-card .icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: rgba(200, 169, 126, 0.1);
  color: var(--gold);
  font-size: 1.4rem;
}

.contact-info-card h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.contact-info-card p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.contact-info-card a {
  color: var(--navy);
  font-weight: 500;
}

.contact-info-card a:hover {
  color: var(--gold);
}

.hours-table {
  width: 100%;
}

.hours-table td {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.9rem;
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--navy);
}

.hours-table td:last-child {
  text-align: right;
  color: #555;
}

/* ============================================================
   RESERVATION PAGE
   ============================================================ */
.reservation-info {
  background: var(--navy);
  padding: 50px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reservation-info h3 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 20px;
}

.reservation-info p {
  color: var(--text-light);
  margin-bottom: 30px;
}

.reservation-info .info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--text-light);
}

.reservation-info .info-item i {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 3px;
}

.reservation-info .info-item span {
  font-size: 0.95rem;
}

/* ============================================================
   ANIMATIONS (scroll reveal)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered reveal children */
.stagger-reveal > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-reveal.revealed > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-reveal.revealed > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-reveal.revealed > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-reveal.revealed > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-reveal.revealed > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-reveal.revealed > *:nth-child(6) { transition-delay: 0.6s; }

.stagger-reveal.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1199.98px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
  .section-header h2 {
    font-size: 2.4rem;
  }
}

@media (max-width: 991.98px) {
  .section-padding {
    padding: 70px 0;
  }
  .hero {
    padding: 120px 0 80px;
  }
  .hero-content h1 {
    font-size: 3rem;
  }
  .page-hero h1 {
    font-size: 2.8rem;
  }
  .about-preview .about-img-wrapper {
    margin-bottom: 40px;
  }
  .cta-section {
    padding: 55px 0 70px;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 60px 0;
  }
  .hero {
    padding: 110px 0 70px;
  }
  .hero-content h1 {
    font-size: 2.4rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .section-header h2 {
    font-size: 2rem;
  }
  .section-header {
    margin-bottom: 40px;
  }
  .page-hero {
    padding: 130px 0 70px;
  }
  .page-hero h1 {
    font-size: 2.2rem;
  }
  .btn-gold,
  .btn-gold-outline,
  .btn-white-outline {
    padding: 12px 28px;
    font-size: 0.8rem;
  }
  .catering-highlight h2 {
    font-size: 2rem;
  }
  .cta-section {
    padding: 40px 0 50px;
  }
  .cta-section h2 {
    font-size: 2rem;
  }
  .cta-section p {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  .reservation-info {
    padding: 30px;
    margin-bottom: 30px;
  }
}

@media (max-width: 575.98px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .section-header h2 {
    font-size: 1.8rem;
  }
  .scroll-indicator {
    display: none;
  }
}

/* ============================================================
   WORDPRESS ADMIN BAR FIX
   ============================================================ */
body.admin-bar .navbar.fixed-top {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .navbar.fixed-top {
    top: 46px;
  }
}

body.admin-bar #preloader {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar #preloader {
    top: 46px;
  }
}
