/* ============================================================
   BANQUETOS™ — Premium Catering CSS
   Powered & Developed by Damerax Cloud Solutions
   Aesthetic: Warm Gold Luxury · Celebration · Grand Hospitality
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Nunito+Sans:wght@300;400;600;700&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  /* Gold palette */
  --gold-deep:   #8B6914;
  --gold-mid:    #C9A84C;
  --gold-bright: #E8C96A;
  --gold-light:  #F5E4A8;
  --gold-glow:   rgba(201,168,76,0.18);

  /* Rich background palette */
  --bg-deep:     #0D0A06;
  --bg-dark:     #150F07;
  --bg-warm:     #1E160A;
  --bg-card:     #241A0D;
  --bg-elevated: #2E2214;

  /* Accent */
  --crimson:     #8B1A2B;
  --rose:        #C53355;
  --ivory:       #FAF4E8;
  --cream:       #F0E8D8;
  --parchment:   #E8DCC8;

  /* Text */
  --text-gold:   #E8C96A;
  --text-ivory:  #FAF4E8;
  --text-cream:  #C8B89A;
  --text-muted:  #8A7A6A;

  /* Fonts */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-headline:'Playfair Display', serif;
  --font-body:    'Nunito Sans', sans-serif;

  /* Spacing */
  --section-py:  clamp(60px, 8vw, 120px);
  --container:   1280px;

  /* Borders */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   24px;

  /* Shadows */
  --shadow-gold: 0 8px 40px rgba(201,168,76,0.15);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-deep: 0 20px 80px rgba(0,0,0,0.6);

  /* Transitions */
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset & Base ─────────────────────────────────────────── */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-deep);
  color: var(--text-ivory);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; }

/* ── Typography ───────────────────────────────────────────── */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--text-gold);
}

.display-1 { font-size: clamp(2.8rem, 7vw, 6rem); font-weight: 300; letter-spacing: -0.02em; }
.display-2 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 300; }
.section-title {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 600;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  display: block;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-mid), transparent);
  margin-top: 8px;
}
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-mid);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

/* ── Container ────────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 60px);
}

/* ── Buttons ──────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::before { opacity: 1; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-mid), var(--gold-deep));
  color: var(--bg-deep);
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-gold:hover {
  box-shadow: 0 6px 30px rgba(201,168,76,0.5);
  transform: translateY(-2px);
}

.btn-outline-gold {
  border: 1px solid var(--gold-mid);
  color: var(--gold-mid);
  background: transparent;
}
.btn-outline-gold:hover {
  background: var(--gold-glow);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

.btn-ivory {
  background: var(--ivory);
  color: var(--bg-deep);
}
.btn-ivory:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 48px; font-size: 0.9rem; }
.btn-sm { padding: 10px 22px; font-size: 0.75rem; }

/* ── Navbar ───────────────────────────────────────────────── */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.4s var(--ease);
}

.navbar.scrolled {
  background: rgba(13,10,6,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 clamp(16px, 4vw, 60px);
  max-width: var(--container);
  margin: 0 auto;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar-logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold-mid), var(--gold-deep));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.navbar-logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold-bright);
  letter-spacing: 0.05em;
}

.navbar-logo-text span {
  font-size: 0.6em;
  vertical-align: super;
  color: var(--gold-mid);
  font-weight: 300;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.navbar-nav a {
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-cream);
  border-radius: var(--radius-sm);
  transition: all 0.25s;
  position: relative;
}

.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold-mid);
  transition: width 0.3s var(--ease);
}

.navbar-nav a:hover { color: var(--gold-bright); }
.navbar-nav a:hover::after { width: 50%; }

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.navbar-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-mid);
  transition: all 0.3s;
  border-radius: 2px;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,10,6,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  backdrop-filter: blur(20px);
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-cream);
  padding: 10px 40px;
  transition: color 0.3s;
  letter-spacing: 0.05em;
}

.mobile-nav a:hover { color: var(--gold-bright); }

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2rem;
  color: var(--gold-mid);
  cursor: pointer;
  line-height: 1;
}

