/* ============================================
   Seafood on Oaks — Shared Stylesheet
   Brand palette: Lemon Yellow · Citrino · Peach · Near-Black
   ============================================ */

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

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand colours from FFDY Brand Refresh */
  --yellow:      #e8e84a;   /* primary brand lemon yellow */
  --yellow-dark: #cece38;   /* hover / pressed state      */
  --citrino:     #c8c94a;   /* secondary: muted yellow-green */
  --peach:       #f4d4a0;   /* Lemon Delicious warm peach  */
  --dark:        #1c1c1c;   /* near-black body text        */
  --white:       #ffffff;
  --light-bg:    #f8f8f2;   /* very light warm off-white   */
  --border:      #e4e4d0;
  --text:        #2e2e2e;
  --text-muted:  #5a5a4a;
  --radius:      12px;
  --shadow:      0 4px 24px rgba(28,28,28,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: 'Nunito', sans-serif;
  color: var(--dark);
  line-height: 1.2;
  font-weight: 800;
}

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

img { max-width: 100%; display: block; }

/* ---- Navigation ---- */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--border);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  box-shadow: 0 2px 12px rgba(28,28,28,0.05);
}

.nav-logo {
  font-family: 'Nunito', sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.nav-logo span {
  background: var(--yellow);
  color: var(--dark);
  padding: 1px 8px 2px;
  border-radius: 6px;
  display: inline-block;
}

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  padding: 4px 0;
  border-bottom: 2.5px solid transparent;
  transition: all 0.2s;
  font-family: 'Nunito', sans-serif;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--dark);
  border-bottom-color: var(--yellow);
}

.nav-order-btn {
  background: var(--yellow);
  color: var(--dark);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 9px 20px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  letter-spacing: 0.2px;
}
.nav-order-btn:hover {
  background: var(--yellow-dark);
  color: var(--dark);
  transform: translateY(-1px);
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  letter-spacing: 0.2px;
  font-family: 'Nunito', sans-serif;
}

.btn-primary {
  background: var(--yellow);
  color: var(--dark);
  box-shadow: 0 4px 16px rgba(232,232,74,0.4);
}

.btn-primary:hover {
  background: var(--yellow-dark);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,200,56,0.45);
}

.btn-dark {
  background: var(--dark);
  color: var(--yellow);
}

.btn-dark:hover {
  background: #2e2e2e;
  color: var(--yellow);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2.5px solid var(--dark);
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--yellow);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2.5px solid rgba(255,255,255,0.7);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---- Section Utility ---- */
section { padding: 80px 5%; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-family: 'Nunito', sans-serif;
}

.section-title {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ---- Yellow accent blob (decorative) ---- */
.yellow-blob {
  display: inline-block;
  background: var(--yellow);
  border-radius: 50%;
  width: 200px;
  height: 200px;
  position: absolute;
  opacity: 0.35;
  pointer-events: none;
}

/* ---- Wave Divider ---- */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  display: block;
}
.wave-divider svg { display: block; width: 100%; }

/* ---- Footer ---- */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 52px 5% 28px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand .nav-logo {
  font-size: 1.4rem;
  color: var(--white);
}

.footer-brand .nav-logo span {
  background: var(--yellow);
  color: var(--dark);
}

.footer-brand p {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; font-size: 0.9rem; }
.footer-col ul li a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.45;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .nav-links { gap: 1.25rem; }
  .section-title { font-size: 1.9rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 520px) {
  .nav-links { display: none; }
  section { padding: 60px 6%; }
}
