/* ============================================================
   Ollie Horn — global styles
   Rebuilt from real computed values extracted off olliehorn.com
   (live Showit site), not guessed. Colors, fonts and the
   "bubble" text-shadow treatment below all match the original.
   ============================================================ */

@font-face {
  font-family: "Toybox";
  src: url("https://static.showit.co/file/2e_XK6v3ud6cAMzmVS6Fyw/241517/toybox-webfont.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "HammersmithOneRegular";
  src: url("https://static.showit.co/file/kvTwyjP7v0pA-sATj1S7sQ/241517/hammersmithone-regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Owners";
  src: url("https://static.showit.co/file/T6j2N-2CK-OTGHv2BxIVZg/241517/fonnts_com-owners.woff") format("woff");
  font-display: swap;
}
/* TODO (Ollie): all @font-face src above still hotlink Showit's CDN — export
   these .woff files and drop them in src/assets/fonts/ before cancelling Showit. */

:root {
  --yellow: #eacd4c;
  --orange: #ff7700;
  --teal: #1faaa7;
  --black: #101010;
  --navy: #012f40;
  --off-white: #fefdfc;

  --font-display: "Toybox", cursive, sans-serif;
  --font-body: "Roboto", "Segoe UI", system-ui, sans-serif;

  --radius: 20px;
  --max-width: 1200px;
  --shadow-sm: 2px 2px 1px rgba(0,0,0,0.9);
  --shadow-md: 3px 3px 3px rgba(0,0,0,0.9);
  --shadow-lg: 4px 4px 5px rgba(0,0,0,0.9);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--off-white);
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Headings use the bubble-outline look: off-white fill + hard black
   drop-shadow offset (NOT a stroke — that's what makes it read as "comic"). */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--off-white);
  text-shadow: var(--shadow-lg);
}

h1 { font-size: clamp(2.4rem, 6vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); text-shadow: var(--shadow-md); }
h3 { font-size: 1.3rem; text-shadow: var(--shadow-sm); }

p { margin: 0 0 1em; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* Buttons — rounded pill, thick black border, Toybox label ------------ */

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 12px 26px;
  border-radius: 999px;
  border: 3px solid var(--black);
  cursor: pointer;
  background: var(--off-white);
  color: var(--black);
  transition: transform 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn--yellow { background: var(--yellow); color: var(--black); }
.btn--orange { background: var(--orange); color: var(--off-white); text-shadow: var(--shadow-sm); }
.btn--dark { background: var(--black); color: var(--off-white); text-shadow: var(--shadow-sm); }
.btn--outline { background: var(--off-white); color: var(--black); }
.btn--small { padding: 8px 18px; font-size: 0.85rem; }

/* Header ---------------------------------------------------------- */

.site-header {
  background: var(--yellow);
  padding: 20px 24px 0;
}

.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px;
  flex-wrap: wrap;
  text-align: center;
}

.site-header__logo img {
  max-width: 420px;
  width: 100%;
}

.site-header__tagline {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.site-header__photo {
  max-width: 260px;
  border-radius: var(--radius);
}

.site-header__badge {
  background: var(--orange);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  max-width: 220px;
}

.site-header__badge h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.site-social {
  position: fixed;
  top: 140px;
  left: 12px;
  display: none;
  flex-direction: column;
  gap: 16px;
  z-index: 40;
}

@media (min-width: 1100px) {
  .site-social { display: flex; }
}

.site-social a {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
}

/* Nav pill ---------------------------------------------------------- */

.site-nav-wrap {
  background: var(--yellow);
  padding: 20px 24px;
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-nav {
  max-width: var(--max-width);
  margin: 0 auto;
  background: var(--yellow);
  border: 2px solid rgba(0,0,0,0.15);
  border-radius: 999px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 32px;
  padding: 16px 24px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.12);
}

.site-nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.site-nav__link {
  font-family: var(--font-display);
  color: var(--off-white);
  text-shadow: var(--shadow-sm);
  font-size: 1rem;
  text-transform: uppercase;
  text-align: center;
}

.site-nav__link.is-active { text-decoration: underline; text-underline-offset: 4px; }

/* Section blocks ------------------------------------------------ */

.section { padding: 56px 24px; }
.section--yellow { background: var(--yellow); }
.section--teal { background: var(--teal); }
.section--black { background: var(--black); }
.section--orange { background: var(--orange); }
.section--white { background: var(--off-white); }

.section--teal a:not(.btn) { color: var(--yellow); }
.section--teal h1, .section--teal h2, .section--teal h3 { color: var(--off-white); }

.section-inner { max-width: var(--max-width); margin: 0 auto; }

.section-intro { max-width: 760px; margin: 0 auto 32px; text-align: center; }

/* Grids / cards -------------------------------------------------- */

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }

.card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 24px;
  color: var(--black);
}

.card--navy { background: var(--navy); color: var(--off-white); }

.video-embed {
  position: relative;
  padding-top: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Tour dates list -------------------------------------------------- */

.tour-month h2 { margin-top: 0; color: var(--black); text-shadow: none; font-family: var(--font-body); font-weight: 800; text-transform: uppercase; }

.tour-date {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 12px; padding: 16px 0; border-bottom: 2px solid rgba(0,0,0,0.2);
}
.tour-date__place { font-weight: 700; color: var(--yellow); font-size: 1.05rem; }
.tour-date .btn { background: var(--yellow); border-color: var(--black); color: var(--black); font-weight: 700; text-transform: uppercase; }

/* Uppercase list (e.g. countries) ------------------------------- */

.uc-list { list-style: none; padding: 0; margin: 0; }
.uc-list li {
  font-weight: 700; text-transform: uppercase; padding: 6px 0; font-size: 1.05rem;
}

/* Mailing list CTA / footer -------------------------------------------------- */

.mailing-cta { background: var(--orange); padding: 56px 24px; }

.mailing-cta__inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; gap: 32px; grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .mailing-cta__inner { grid-template-columns: 1.2fr 1fr; align-items: start; }
}

.mailing-cta h2 { color: var(--off-white); }

.mailing-cta__form {
  background: transparent;
  display: flex; flex-wrap: wrap; gap: 12px; align-items: flex-start; max-width: 520px;
}
.mailing-cta__form input {
  flex: 1 1 160px;
  padding: 14px 16px; border-radius: 999px; border: none;
  font-family: var(--font-body); color: var(--black);
}
.mailing-cta__form button { flex: 0 0 auto; }

.mailing-cta__instagram img { border-radius: var(--radius); }

.site-footer { background: var(--orange); padding: 24px; }
.site-footer__inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center;
  color: var(--off-white); font-size: 0.9rem;
}
.site-footer a { text-decoration: underline; }
.back-to-top {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--yellow); border: 3px solid var(--black);
  display: flex; align-items: center; justify-content: center;
}

/* Contact form -------------------------------------------------- */

.contact-form { display: grid; gap: 12px; max-width: 480px; }
.contact-form input, .contact-form textarea {
  padding: 14px 16px; border-radius: var(--radius); border: 2px solid rgba(0,0,0,0.15);
  font-family: var(--font-body);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form__status { font-size: 0.9rem; min-height: 1.2em; }
