/* ===========================
   FLAIR DEVILS - GLOBAL STYLES
   Las Vegas Black & Gold Theme
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Lato:wght@300;400;700&display=swap');

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

:root {
  --gold:       #FFD700;
  --gold-light: #FFE566;
  --gold-dark:  #B8960C;
  --gold-muted: rgba(255,215,0,0.15);
  --black:      #000000;
  --near-black: #0A0A0A;
  --dark-grey:  #111111;
  --mid-grey:   #1A1A1A;
  --text-white: #F0F0F0;
  --text-grey:  #BBBBBB;
  --border:     rgba(255,215,0,0.3);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--black);
  color: var(--text-white);
  line-height: 1.7;
  min-height: 100vh;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Cinzel', serif;
  letter-spacing: 2px;
  color: var(--gold);
}
p { color: var(--text-grey); }

/* ---- NAV ---- */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0,0,0,0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  height: 64px;
}
.nav-logo {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}
.nav-logo span { color: #fff; }
.nav-links { display: flex; gap: 8px; list-style: none; }
.nav-links a {
  color: var(--text-grey);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: var(--gold-muted);
}

/* ---- HERO / PAGE HEADER ---- */
.hero {
  position: relative;
  text-align: center;
  padding: 110px 30px 90px;
  background: radial-gradient(ellipse at center top, #1a1400 0%, #000 60%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 49px,
    rgba(255,215,0,0.04) 50px
  ),
  repeating-linear-gradient(
    90deg, transparent, transparent 49px,
    rgba(255,215,0,0.04) 50px
  );
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 4px;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 6px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
  text-transform: uppercase;
  background: var(--gold-muted);
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 22px;
  text-shadow: 0 0 40px rgba(255,215,0,0.4);
}
.hero h1 em { font-style: normal; color: #fff; }
.hero p {
  max-width: 620px;
  margin: 0 auto 36px;
  font-size: 1.1rem;
  color: var(--text-grey);
}
.hero-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 36px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 3px;
  transition: all 0.25s;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(255,215,0,0.35);
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 28px rgba(255,215,0,0.55);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold-muted);
  transform: translateY(-2px);
}

/* ---- SECTIONS ---- */
section { padding: 80px 30px; }
section:nth-child(even) { background: var(--dark-grey); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}
.section-sub {
  color: var(--text-grey);
  max-width: 580px;
  margin-bottom: 52px;
  font-size: 1.05rem;
}
.section-divider {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 50px;
}

/* ---- CARDS ---- */
.card-grid {
  display: grid;
  gap: 28px;
}
.card-grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.card-grid-2 { grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); }

.card {
  background: var(--mid-grey);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 36px 30px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(255,215,0,0.12);
}
.card-number {
  font-family: 'Cinzel', serif;
  font-size: 2.8rem;
  color: rgba(255,215,0,0.15);
  line-height: 1;
  margin-bottom: 16px;
  font-weight: 900;
}
.card h3 { font-size: 1.15rem; margin-bottom: 14px; }
.card p { font-size: 0.95rem; line-height: 1.7; }

/* ---- STAT BAR ---- */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 60px;
}
.stat-item {
  background: var(--mid-grey);
  padding: 32px 20px;
  text-align: center;
}
.stat-number {
  font-family: 'Cinzel', serif;
  font-size: 2.4rem;
  color: var(--gold);
  font-weight: 700;
  display: block;
}
.stat-label {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-grey);
  margin-top: 4px;
}

/* ---- RECIPE CARDS ---- */
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.recipe-card {
  background: var(--mid-grey);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.recipe-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(255,215,0,0.1);
}
.recipe-header {
  background: linear-gradient(135deg, #1a1400 0%, var(--mid-grey) 100%);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px 16px;
}
.recipe-header h3 { font-size: 1rem; color: var(--gold); }
.recipe-category {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 4px;
}
.recipe-body { padding: 18px 24px 22px; }
.recipe-ingredients {
  list-style: none;
  margin-bottom: 14px;
}
.recipe-ingredients li {
  font-size: 0.88rem;
  color: var(--text-grey);
  padding: 3px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  gap: 8px;
}
.recipe-ingredients li::before {
  content: '—';
  color: var(--gold-dark);
  flex-shrink: 0;
}
.recipe-method {
  font-size: 0.85rem;
  color: var(--text-white);
  font-style: italic;
  line-height: 1.6;
}
.recipe-lore {
  font-size: 0.8rem;
  color: var(--gold-dark);
  margin-top: 10px;
  font-style: italic;
  line-height: 1.5;
}

/* ---- CURRICULUM LIST ---- */
.curriculum-list {
  list-style: none;
  margin-top: 18px;
}
.curriculum-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,215,0,0.08);
  font-size: 0.95rem;
  color: var(--text-grey);
}
.curriculum-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.6rem;
  margin-top: 6px;
  flex-shrink: 0;
}

/* ---- QUOTE BLOCK ---- */
.quote-block {
  border-left: 3px solid var(--gold);
  padding: 20px 28px;
  background: var(--gold-muted);
  border-radius: 0 6px 6px 0;
  margin: 40px 0;
}
.quote-block p {
  font-size: 1.1rem;
  color: var(--text-white);
  font-style: italic;
  line-height: 1.8;
}
.quote-block cite {
  display: block;
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 1px;
  font-style: normal;
  font-weight: 700;
}

/* ---- CONTACT FORM ---- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--mid-grey);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-white);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  padding: 12px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255,215,0,0.1);
}
.form-group select option { background: var(--dark-grey); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ---- INFO BOX ---- */
.info-box {
  background: var(--mid-grey);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px;
}
.info-box h3 { margin-bottom: 20px; font-size: 1rem; }
.info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,215,0,0.08);
}
.info-row:last-child { border-bottom: none; }
.info-icon { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.info-row p { font-size: 0.9rem; margin: 0; }
.info-row strong { color: var(--text-white); display: block; }

/* ---- FOOTER ---- */
footer {
  background: var(--near-black);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 40px 30px;
}
footer .footer-logo {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
footer p {
  font-size: 0.85rem;
  color: #555;
  margin-top: 8px;
}
footer .footer-tagline {
  font-style: italic;
  color: var(--gold-dark);
  margin-bottom: 6px;
}

/* ---- FILTER PILLS ---- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-pill {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-grey);
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-pill:hover,
.filter-pill.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-muted);
}

/* ---- ABOUT PAGE ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-portrait {
  position: relative;
}
.portrait-placeholder {
  background: linear-gradient(135deg, #1a1400, var(--mid-grey));
  border: 1px solid var(--border);
  border-radius: 6px;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.portrait-icon {
  font-size: 5rem;
  opacity: 0.4;
}
.portrait-placeholder p {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--gold);
  opacity: 0.6;
}
.about-content h2 { margin-bottom: 20px; }
.about-content p { margin-bottom: 20px; font-size: 1rem; line-height: 1.85; }
.credential-list { list-style: none; margin: 24px 0; }
.credential-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,215,0,0.08);
  font-size: 0.95rem;
  color: var(--text-grey);
}
.credential-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-inner { padding: 0 16px; }
  .nav-logo { font-size: 0.9rem; }
  .nav-links a { font-size: 0.75rem; padding: 6px 8px; }
  section { padding: 60px 20px; }
  .about-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .hero { padding: 80px 20px 70px; }
}
@media (max-width: 520px) {
  .nav-links { gap: 2px; }
  .nav-links a { padding: 6px 6px; letter-spacing: 0.5px; }
}