/* ── Hero ─────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(139,105,20,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(139,26,43,0.15) 0%, transparent 50%),
    linear-gradient(160deg, var(--bg-deep) 0%, var(--bg-warm) 50%, var(--bg-deep) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold-mid);
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}

@keyframes float-particle {
  0%   { opacity: 0; transform: translateY(100vh) rotate(0deg); }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(-20px) rotate(720deg); }
}

.hero-ornament {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(300px, 45vw, 600px);
  height: clamp(300px, 45vw, 600px);
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-ornament::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.08);
}

.hero-ornament::after {
  content: '';
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.05);
}

.hero-ornament-inner {
  font-size: clamp(120px, 20vw, 220px);
  opacity: 0.08;
  filter: blur(2px);
  animation: slow-rotate 40s linear infinite;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-glow);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  padding: 6px 20px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 600;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s var(--ease) both;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold-mid);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.7; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ivory);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s 0.1s var(--ease) both;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 300;
}

.hero-title strong {
  font-weight: 700;
  display: block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-cream);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 44px;
  font-weight: 300;
  animation: fadeInUp 0.8s 0.2s var(--ease) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  animation: fadeInUp 0.8s 0.3s var(--ease) both;
}

.hero-stats {
  display: flex;
  gap: clamp(24px, 4vw, 60px);
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(201,168,76,0.12);
  animation: fadeInUp 0.8s 0.5s var(--ease) both;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  color: var(--gold-bright);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 4px;
}

/* ── Section Base ─────────────────────────────────────────── */

.section {
  padding: var(--section-py) 0;
}

.section-header {
  margin-bottom: clamp(40px, 6vw, 80px);
  text-align: center;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-cream);
  max-width: 600px;
  margin: 16px auto 0;
  font-weight: 300;
  line-height: 1.75;
}

/* ── Occasion Cards ───────────────────────────────────────── */

.occasions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 20px;
}

.occasion-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px) 24px;
  text-align: center;
  transition: all 0.35s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.occasion-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}

.occasion-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.3);
  box-shadow: var(--shadow-gold);
}

.occasion-card:hover::before { opacity: 1; }

.occasion-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.occasion-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-gold);
  margin-bottom: 8px;
}

.occasion-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Package Cards ────────────────────────────────────────── */

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 24px;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.35s var(--ease);
  position: relative;
}

.package-card.featured {
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.1), var(--shadow-gold);
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-deep);
  border-color: rgba(201,168,76,0.35);
}

.package-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--gold-mid), var(--gold-deep));
  color: var(--bg-deep);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  z-index: 1;
}

.package-image-wrap {
  height: 200px;
  background: var(--bg-elevated);
  position: relative;
  overflow: hidden;
}

.package-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.package-card:hover .package-image-wrap img {
  transform: scale(1.06);
}

.package-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-warm));
}

.package-body {
  padding: 24px;
}

.package-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold-bright);
  margin-bottom: 6px;
}

.package-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 16px;
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
}

.package-price-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-bright);
}

.package-price-unit {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Menu Items ───────────────────────────────────────────── */

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  justify-content: center;
}

.menu-tab {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid rgba(201,168,76,0.2);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: transparent;
  transition: all 0.25s;
  cursor: pointer;
}

.menu-tab.active,
.menu-tab:hover {
  background: var(--gold-glow);
  border-color: var(--gold-mid);
  color: var(--gold-bright);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr));
  gap: 20px;
}

.menu-item-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.menu-item-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.2);
  box-shadow: var(--shadow-card);
}

.menu-item-img {
  height: 160px;
  background: var(--bg-elevated);
  position: relative;
  overflow: hidden;
}

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

.menu-item-card:hover .menu-item-img img { transform: scale(1.08); }

.menu-veg-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  border: 2px solid;
  display: flex;
  align-items: center;
  justify-content: center;
}

.veg { border-color: #4CAF50; }
.veg::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #4CAF50; }
.non-veg { border-color: #e53935; }
.non-veg::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #e53935; }

.menu-item-body {
  padding: 16px;
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-gold);
  margin-bottom: 4px;
}

.menu-item-desc {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.menu-item-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-bright);
  font-weight: 600;
}

.menu-item-price span {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 400;
  font-family: var(--font-body);
}

/* ── Trust Section ────────────────────────────────────────── */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 24px;
}

.trust-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-mid), transparent);
}

.trust-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.trust-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-bright);
  margin-bottom: 8px;
}

.trust-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Form Styles ──────────────────────────────────────────── */

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-ivory);
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: all 0.25s;
  outline: none;
}

.form-control:focus {
  border-color: var(--gold-mid);
  background: rgba(201,168,76,0.04);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}

