/* =============================================
   BGR FOODTALKS — Brand Stylesheet
   Colors: Gold #B8962E | Charcoal #2C2A27 | Grey #666
   ============================================= */

:root {
  --gold: #B8962E;
  --gold-light: #D4AE4A;
  --charcoal: #2C2A27;
  --grey: #666666;
  --grey-light: #F5F3F0;
  --white: #FFFFFF;
  --border: #E0DCD6;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 {
  font-family: 'Georgia', serif;
  font-weight: normal;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.2rem; }

p { color: var(--grey); font-size: 1.05rem; }

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--charcoal); }

/* ---- NAVIGATION ---- */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
}

.nav-logo img {
  height: 42px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--charcoal);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Arial', sans-serif;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
}

/* ---- HERO ---- */
.hero {
  min-height: 90vh;
  background: var(--charcoal) center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 5%;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 28, 25, 0.72) 0%,
    rgba(30, 28, 25, 0.60) 50%,
    rgba(30, 28, 25, 0.80) 100%
  );
  pointer-events: none;
}

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

.hero-logo {
  width: min(480px, 80vw);
  margin-bottom: 2rem;
  filter: brightness(0) invert(1);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: 'Arial', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ---- SECTIONS ---- */
section {
  padding: 5rem 5%;
}

.section-label {
  display: block;
  font-family: 'Arial', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.section-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.25rem 0 2rem;
}

.section-divider.center { margin: 1.25rem auto 2rem; }

.text-center { text-align: center; }

/* ---- CARDS ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: var(--grey-light);
  padding: 2rem;
  border-radius: 4px;
  border-top: 3px solid var(--gold);
}

.card h3 {
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

/* ---- FOOTER ---- */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 2.5rem 5%;
  font-family: 'Arial', sans-serif;
  font-size: 0.85rem;
}

footer .footer-logo img {
  height: 36px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

footer a { color: var(--gold-light); }
footer a:hover { color: var(--white); }

/* ---- MENU PAGE ---- */
.menu-category {
  margin-bottom: 3.5rem;
}

.menu-category h2 {
  font-size: 1.5rem;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.menu-item {
  padding: 1rem 0;
  border-bottom: 1px dotted var(--border);
}

.menu-item-name {
  font-size: 1rem;
  color: var(--charcoal);
  font-weight: normal;
  margin-bottom: 0.25rem;
}

.menu-item-desc {
  font-size: 0.9rem;
  color: var(--grey);
  font-family: 'Arial', sans-serif;
}

.menu-disclaimer {
  background: var(--grey-light);
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 3rem 0 0;
  border-radius: 0 4px 4px 0;
  font-family: 'Arial', sans-serif;
  font-size: 0.95rem;
  color: var(--grey);
}

/* ---- GALLERY PAGE ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item {
  aspect-ratio: 4/3;
  background: var(--grey-light);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

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

.gallery-item:hover img { transform: scale(1.04); }

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-family: 'Arial', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  background: var(--grey-light);
}

/* ---- CONTACT PAGE ---- */
.contact-wrapper {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.qr-box {
  flex: 0 0 auto;
  text-align: center;
}

.qr-box img {
  width: 220px;
  height: 220px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
}

.qr-box p {
  margin-top: 1rem;
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
}

.contact-details { flex: 1 1 240px; }

.contact-details h3 {
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
  font-family: 'Arial', sans-serif;
  font-size: 0.95rem;
}

.contact-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ---- CERTIFICATIONS ---- */
.cert-strip {
  background: var(--grey-light);
  border-top: 1px solid var(--border);
  padding: 1.5rem 5%;
  text-align: center;
}

.cert-strip .cert-label {
  display: block;
  font-family: 'Arial', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1rem;
}

.cert-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.cert-logos img {
  height: 60px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.cert-logos img:hover { opacity: 1; }

.cert-number {
  font-family: 'Arial', sans-serif;
  font-size: 0.72rem;
  color: var(--grey);
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  nav { padding: 0 4%; }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem 5%;
    border-bottom: 1px solid var(--border);
    gap: 1.25rem;
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  section { padding: 3.5rem 5%; }

  .contact-wrapper { flex-direction: column; align-items: center; }
}
