/* =========================
   RESET + BASE
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  display: block;
}

:root {
  --bg: #201d1a;
  --text: #f5eee5;
  --muted: #b9afa4;
  --accent: #797D54;
  --pad: 40px;
  --max: 1200px;
  --headerH: 120px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* =========================
   HEADER
========================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(0,0,0,.7), transparent);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: .75rem var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 80px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.7rem;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

nav a:hover {
  color: var(--accent);
}

/* =========================
   HERO
========================= */
.hero {
  min-height: 100vh;
  padding-top: var(--headerH);
  background: url("../image/top-banner.webp") center / cover no-repeat;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(0,0,0,.15), rgba(0,0,0,.85));
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20vh var(--pad);
  position: relative;
}

.hero-content {
  max-width: 420px;
  margin-left: auto;
  text-align: right;
}

.hero-title {
  font-family: Georgia, serif;
  font-size: 2.8rem;
  margin: 0 0 1rem;
}

.hero-sub {
  color: var(--muted);
}
/* =========================
   HERO BUTTON
========================= */
.hero-btn {
  display: inline-block;
  margin-top: 1.8rem;
  padding: 0.9rem 2.8rem;

  background: var(--accent);
  color: #111;

  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;

  border-radius: 999px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.hero-btn:hover {
  background: var(--accent2);
  transform: translateY(-1px);
}


/* =========================
   FEATURED PRALINES
========================= */
.section-dark {
  padding-bottom: var(--pad);
  text-align: center;
}

.section-dark h2 {
  font-family: Georgia, serif;
  font-size: 2.4rem;
  padding: var(--pad);
}

.praline-scroll {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);

  display: flex;
  justify-content: center;
  gap: 2.5rem;

  overflow-x: visible;
}

.praline-item {
  flex: 0 0 170px;
  text-align: center;
}

.praline-item img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
}

.praline-name {
  font-family: Georgia, serif;
  margin-top: .8rem;
}

.praline-desc {
  font-size: .8rem;
  color: var(--muted);
}

/* =========================
   FOOTER
========================= */
.footer {
  padding: 50px var(--pad);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 900px) {
  .praline-scroll {
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .praline-item {
    scroll-snap-align: center;
  }

  .footer-inner {
    flex-direction: column;
  }
}