.form-control::placeholder { color: var(--text-muted); }

select.form-control option { background: var(--bg-warm); color: var(--text-ivory); }

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

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 20px;
}

/* ── Enquiry Section ──────────────────────────────────────── */

.enquiry-section {
  background: linear-gradient(160deg, var(--bg-warm) 0%, var(--bg-dark) 100%);
  position: relative;
  overflow: hidden;
}

.enquiry-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.enquiry-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 60px);
  box-shadow: var(--shadow-deep);
  max-width: 860px;
  margin: 0 auto;
}

/* ── Divider ──────────────────────────────────────────────── */

.divider-gold {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 40px 0;
}

.divider-gold::before,
.divider-gold::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3));
}

.divider-gold::after { background: linear-gradient(90deg, rgba(201,168,76,0.3), transparent); }

.divider-gold-symbol {
  color: var(--gold-mid);
  font-size: 1.2rem;
}

/* ── Footer ───────────────────────────────────────────────── */

.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(24px, 4vw, 60px);
  margin-bottom: 48px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold-bright);
  margin-bottom: 6px;
}

.footer-brand-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social {
  width: 36px;
  height: 36px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gold-mid);
  transition: all 0.25s;
}

.footer-social:hover {
  background: var(--gold-glow);
  border-color: var(--gold-mid);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.84rem;
  color: var(--text-muted);
  transition: color 0.25s;
}

.footer-links a:hover { color: var(--text-cream); }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  align-items: flex-start;
}

.footer-contact-item span:first-child {
  color: var(--gold-mid);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a,
.footer-contact-item p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.08);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-powered {
  font-size: 0.75rem;
  color: var(--gold-deep);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.footer-powered a {
  color: var(--gold-mid);
  transition: color 0.25s;
}

.footer-powered a:hover { color: var(--gold-bright); }

/* ── PWA Install Banner ───────────────────────────────────── */

.pwa-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 16px clamp(16px, 4vw, 40px);
  z-index: 900;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.4);
  animation: slideUp 0.4s var(--ease) both;
}

.pwa-banner.visible { display: flex; }

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.pwa-banner-text {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pwa-banner-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-mid), var(--gold-deep));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.pwa-banner-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-ivory);
}

.pwa-banner-sub {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.pwa-banner-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.pwa-dismiss {
  font-size: 0.75rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px 8px;
}

/* ── Animations ───────────────────────────────────────────── */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: none;
}

/* ── Loader ───────────────────────────────────────────────── */

.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg-deep);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.5s, visibility 0.5s;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-bright);
  font-weight: 300;
  letter-spacing: 0.1em;
}

.loader-bar {
  width: 120px;
  height: 1px;
  background: rgba(201,168,76,0.15);
  border-radius: 1px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-mid), var(--gold-bright));
  border-radius: 1px;
  animation: loader-fill 1.2s var(--ease) both;
}

@keyframes loader-fill {
  from { width: 0; }
  to   { width: 100%; }
}

/* ── Alert Messages ───────────────────────────────────────── */

.alert {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  margin-bottom: 20px;
  border-left: 3px solid;
  animation: fadeIn 0.3s ease;
}

.alert-success {
  background: rgba(76,175,80,0.1);
  border-color: #4CAF50;
  color: #81C784;
}

.alert-error {
  background: rgba(229,57,53,0.1);
  border-color: #e53935;
  color: #EF9A9A;
}

.alert-info {
  background: rgba(201,168,76,0.08);
  border-color: var(--gold-mid);
  color: var(--gold-light);
}

/* ── Responsive ───────────────────────────────────────────── */

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

