/* ==========================================================
   The Paluh Surf & Cafe — preview site stylesheet
   Beach-shack palette: sunset orange / ocean teal / warm sand
   Static CSS only. No JS, no build step, no external images.
   ========================================================== */

:root {
  --sunset:      #ef6c33;
  --sunset-deep: #d4491c;
  --mango:       #f9a03f;
  --teal:        #0f7b7a;
  --teal-deep:   #0a5554;
  --lagoon:      #23a6a4;
  --sand:        #f7efe2;
  --sand-deep:   #ecdcc4;
  --ink:         #241f1a;
  --ink-soft:    #564c42;
  --white:       #fffdf9;

  --radius:      18px;
  --radius-lg:   28px;
  --shadow:      0 10px 28px rgba(36, 31, 26, .10);
  --shadow-soft: 0 4px 14px rgba(36, 31, 26, .07);
  --wrap:        1080px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "DM Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--sand);
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2.1rem, 7vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 4.6vw, 2.4rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em; }
a { color: var(--teal-deep); }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

/* --- Hand-written accent (Caveat) --- */
.scribble {
  font-family: Caveat, "Comic Sans MS", cursive;
  font-size: 1.45rem;
  color: var(--sunset-deep);
  transform: rotate(-1.5deg);
  display: inline-block;
}

/* ---------------- Sticky nav ---------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247, 239, 226, .93);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--sand-deep);
}
.nav-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
}
.logo {
  font-family: Fraunces, Georgia, serif;
  font-weight: 700;
  font-size: 1.22rem;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.1;
  margin-right: auto;
}
.logo span { display: block; font-family: Caveat, cursive; font-size: .95rem; color: var(--teal); font-weight: 400; }
.nav-links { display: flex; gap: 6px; flex-wrap: wrap; }
.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: .95rem;
  padding: 7px 13px;
  border-radius: 999px;
}
.nav-links a:hover { background: var(--sand-deep); color: var(--ink); }
.nav-links a.active { background: var(--teal); color: var(--white); }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, #ffd9a0 0%, var(--mango) 34%, var(--sunset) 66%, #e0563f 100%);
  padding: 62px 0 130px;
  text-align: center;
  color: #40200f;
  overflow: hidden;
}
.hero::before { /* sun */
  content: "";
  position: absolute;
  top: 26px; left: 50%;
  width: 230px; height: 230px;
  margin-left: -115px;
  background: radial-gradient(circle, #fff3cf 0%, #ffd98a 55%, rgba(255,217,138,0) 72%);
  border-radius: 50%;
  opacity: .85;
}
.hero .wrap { position: relative; z-index: 2; }
.hero h1 { color: #3a1c0c; text-shadow: 0 2px 0 rgba(255,255,255,.22); }
.hero-kicker {
  font-family: Caveat, cursive;
  font-size: 1.5rem;
  color: #5a2a10;
  margin-bottom: .2em;
}
.hero-sub {
  max-width: 560px;
  margin: 0 auto 1.6em;
  font-size: 1.08rem;
  color: #4a2412;
}
.hero-meta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-top: 26px;
  font-size: .9rem;
}
.hero-meta span {
  background: rgba(255, 253, 249, .82);
  border-radius: 999px;
  padding: 6px 15px;
  color: #4a2412;
  font-weight: 500;
}

