/* ============================================
   TAKKY TIKKI — Lada's Takky Tikki, Rawai
   Bright & fun tiki. Edit colors here.
   ============================================ */

:root {
  --sand:     #FFF6E9;   /* page background */
  --bamboo:   #FFEBC9;   /* card background */
  --lagoon:   #00A99B;   /* turquoise */
  --lagoon-d: #007F74;   /* darker turquoise */
  --hibiscus: #FF4D6D;   /* hot pink */
  --mango:    #FFB627;   /* yellow */
  --coral:    #FF7849;   /* orange */
  --jungle:   #173F35;   /* near-black green: text */
  --white:    #FFFFFF;

  --display: 'Shrikhand', cursive;
  --body: 'Nunito', sans-serif;

  --radius: 18px;
  --shadow: 0 6px 0 rgba(23, 63, 53, 0.18);
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--body);
  background: var(--sand);
  color: var(--jungle);
  font-size: 17px;
  line-height: 1.6;
}

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

a { color: var(--lagoon-d); }

/* ---------- NAV ---------- */
.nav {
  background: var(--jungle);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--mango);
  text-decoration: none;
  letter-spacing: 0.5px;
}
.nav-logo span { color: var(--hibiscus); }
.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  color: var(--sand);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.15s;
}
.nav-links a:hover,
.nav-links a:focus-visible { background: rgba(255, 182, 39, 0.25); }
.nav-links a.active { background: var(--mango); color: var(--jungle); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--sand);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--jungle);
    flex-direction: column;
    padding: 12px 20px 20px;
    gap: 6px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; }
}

/* ---------- HERO ---------- */
.hero {
  background: linear-gradient(160deg, var(--lagoon) 0%, var(--lagoon-d) 100%);
  color: var(--sand);
  text-align: center;
  padding: 72px 20px 110px;
  position: relative;
  overflow: hidden;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  background: var(--mango);
}
.hero::before { width: 320px; height: 320px; top: -120px; left: -100px; }
.hero::after  { width: 420px; height: 420px; bottom: -180px; right: -140px; background: var(--hibiscus); }

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 8vw, 5rem);
  line-height: 1.05;
  color: var(--mango);
  text-shadow: 3px 3px 0 rgba(23,63,53,0.35);
  position: relative;
  z-index: 1;
}
.hero h1 .tikki { color: var(--hibiscus); }
.hero .tagline {
  font-size: clamp(1.05rem, 2.5vw, 1.4rem);
  font-weight: 700;
  margin-top: 14px;
  position: relative;
  z-index: 1;
}
.hero .sub {
  margin-top: 6px;
  opacity: 0.85;
  position: relative;
  z-index: 1;
}
.hero-cta {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* tiki mask mark */
.tiki-mark { margin: 0 auto 18px; width: 84px; position: relative; z-index: 1; }

/* ---------- WAVE DIVIDER ---------- */
.wave { display: block; width: 100%; height: 50px; margin-top: -50px; position: relative; z-index: 2; }
.wave svg { display: block; width: 100%; height: 100%; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-family: var(--body);
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.12s;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn-mango   { background: var(--mango);   color: var(--jungle); }
.btn-hibiscus{ background: var(--hibiscus);color: var(--white); }
.btn-lagoon  { background: var(--lagoon);  color: var(--white); }

/* ---------- SECTIONS ---------- */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 20px;
}
.section-label {
  display: inline-block;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: repeating-linear-gradient(
    -45deg,
    var(--hibiscus), var(--hibiscus) 12px,
    var(--coral) 12px, var(--coral) 24px
  );
  padding: 6px 16px;
  border-radius: 6px;
  margin-bottom: 14px;
}
.section h2 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  color: var(--lagoon-d);
  margin-bottom: 18px;
  line-height: 1.15;
}
.section p.lead { font-size: 1.12rem; max-width: 720px; }

/* ---------- CARD GRID ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 30px;
}
.card {
  background: var(--bamboo);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.card h3 {
  font-family: var(--display);
  font-size: 1.3rem;
  color: var(--coral);
  margin-bottom: 8px;
}
.card .emoji { font-size: 2.2rem; display: block; margin-bottom: 10px; }

/* ---------- MENU LISTS (restaurant & bar) ---------- */
.menu-group { margin-top: 36px; }
.menu-group h3 {
  font-family: var(--display);
  font-size: 1.55rem;
  color: var(--hibiscus);
  border-bottom: 4px dotted var(--mango);
  padding-bottom: 6px;
  margin-bottom: 18px;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
}
.menu-item + .menu-item { border-top: 1px dashed rgba(23,63,53,0.18); }
.menu-item .name { font-weight: 800; }
.menu-item .desc { font-size: 0.92rem; opacity: 0.75; font-weight: 400; }
.menu-item .price {
  font-weight: 800;
  color: var(--lagoon-d);
  white-space: nowrap;
}
.menu-note {
  margin-top: 26px;
  font-size: 0.9rem;
  opacity: 0.7;
  font-style: italic;
}

/* ---------- EVENTS ---------- */
.event-card {
  display: flex;
  gap: 22px;
  background: var(--bamboo);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  margin-top: 22px;
  align-items: flex-start;
}
.event-date {
  background: var(--hibiscus);
  color: var(--white);
  border-radius: 14px;
  text-align: center;
  padding: 12px 16px;
  min-width: 86px;
  flex-shrink: 0;
}
.event-date .d { font-family: var(--display); font-size: 1.7rem; line-height: 1; }
.event-date .m { font-weight: 800; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
.event-body h3 { font-family: var(--display); color: var(--lagoon-d); font-size: 1.35rem; }
.event-body .meta { font-weight: 800; font-size: 0.9rem; color: var(--coral); margin: 4px 0 8px; }
.events-empty {
  margin-top: 30px;
  background: var(--bamboo);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  font-weight: 700;
}

@media (max-width: 560px) {
  .event-card { flex-direction: column; }
}

/* ---------- HOURS TABLE ---------- */
.hours-table { margin-top: 18px; width: 100%; max-width: 420px; border-collapse: collapse; }
.hours-table td { padding: 7px 4px; border-bottom: 1px dashed rgba(23,63,53,0.18); }
.hours-table td:last-child { text-align: right; font-weight: 800; }
.hours-table tr.today td { color: var(--hibiscus); font-weight: 800; }

/* ---------- SOCIAL ROW ---------- */
.social-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--jungle);
  color: var(--sand);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 10px 18px;
  border-radius: 999px;
  transition: transform 0.12s;
}
.social-pill:hover, .social-pill:focus-visible { transform: translateY(-2px); }

/* ---------- MAP ---------- */
.map-wrap {
  margin-top: 26px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  line-height: 0;
}
.map-wrap iframe { width: 100%; height: 380px; border: 0; }

/* ---------- FOOTER ---------- */
footer {
  background: var(--jungle);
  color: var(--sand);
  margin-top: 70px;
  padding: 46px 20px 30px;
  text-align: center;
}
footer .foot-logo {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--mango);
}
footer .foot-logo span { color: var(--hibiscus); }
footer .foot-addr { margin-top: 10px; opacity: 0.8; font-size: 0.95rem; }
footer .social-row { justify-content: center; }
footer .social-pill { background: rgba(255,246,233,0.12); }
footer .tiny { margin-top: 26px; font-size: 0.8rem; opacity: 0.5; }

/* ---------- UTILITIES ---------- */
.center { text-align: center; }
.mt-2 { margin-top: 20px; }
:focus-visible { outline: 3px solid var(--mango); outline-offset: 2px; }
