/* Local Curry – Spice Palette Theme
   Light, warm palette inspired by turmeric, chilli & coriander.
   Drop this in as styles.css to replace the dark theme.
*/

/* ===========================
   Colour system
   =========================== */

:root {
  --bg: #FAF5EB;              /* main background (soft cream) */
  --bg-alt: #FFF7E8;          /* subtle alternate background */
  --surface: #FFFFFF;         /* cards, panels */
  --ink: #2B1B0F;             /* primary text (dark warm brown) */
  --muted: #6B4B33;           /* secondary text */
  --border-subtle: #E0D2C0;
  --border-strong: #C8A76D;

  --accent-turmeric: #DDAA2B;
  --accent-chilli:   #C6452D;
  --accent-coriander:#8FAF6C;

  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 18px 35px rgba(0, 0, 0, 0.06);
  --shadow-subtle: 0 10px 22px rgba(0, 0, 0, 0.04);
  --max-width: 960px;
}

/* ===========================
   Global
   =========================== */

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

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
               "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #FFFDF7 0, var(--bg) 40%, #F3E6D3 100%);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent-chilli);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #9f3420;
}

/* Constrain central content */
main, .section, .lc-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.3rem 2.5rem;
}

/* ===========================
   Navigation
   =========================== */

header {
  background: rgba(255, 252, 245, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229, 210, 183, 0.9);
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.85rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
}

.nav-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #FFE8A8, #DDAA2B);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.nav-logo-mark span {
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2B1606;
}

.nav-logo-text span:first-child {
  display: block;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.nav-logo-text span:last-child {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 0.7rem;
  font-size: 0.86rem;
  font-weight: 500;
}

.nav-links a {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--muted);
  border: 1px solid transparent;
}

.nav-links a:hover {
  border-color: rgba(215, 177, 117, 0.8);
  background: #FFF7E8;
  color: var(--ink);
}

.nav-links .nav-active {
  border-color: rgba(215, 177, 117, 0.9);
  background: linear-gradient(135deg, #FFE8B3, #FDE2C3);
  color: #2B1606;
}

/* ===========================
   Hero / landing sections
   =========================== */

.hero {
  margin: 2.2rem 0 2rem;
  padding: 1.8rem 1.6rem;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, #FFF6D7, #FFFDF7);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 1.8rem;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 0.7rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero .lead, .lc-lead {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

.chip-row, .lc-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.chip, .lc-pill {
  font-size: 0.8rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(221, 170, 43, 0.6);
  background: #FFFAED;
  color: var(--ink);
}

.chip--veg, .chip-row .chip:nth-child(1), .lc-pill-row .lc-pill:nth-child(1) {
  border-color: rgba(143, 175, 108, 0.8);
  background: #F5FAEE;
}

.chip--gf, .chip-row .chip:nth-child(2), .lc-pill-row .lc-pill:nth-child(2) {
  border-color: rgba(221, 170, 43, 0.75);
}

.chip--hot {
  border-color: rgba(198, 69, 45, 0.75);
  background: #FFF0EB;
}

/* Aside / panel in hero */
.hero-panel, .lc-hero-panel, .hero aside {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  padding: 1.2rem 1.3rem;
  box-shadow: var(--shadow-subtle);
  font-size: 0.9rem;
  color: var(--muted);
}

/* Labels & small details */
.lc-label {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9C7753;
  margin-bottom: 0.7rem;
}

/* ===========================
   Sections & cards
   =========================== */

.section, .lc-section {
  margin-top: 2.7rem;
}

.section-header, .lc-section > .section-header {
  margin-bottom: 1.5rem;
}

.section-header h2, .lc-section h2 {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9C7753;
  margin: 0 0 0.5rem;
}

.section-header p, .lc-section p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.card-grid, .lc-grid, .lc-recipes-grid {
  display: grid;
  gap: 1.3rem;
}

.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* Generic card */
.card, .lc-card, .lc-recipe-card, .venue {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle);
  padding: 1.1rem 1.25rem 1.25rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}

.card h3, .lc-card h3, .venue h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.02rem;
  color: var(--ink);
}

/* ===========================
   Directory / venue listings
   =========================== */

.venue {
  margin-bottom: 1.1rem;
}

.venue-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.9rem;
  font-size: 0.8rem;
  color: #8A6948;
  margin-bottom: 0.45rem;
}

.venue-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.badge-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  background: #FFF3D4;
  color: #8A550E;
  border: 1px solid rgba(221, 170, 43, 0.7);
}

/* ===========================
   Footer
   =========================== */

footer, .lc-footer {
  max-width: var(--max-width);
  margin: 0 auto 1.8rem;
  padding: 0 1.3rem;
  font-size: 0.82rem;
  color: #8A6948;
}

/* ===========================
   Responsive tweaks
   =========================== */

@media (max-width: 800px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

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