@media (max-width: 768px) {
  .navbar-nav { display: none; }
  .navbar-hamburger { display: flex; }
  .navbar-actions .btn { display: none; }

  .hero-ornament { display: none; }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .pwa-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .pwa-banner-actions { width: 100%; justify-content: flex-end; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-lg { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── Scrollbar ────────────────────────────────────────────── */

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-mid); }

/* ── Selection ────────────────────────────────────────────── */

::selection { background: rgba(201,168,76,0.25); color: var(--ivory); }

/* ============================================================
   Star Caterers public theme override
   Clear, light, mobile-first catering workflow
   ============================================================ */

:root {
  --gold-deep: #8a5d18;
  --gold-mid: #b8822a;
  --gold-bright: #d6a345;
  --gold-light: #f7dfad;
  --gold-glow: rgba(184, 130, 42, 0.14);
  --bg-deep: #fffaf1;
  --bg-dark: #fff3df;
  --bg-warm: #f7ead6;
  --bg-card: #ffffff;
  --bg-elevated: #f3f7f1;
  --crimson: #9f2837;
  --rose: #c84a5d;
  --ivory: #ffffff;
  --cream: #f8efe1;
  --parchment: #efe2ce;
  --text-gold: #7c5014;
  --text-ivory: #202425;
  --text-cream: #4f5a52;
  --text-muted: #727b74;
  --font-display: 'Nunito Sans', Arial, sans-serif;
  --font-headline: 'Nunito Sans', Arial, sans-serif;
  --font-body: 'Nunito Sans', Arial, sans-serif;
  --section-py: clamp(44px, 7vw, 88px);
  --radius-sm: 8px;
  --radius-md: 8px;
  --radius-lg: 8px;
  --radius-xl: 8px;
  --shadow-gold: 0 12px 28px rgba(138, 93, 24, 0.12);
  --shadow-card: 0 10px 30px rgba(36, 43, 38, 0.08);
  --shadow-deep: 0 18px 50px rgba(36, 43, 38, 0.14);
}

html { scroll-padding-top: 78px; }

body {
  background: #fffaf1;
  color: var(--text-ivory);
}

h1, h2, h3, h4, h5, h6 {
  color: #202425;
  letter-spacing: 0;
}

.display-1,
.display-2,
.section-title {
  font-weight: 800;
}

.section-title::after { background: #3d7a57; width: 72px; }
.section-eyebrow { color: #3d7a57; letter-spacing: 0.12em; }
.section-desc { color: var(--text-muted); }

.page-loader { display: none; }

.navbar,
.navbar.scrolled {
  background: rgba(255, 250, 241, 0.96);
  border-bottom: 1px solid #eadcc8;
  box-shadow: 0 8px 24px rgba(36, 43, 38, 0.08);
  backdrop-filter: blur(14px);
}

.navbar-inner {
  min-height: 68px;
  padding: 0 clamp(14px, 4vw, 40px);
}

.navbar-logo-mark {
  color: transparent;
  position: relative;
  background: #3d7a57;
  border-radius: 8px;
}

.navbar-logo-mark::before {
  content: "SC";
  color: #fff;
  font-size: 0.85rem;
  font-weight: 900;
}

.navbar-logo-text {
  color: #202425;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 900;
  letter-spacing: 0;
}

.navbar-logo-text span,
.hero-particles,
.hero-ornament { display: none; }

.navbar-nav a {
  color: #47514a;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.navbar-nav a:hover { color: #3d7a57; }

.btn {
  border-radius: 8px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 800;
  min-height: 44px;
  justify-content: center;
}

.btn-gold {
  background: #3d7a57;
  color: #fff;
  box-shadow: 0 10px 22px rgba(61, 122, 87, 0.18);
}

.btn-gold:hover {
  background: #2f6446;
  box-shadow: 0 12px 28px rgba(61, 122, 87, 0.24);
}

.btn-outline-gold {
  background: #fff;
  border-color: #c9b89e;
  color: #202425;
}

.btn-outline-gold:hover {
  background: #fff6e8;
  border-color: #b8822a;
  color: #202425;
}

.hero {
  min-height: auto;
  padding: clamp(112px, 13vw, 156px) 0 clamp(44px, 7vw, 72px);
  background:
    linear-gradient(90deg, rgba(255,250,241,0.96), rgba(255,250,241,0.84) 48%, rgba(255,250,241,0.35)),
    url("https://images.unsplash.com/photo-1555244162-803834f70033?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero-bg { display: none; }

.hero-content {
  max-width: 760px;
  padding: 0;
}

.hero-badge {
  background: #fff;
  border: 1px solid #eadcc8;
  color: #3d7a57;
  border-radius: 8px;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-card);
}

.hero-title {
  color: #202425;
  font-size: clamp(2.35rem, 7vw, 4.8rem);
  letter-spacing: 0;
}

.hero-title em,
.hero-title strong {
  color: #3d7a57;
  display: block;
}

.hero-subtitle {
  color: #4f5a52;
  max-width: 650px;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.hero-stats {
  background: rgba(255,255,255,0.92);
  border: 1px solid #eadcc8;
  border-radius: 8px;
  padding: 16px;
  gap: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: var(--shadow-card);
}

.hero-stat-num { color: #202425; font-size: clamp(1.4rem, 4vw, 2.1rem); }
.hero-stat-label { color: #657067; letter-spacing: 0; text-transform: none; font-weight: 700; }

.section { background: #fffaf1; }
.section[style*="var(--bg-dark)"], #estimate { background: #f3f7f1 !important; }

.occasions-grid,
.trust-grid,
.menu-grid,
.packages-grid {
  gap: 18px;
}

.occasion-card,
.trust-card,
.menu-item-card,
.package-card,
.enquiry-card,
#quote-builder,
.form-control {
  background: #fff;
  border: 1px solid #eadcc8;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}

.occasion-card:hover,
.trust-card:hover,
.menu-item-card:hover,
.package-card:hover {
  border-color: #b9d3c3;
  transform: translateY(-3px);
  box-shadow: var(--shadow-deep);
}

.occasion-icon,
.trust-icon {
  color: transparent;
  position: relative;
}

.occasion-icon::before,
.trust-icon::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #3d7a57;
  box-shadow: inset 0 0 0 9px #f3f7f1;
}

.occasion-name,
.trust-title,
.menu-item-name,
.package-name {
  color: #202425;
  font-family: var(--font-body);
  font-weight: 900;
}

.occasion-desc,
.trust-desc,
.menu-item-desc,
.package-tagline {
  color: #657067;
}

.package-image-wrap,
.menu-item-img {
  background:
    linear-gradient(rgba(255,250,241,0.15), rgba(255,250,241,0.15)),
    url("https://images.unsplash.com/photo-1565895405138-6c3a1555da6a?auto=format&fit=crop&w=900&q=80") center/cover;
}

.package-image-placeholder,
.menu-item-img > div {
  color: transparent !important;
  background: transparent !important;
  position: relative;
}

.package-image-placeholder::before,
.menu-item-img > div::before {
  content: "Menu";
  color: #fff;
  background: rgba(32, 36, 37, 0.68);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-badge {
  background: #f7dfad;
  color: #5d3d0f;
  border-radius: 8px;
  letter-spacing: 0;
}

.package-price-num,
.menu-item-price {
  color: #3d7a57;
  font-family: var(--font-body);
  font-weight: 900;
}

.menu-veg-badge {
  background: #fff;
  box-shadow: 0 4px 14px rgba(36, 43, 38, 0.12);
}

.form-label { color: #343b36; letter-spacing: 0; }
.form-control { color: #202425; background: #fff; box-shadow: none; }
.form-control:focus { border-color: #3d7a57; box-shadow: 0 0 0 3px rgba(61, 122, 87, 0.12); }

.mobile-nav {
  background: #fffaf1;
  color: #202425;
}

.mobile-nav a {
  color: #202425;
  border-bottom-color: #eadcc8;
}

.mobile-nav-close { color: #202425; }

.footer {
  background: #202425;
  color: #fff;
}

.footer h3,
.footer h4,
.footer-brand,
.footer-contact-item a,
.footer-contact-item p {
  color: #fff;
}

.footer a,
.footer-copy,
.footer-powered,
.footer-contact-item span:first-child {
  color: #d9e2dc;
}

@media (max-width: 900px) {
  .hero {
    background:
      linear-gradient(rgba(255,250,241,0.93), rgba(255,250,241,0.93)),
      url("https://images.unsplash.com/photo-1555244162-803834f70033?auto=format&fit=crop&w=1200&q=80") center/cover;
  }

  .hero-stats { grid-template-columns: repeat(2, 1fr); row-gap: 16px; }
}

@media (max-width: 768px) {
  .navbar-inner { min-height: 62px; }
  .navbar-actions .btn { display: none; }
  .hero-actions { align-items: stretch; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .section-header { text-align: left; }
  .section-title::after { margin-left: 0; }
}

@media (max-width: 520px) {
  .container { padding: 0 16px; }
  .hero { padding-top: 96px; }
  .hero-stats { grid-template-columns: 1fr 1fr; padding: 14px; }
  .hero-stat-label { font-size: 0.72rem; }
  .btn-lg { padding: 14px 18px; }
  .package-body,
  .menu-item-body { padding: 18px; }
  .display-2 { font-size: 2rem; }
}
