/* ============================================
   LUCKNOW INDIAN CUISINE – Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --gold: #C8860A;
  --gold-light: #F0B429;
  --gold-pale: #FDF6E3;
  --brown-dark: #3B2005;
  --brown-mid: #6B3F0C;
  --cream: #FEFAF2;
  --cream-dark: #F5EDD8;
  --white: #FFFFFF;
  --text-dark: #1A0F00;
  --text-mid: #4A3010;
  --text-muted: #8C6B3E;
  --border: rgba(200,134,10,0.18);
  --green-accent: #3A8A28;
  --header-height: 76px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(254,250,242,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo-link img { height: 46px; width: auto; }
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--brown-dark);
  letter-spacing: 0.04em;
  line-height: 1;
}
.logo-text span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  margin-top: 3px;
}

nav.main-nav {
  display: flex;
  gap: 36px;
}
nav.main-nav a {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.2s;
}
nav.main-nav a.active,
nav.main-nav a:hover { color: var(--gold); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.lang-toggle {
  font-size: 12px;
  color: var(--text-muted);
  cursor: pointer;
  letter-spacing: 0.06em;
}
.lang-toggle .active-lang { color: var(--gold); }

.btn-reserve {
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 3px;
  padding: 10px 24px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  font-family: 'Jost', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}
.btn-reserve:hover { background: var(--brown-mid); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown-dark);
  transition: all 0.3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 24px 24px 32px;
  z-index: 99;
  flex-direction: column;
  gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav a.active, .mobile-nav a:hover { color: var(--gold); }
.mobile-nav .btn-reserve { margin-top: 20px; text-align: center; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(160deg, var(--brown-dark) 0%, #5A2E08 100%);
  padding: 80px 48px 60px;
  text-align: center;
}
.page-hero .eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
}
.page-hero h1 em { color: var(--gold-light); font-style: italic; }
.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  margin: 16px auto 0;
  max-width: 480px;
  font-weight: 300;
}

/* ── FOOTER ── */
footer {
  background: var(--brown-dark);
  padding: 72px 48px 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo-img { height: 52px; width: auto; margin-bottom: 20px; }
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  font-weight: 300;
  max-width: 260px;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: all 0.2s;
}
.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-col p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
  font-weight: 300;
}
.footer-col a.map-link {
  color: var(--gold-light);
  text-decoration: none;
  font-size: 13px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--gold-light); }

/* ── SECTION UTILITIES ── */
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  color: var(--brown-dark);
  line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--gold); }

/* ── BUTTONS ── */
.btn-outline {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 12px 28px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  border-radius: 3px;
  transition: all 0.2s;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 14px 36px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Jost', sans-serif;
}
.btn-gold:hover { background: var(--brown-mid); }

/* ── FORM STYLES ── */
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}

/* ── ALERT MESSAGES ── */
.alert {
  padding: 16px 20px;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 24px;
}
.alert-success {
  background: #E6F4E0;
  color: #2D7A1E;
  border: 1px solid #b2d9a7;
}
.alert-error {
  background: #FFF0E0;
  color: #B84A00;
  border: 1px solid #f5c6a0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  header { padding: 0 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  header { padding: 0 20px; }
  nav.main-nav { display: none; }
  .header-actions .lang-toggle { display: none; }
  .header-actions .btn-reserve { display: none; }
  .hamburger { display: flex; }
  .page-hero { padding: 56px 20px 48px; }
  footer { padding: 48px 20px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-grid-2 { grid-template-columns: 1fr; }
}