/* Wave motif at the bottom of the hero */
.waves { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 1; line-height: 0; }
.waves svg { display: block; width: 100%; height: 88px; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: var(--shadow-soft);
  border: 2px solid transparent;
}
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-deep); }
.btn-ghost { background: var(--white); color: var(--sunset-deep); border-color: var(--sunset); }
.btn-ghost:hover { background: #fff6ec; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------------- Sections ---------------- */
section { padding: 56px 0; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 34px; }
.section-head p { color: var(--ink-soft); }
.bg-white { background: var(--white); }
.bg-teal { background: var(--teal-deep); color: #e9f6f5; }
.bg-teal h2 { color: var(--white); }
.bg-teal a { color: #b9ece9; }

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }

.card {
  background: var(--white);
  border: 2px solid var(--sand-deep);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
.card .emoji { font-size: 1.7rem; display: block; margin-bottom: 8px; }
.card p:last-child { margin-bottom: 0; }
.bg-white .card { background: var(--sand); }

/* ---------------- Photo placeholders (CSS only, no real images) ---------------- */
.ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 190px;
  border-radius: var(--radius);
  border: 2px dashed rgba(255, 253, 249, .65);
  color: #fffdf9;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 16px;
  text-shadow: 0 1px 3px rgba(0,0,0,.25);
}
.ph .icon { font-size: 2.1rem; margin-bottom: 8px; text-shadow: none; }
.ph-sunset { background: linear-gradient(135deg, var(--mango), var(--sunset-deep)); }
.ph-ocean  { background: linear-gradient(135deg, var(--lagoon), var(--teal-deep)); }
.ph-sand   { background: linear-gradient(135deg, #e8c89a, #c99a63); }
.ph-mix    { background: linear-gradient(135deg, var(--lagoon) 0%, var(--mango) 100%); }
.ph-tall   { min-height: 250px; }

/* ---------------- Menu list ---------------- */
.menu-block { margin-bottom: 34px; }
.menu-block h3 {
  font-size: 1.3rem;
  color: var(--teal-deep);
  border-bottom: 3px solid var(--sand-deep);
  padding-bottom: 8px;
  margin-bottom: 14px;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px dotted var(--sand-deep);
}
.menu-item:last-child { border-bottom: 0; }
.menu-item .name { font-weight: 600; }
.menu-item .note { display: block; font-weight: 400; font-size: .88rem; color: var(--ink-soft); }
.menu-item .tag {
  flex: none;
  font-family: Caveat, cursive;
  font-size: 1.1rem;
  color: var(--sunset-deep);
  white-space: nowrap;
}

.callout {
  background: var(--sand-deep);
  border-left: 6px solid var(--sunset);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 0 0 28px;
}
.callout p:last-child { margin-bottom: 0; }

/* ---------------- Steps ---------------- */
.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.steps li {
  counter-increment: step;
  position: relative;
  padding: 18px 20px 18px 66px;
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--sand-deep);
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 18px; top: 16px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--sunset);
  color: var(--white);
  font-family: Fraunces, serif;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.steps li strong { display: block; }

/* ---------------- Hours / info rows ---------------- */
.info-row {
  display: flex; flex-wrap: wrap; gap: 6px 14px;
  padding: 11px 0;
  border-bottom: 1px dotted rgba(255,255,255,.25);
}
.bg-white .info-row, .bg-sand .info-row { border-bottom: 1px dotted var(--sand-deep); }
.info-row:last-child { border-bottom: 0; }
.info-row .k { font-weight: 700; min-width: 110px; }

/* ---------------- WhatsApp floating button ---------------- */
.wa-float {
  position: fixed;
  right: 16px; bottom: 16px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #25d366;
  color: #08331a;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  padding: 13px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .22);
}
.wa-float:hover { background: #1fbe5a; }
.wa-float .wa-icon { font-size: 1.15rem; }

/* ---------------- Footer ---------------- */
.footer {
  background: var(--ink);
  color: #ded3c6;
  padding: 44px 0 108px;
  font-size: .93rem;
}
.footer h3 { color: var(--white); font-size: 1.05rem; }
.footer a { color: #f2b184; }
.footer-grid { display: grid; gap: 26px; grid-template-columns: 1fr; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 6px; }
.preview-note {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #3d362f;
  font-size: .85rem;
  color: #b3a89b;
}
.badge {
  display: inline-block;
  margin-top: 10px;
  background: var(--sunset);
  color: #2b1205;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .03em;
  padding: 5px 13px;
  border-radius: 999px;
}

/* ---------------- Responsive ---------------- */
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: 1fr 1fr; align-items: center; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  section { padding: 72px 0; }
  .footer { padding-bottom: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
