/* ==========================================================================
   LUXURY LIGHT THEME STYLESHEET
   Public Restaurant Website & Customer Showcase
   Palette: Warm Ivory, Champagne Gold, Pure White & Espresso Charcoal
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Cinzel:wght@600;700;800&display=swap');

:root {
  --bg-primary: #fcfaf7;
  --bg-secondary: #f5f1e9;
  --bg-card: #ffffff;
  --bg-subtle: #f9f6f0;

  --text-heading: #1a1612;
  --text-body: #4a443e;
  --text-muted: #78716c;
  --text-gold: #b8860b;

  --gold-primary: #b8860b;
  --gold-accent: #c59b27;
  --gold-light: #fef7e6;
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  --gold-gradient-hover: linear-gradient(135deg, #e5c158 0%, #c59b27 100%);

  --border-light: #e8dfc8;
  --border-subtle: #ede8dc;
  --border-gold: rgba(184, 134, 11, 0.35);

  --shadow-sm: 0 2px 8px rgba(28, 24, 20, 0.04);
  --shadow-md: 0 10px 30px rgba(28, 24, 20, 0.06);
  --shadow-lg: 0 18px 45px rgba(28, 24, 20, 0.1);
  --shadow-gold: 0 8px 25px rgba(184, 134, 11, 0.2);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-display: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --transition: all 0.24s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-primary);
  color: var(--text-body);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: var(--font-serif);
  color: var(--text-heading);
  letter-spacing: -0.015em;
  font-weight: 700;
}

.font-display {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
}

p {
  color: var(--text-body);
  margin-bottom: 1rem;
}

/* Gold Utilities */
.text-gold {
  color: var(--gold-primary) !important;
}

.bg-gold-light {
  background-color: var(--gold-light) !important;
}

/* Buttons */
.btn-gold {
  background: var(--gold-gradient);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
}

.btn-gold:hover {
  background: var(--gold-gradient-hover);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(184, 134, 11, 0.35);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold-primary) !important;
  border: 1.5px solid var(--gold-primary);
  font-weight: 600;
  font-size: 15px;
  padding: 11px 26px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
}

.btn-gold-outline:hover {
  background: var(--gold-light);
  color: var(--gold-accent) !important;
  border-color: var(--gold-accent);
  transform: translateY(-2px);
}

.btn-luxury-dark {
  background: #1c1917;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-luxury-dark:hover {
  background: #292524;
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* Light Navbar */
.navbar-light-luxury {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1050;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}

.navbar-light-luxury .nav-link {
  color: #292524;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 18px !important;
  transition: var(--transition);
}

.navbar-light-luxury .nav-link:hover,
.navbar-light-luxury .nav-link.active {
  color: var(--gold-primary);
}

/* Hero Section (Light Luxury) */
.hero-light {
  background: linear-gradient(180deg, #fcfaf7 0%, #f7f3ec 100%);
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-light::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-tagline-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-heading {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 22px;
  color: var(--text-heading);
}

.hero-description {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: var(--text-body);
  max-width: 560px;
  margin-bottom: 34px;
  line-height: 1.7;
}

.hero-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #ffffff;
}

.hero-floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.section-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 8px;
  display: block;
}

.section-title-light {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  color: var(--text-heading);
  margin-bottom: 12px;
}

.section-desc-light {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Light Dish Card */
.dish-card-light {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.dish-card-light:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-primary);
}

.dish-img-light {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dish-card-light:hover .dish-img-light {
  transform: scale(1.04);
}

.dish-body-light {
  padding: 22px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.dish-title-light {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.dish-desc-light {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
}

.dish-price-light {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-primary);
  font-family: var(--font-serif);
}

/* Dietary Badges */
.badge-veg-light, .badge-nonveg-light {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.badge-veg-light {
  border: 1.5px solid #16a34a;
}
.badge-veg-light::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #16a34a;
  border-radius: 50%;
}

.badge-nonveg-light {
  border: 1.5px solid #dc2626;
}
.badge-nonveg-light::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 9px solid #dc2626;
}

.badge-chef-light {
  background: var(--gold-light);
  color: var(--gold-primary);
  border: 1px solid var(--border-gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 4px;
}

/* Category Cards */
.cat-card-light {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  text-decoration: none;
  display: block;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.cat-card-light:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-md);
}

.cat-title-light {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 6px;
}

/* Light Footer */
.footer-light {
  background: #f5f1e9;
  border-top: 1px solid var(--border-light);
  padding: 70px 0 30px;
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .hero-light {
    padding: 60px 0 70px;
    text-align: center;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
}
