

/* =====================================================
   BASE.CSS
   Luxury theme – A Food Sensation
   Fonts: Cinzel (Headings), Poppins (Body)
   ===================================================== */

/* -------------------------
   CSS VARIABLES (THEME)
   ------------------------- */
:root {
  --bg-main: #0b0b0b;
  --bg-dark: #000000;

  --gold: #c9a24d;
  --gold-soft: #e0c37a;

  --text-primary: #ffffff;
  --text-secondary: #cfcfcf;
  --text-muted: #9a9a9a;

  --font-heading: 'Cinzel', serif;
  --font-body: 'Poppins', sans-serif;
  
  --header-height: 90px;
}

/* -------------------------
   RESET & NORMALIZATION
   ------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.7;
  letter-spacing: 0.2px;
  -webkit-font-smoothing: antialiased;
}

/* -------------------------
   TYPOGRAPHY (LUXURY)
   ------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 1.4px;
  color: var(--gold);
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.6rem;
}

p {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.nav-links a {
  font-family: var(--font-body);
  color: #ffffff;
}

/* Subtle gold accents */
strong,
.highlight {
  color: var(--gold);
}


/* -------------------------
   IMAGES
   ------------------------- */
img {
  max-width: 100%;
  display: block;
}

/* -------------------------
   GLOBAL UTILITIES
   ------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

/* -------------------------
   IMAGE PLACEHOLDER
   ------------------------- */
.image-placeholder {
  width: 100%;
  height: 380px;
  background: #111;
  margin: 4rem 0;
  overflow: hidden;
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

/* =====================================================
   HEADER / NAVIGATION (FINAL FIX)
   ===================================================== */

:root {
  --header-height: 88px;
}

/* Hero below Header  */

/* =====================================================
   HERO OFFSET FIX
   ===================================================== */

.hero {
  margin-top: var(--header-height);
  position: relative;
  z-index: 1;
}


.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.95),
    rgba(0,0,0,0)
  );
  z-index: 2;
  pointer-events: none;
}



/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px; /* LOCKED */
  z-index: 1000;

  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.96),
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.6),
    rgba(0,0,0,0)
  );
}


/* FULL-WIDTH HEADER BAR */
.header-inner {
  height: 90px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* LOGO — FORCE LEFT */
.logo {
  flex: 0 0 auto;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
}

/* NAV — FORCE RIGHT */
.nav-links {
  flex: 0 0 auto;
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
}

/* GOLD HOVER LINE */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* -------------------------
   MOBILE
   ------------------------- */
.hamburger {
  display: none;
}

@media (max-width: 768px) {

  .logo img {
    height: 52px;
  }

  .nav-links {
    position: absolute;
    top: var(--header-height);
    right: 24px;
    background: rgba(0,0,0,0.95);
    flex-direction: column;
    padding: 18px 24px;
    display: none;
    gap: 18px;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}


/* =====================================================
   FORCE HERO BELOW FIXED HEADER
   ===================================================== */

/* Adjust this value if header height changes */
.hero {
  margin-top: 200px;
}

/* =====================================================
   GLOBAL PAGE OFFSET FOR FIXED HEADER (HARD FIX)
   ===================================================== */

body {
  padding-top: 90px; /* MUST match header height */
}
