/* ============================================
   SEAFOOD AT THE BEACH — Stylesheet
   Brand: FFDY Capriola / Yellow / Dark Charcoal
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Capriola&display=swap');

:root {
  --yellow:      #ecee40;
  --yellow-dark: #d4d530;
  --citrino:     #c5cf45;
  --peach:       #f4d896;
  --dark:        #1c1c1c;
  --gray:        #f4f4f4;
  --mid-gray:    #888;
  --white:       #ffffff;
  --radius:      14px;
  --shadow:      0 4px 24px rgba(0,0,0,0.08);
}

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

body {
  font-family: 'Capriola', system-ui, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-blob {
  background: var(--yellow);
  border-radius: 50% 40% 55% 45% / 45% 55% 40% 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.logo span { color: var(--yellow); }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--yellow); }
.nav-order-btn {
  background: var(--yellow) !important;
  color: var(--dark) !important;
  padding: 8px 18px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  border-bottom: none !important;
}
.nav-order-btn:hover { opacity: 0.85; }

.nav-links a.active {
  color: var(--dark);
  background: var(--yellow);
  padding: 6px 16px;
  border-radius: 50px;
}

/* ── HERO ── */
.hero {
  background: var(--yellow);
  padding: 0 24px;
  overflow: hidden;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  min-height: 480px;
}
.hero-content { padding: 60px 0; }
.hero-eyebrow {
  display: inline-block;
  background: var(--dark);
  color: var(--yellow);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 18px;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(28,28,28,0.75);
  max-width: 440px;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
}
.hero-image-wrap img {
  max-height: 440px;
  max-width: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: 'Capriola', system-ui, sans-serif;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-dark {
  background: var(--dark);
  color: var(--yellow);
}
.btn-dark:hover { background: #333; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.25); }
.btn-yellow {
  background: var(--yellow);
  color: var(--dark);
}
.btn-yellow:hover { background: var(--yellow-dark); transform: translateY(-2px); }
.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}
.btn-outline-dark:hover { background: var(--dark); color: var(--yellow); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

/* ── CONTAINER ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── FEATURES STRIP ── */
.features-strip {
  background: var(--dark);
  padding: 48px 24px;
}
.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  text-align: center;
}
.feature-item { padding: 8px; }
.feature-icon { font-size: 2.2rem; margin-bottom: 10px; }
.feature-title { font-weight: 700; font-size: 1rem; color: var(--yellow); margin-bottom: 4px; }
.feature-desc { font-size: 0.88rem; color: rgba(255,255,255,0.6); }

/* ── SECTION HEADERS ── */
.section-header { text-align: center; margin-bottom: 48px; }
.section-label {
  display: inline-block;
  color: var(--mid-gray);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--dark);
}
.section-header p { color: #666; margin-top: 10px; font-size: 1.05rem; }

/* ── HIGHLIGHTS ── */
.highlights { padding: 80px 24px; background: var(--white); }
.highlights-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.highlight-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #eee;
  transition: transform 0.2s, box-shadow 0.2s;
}
.highlight-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.12); }
.card-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.card-image.fish-bg    { background: var(--yellow); }
.card-image.chips-bg   { background: var(--citrino); }
.card-image.prawns-bg  { background: var(--peach); }
.card-body { padding: 24px; }
.card-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.card-body p { color: #666; font-size: 0.95rem; line-height: 1.6; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--dark);
  color: var(--white);
  padding: 70px 24px;
  text-align: center;
}
.cta-banner h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 14px; color: var(--yellow); }
.cta-banner p { opacity: 0.8; font-size: 1.05rem; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--yellow);
  padding: 60px 24px;
  text-align: center;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--dark); margin-bottom: 12px; }
.page-hero p { color: rgba(28,28,28,0.7); font-size: 1.1rem; max-width: 500px; margin: 0 auto; }

/* ── ABOUT PAGE ── */
.story-section { padding: 80px 24px; background: var(--white); }
.story-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.story-content h2 { font-size: 1.9rem; color: var(--dark); margin-bottom: 20px; line-height: 1.2; }
.story-content p { color: #555; line-height: 1.8; margin-bottom: 16px; }
.story-visual {
  background: var(--gray);
  border-radius: 24px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.story-visual img {
  max-height: 380px;
  max-width: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.stats-strip { background: var(--dark); padding: 50px 24px; }
.stats-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-number { font-size: 2.4rem; font-weight: 700; color: var(--yellow); display: block; }
.stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.6); }

.values-section { padding: 80px 24px; background: var(--gray); }
.values-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.value-card { padding: 32px 24px; background: var(--white); border-radius: var(--radius); text-align: center; box-shadow: var(--shadow); }
.value-icon { font-size: 2.4rem; margin-bottom: 14px; }
.value-card h3 { font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.value-card p { color: #666; font-size: 0.92rem; line-height: 1.6; }

/* ── MENU PAGE ── */
.menu-section { padding: 60px 24px 80px; }
.menu-inner { max-width: 900px; margin: 0 auto; }
.menu-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; justify-content: center; }
.tab-btn {
  padding: 10px 20px;
  border-radius: 50px;
  border: 2px solid #ddd;
  background: var(--white);
  color: var(--dark);
  font-family: 'Capriola', system-ui, sans-serif;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s;
}
.tab-btn:hover { border-color: var(--dark); }
.tab-btn.active { background: var(--dark); color: var(--yellow); border-color: var(--dark); }

.menu-panel { display: none; }
.menu-panel.active { display: block; }
.menu-panel h2 { font-size: 1.6rem; color: var(--dark); margin-bottom: 8px; }
.menu-panel .panel-desc { color: #888; margin-bottom: 28px; font-size: 0.95rem; }

.menu-item {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid #f0f0f0;
}
.menu-item:last-of-type { border-bottom: none; }
.item-info h4 { font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.item-info p { font-size: 0.88rem; color: #888; }
.item-price {
  font-weight: 700;
  color: var(--dark);
  background: var(--yellow);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.95rem;
  white-space: nowrap;
  margin-left: 20px;
}

.menu-category-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin: 8px 0 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--yellow);
  display: inline-block;
}

.menu-note {
  margin-top: 32px;
  background: var(--gray);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 0.9rem;
  color: #666;
  border-left: 4px solid var(--yellow);
}

/* ── CONTACT PAGE ── */
.contact-section { padding: 80px 24px; }
.contact-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.contact-card h3 { font-size: 1.1rem; color: var(--dark); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.contact-icon { font-size: 1.4rem; }

.hours-list { list-style: none; }
.hours-list li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #f5f5f5; font-size: 0.95rem; }
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { font-weight: 600; color: var(--dark); }
.hours-list .time { color: #666; }

.address-block p { color: #555; line-height: 1.8; font-size: 0.95rem; }
.address-block a { color: var(--dark); text-decoration: none; font-weight: 700; }
.address-block a:hover { text-decoration: underline; }

.map-placeholder {
  background: var(--gray);
  border-radius: var(--radius);
  height: 280px;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  flex-direction: column; gap: 12px;
  border: 1px solid #eee;
  margin-top: 28px;
}
.map-placeholder p { font-size: 0.95rem; font-weight: 700; color: var(--mid-gray); }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 48px 24px 32px;
  text-align: center;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-logo { font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.footer-logo span { color: var(--yellow); }
.footer-tagline { font-size: 0.88rem; margin-bottom: 24px; }
.footer-links { display: flex; gap: 24px; justify-content: center; margin-bottom: 28px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--yellow); }
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image-wrap { display: none; }
  .story-grid, .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { gap: 18px; }
}
@media (max-width: 480px) {
  .nav-links { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
