/* Fun Time Rental local preview */
:root {
  --yellow: #ffd100;
  --yellow-deep: #f0b800;
  --blue: #1a4cc4;
  --blue-dark: #1238a0;
  --blue-ink: #0b2466;
  --red: #e31b23;
  --green: #1e9e3a;
  --ink: #14182b;
  --muted: #3d4563;
  --paper: #fffdf6;
  --card: #ffffff;
  --line: #ece6d6;
  --shadow: 0 10px 28px rgba(18, 30, 80, 0.12);
  --radius: 18px;
  --max: 1120px;
  --font: "Nunito", "Segoe UI", system-ui, sans-serif;
  --display: "Fredoka", "Nunito", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 1.05rem;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-dark); }
a:hover { color: var(--red); }
:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--yellow);
  color: var(--ink);
  padding: 0.6rem 1rem;
  z-index: 100;
  font-weight: 700;
}
.skip:focus { left: 0.75rem; top: 0.75rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 4px solid var(--yellow);
  box-shadow: 0 2px 10px rgba(20, 24, 43, 0.06);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.55rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--blue-ink);
  font-family: var(--display);
  font-weight: 650;
  letter-spacing: 0.01em;
}
.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.brand span { font-size: 1.05rem; line-height: 1.15; }
.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.9rem;
  justify-content: flex-end;
}
.site-nav a {
  text-decoration: none;
  font-weight: 700;
  color: var(--blue-ink);
  padding: 0.35rem 0.15rem;
}
.site-nav a:hover { color: var(--red); }
.nav-book {
  background: var(--red);
  color: #fff !important;
  padding: 0.45rem 0.9rem !important;
  border-radius: 999px;
}
.nav-book:hover { background: var(--blue-dark); }

.stripe {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  height: 8px;
}
.stripe i:nth-child(1) { background: var(--yellow); }
.stripe i:nth-child(2) { background: var(--blue); }
.stripe i:nth-child(3) { background: var(--red); }
.stripe i:nth-child(4) { background: var(--green); }

/* Hero */
.hero {
  position: relative;
  min-height: min(78svh, 38rem);
  display: grid;
  align-items: end;
  color: #fff;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(11, 36, 102, 0.28) 0%, rgba(11, 36, 102, 0.55) 42%, rgba(10, 22, 64, 0.88) 100%);
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5.5rem 1rem 2.4rem;
  width: 100%;
}
.hero-logo {
  width: min(220px, 58vw);
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.35));
  margin-bottom: 1rem;
  background: rgba(255,255,255,0.92);
  border-radius: 28px;
  padding: 0.4rem;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 5.4vw, 3.15rem);
  line-height: 1.12;
  margin: 0 0 0.65rem;
  text-wrap: balance;
  max-width: 16ch;
}
.lede {
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
  max-width: 38rem;
  margin: 0 0 1.4rem;
  color: #fff8d8;
  font-weight: 650;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.78rem 1.25rem;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}
.btn-primary {
  background: var(--yellow);
  color: var(--ink);
}
.btn-primary:hover { background: #ffe45a; color: var(--ink); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-ghost:hover { background: #fff; color: var(--blue-ink); }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  font-size: 0.95rem;
  font-weight: 700;
}
.hero-meta a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.hero-meta a:hover { color: var(--yellow); }

/* Layout */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1rem;
}
section { padding: 3.2rem 0; }
.section-kicker {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--red);
  margin: 0 0 0.35rem;
}
h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin: 0 0 0.5rem;
  line-height: 1.15;
  color: var(--blue-ink);
}
.section-intro {
  max-width: 42rem;
  color: var(--muted);
  margin: 0 0 1.6rem;
}

/* Rentals */
.rentals { background: #fff; }
.featured {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
@media (min-width: 760px) {
  .featured { grid-template-columns: 1fr 1fr 1fr; }
}
.photo-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.photo-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.photo-card .caption {
  padding: 0.95rem 1.05rem 1.15rem;
}
.photo-card h3 {
  margin: 0 0 0.3rem;
  font-family: var(--display);
  font-size: 1.25rem;
  color: var(--blue-ink);
}
.photo-card p { margin: 0; color: var(--muted); }

.cat-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .cat-grid { grid-template-columns: 1fr 1fr; }
}
.cat {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 132px 1fr;
  min-height: 132px;
  box-shadow: 0 4px 14px rgba(18, 30, 80, 0.06);
}
.cat-media {
  background: #eef2ff;
  overflow: hidden;
}
.cat-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cat-body { padding: 0.9rem 1rem 1.1rem; }
.cat h3 {
  margin: 0 0 0.28rem;
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--blue-ink);
}
.cat p { margin: 0; color: var(--muted); font-size: 0.98rem; }
.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--ink);
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  margin-bottom: 0.4rem;
}

/* Area */
.area {
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 209, 0, 0.28), transparent 42%),
    radial-gradient(circle at 92% 80%, rgba(26, 76, 196, 0.12), transparent 40%),
    var(--paper);
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}
.pills li {
  background: #fff;
  border: 2px solid var(--blue);
  color: var(--blue-ink);
  font-weight: 800;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
}
.facts {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
}
@media (min-width: 700px) {
  .facts { grid-template-columns: 1fr 1fr 1fr; }
}
.fact {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.1rem 1.15rem;
  border-top: 6px solid var(--blue);
  box-shadow: var(--shadow);
}
.fact:nth-child(2) { border-top-color: var(--red); }
.fact:nth-child(3) { border-top-color: var(--green); }
.fact h3 {
  margin: 0 0 0.3rem;
  font-family: var(--display);
  color: var(--blue-ink);
  font-size: 1.15rem;
}
.fact p { margin: 0; color: var(--muted); }

/* Book */
#book { background: var(--blue-ink); color: #fff; }
#book h2 { color: #fff; }
#book .section-kicker { color: var(--yellow); }
#book .section-intro { color: #dce6ff; }
.book-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 860px) {
  .book-grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
}
.contact-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 1.2rem 1.2rem 1.35rem;
}
.contact-card h3 {
  margin: 0 0 0.8rem;
  font-family: var(--display);
}
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.contact-list a {
  color: var(--yellow);
  font-weight: 800;
  text-decoration: none;
}
.contact-list a:hover { text-decoration: underline; color: #fff; }
.contact-list span {
  display: block;
  font-size: 0.85rem;
  color: #c9d6ff;
  font-weight: 600;
}

form {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 0.85rem; }
label {
  display: block;
  font-weight: 800;
  margin-bottom: 0.28rem;
  font-size: 0.92rem;
}
input, textarea, select {
  width: 100%;
  font: inherit;
  padding: 0.65rem 0.75rem;
  border: 2px solid #d9d3c4;
  border-radius: 12px;
  background: #fffdf8;
  color: var(--ink);
}
input:focus, textarea:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 209, 0, 0.55);
}
textarea { min-height: 110px; resize: vertical; }
.two {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 560px) {
  .two { grid-template-columns: 1fr 1fr; }
}
.form-note {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0.4rem 0 0.9rem;
}
.btn-submit {
  background: var(--red);
  color: #fff;
  border: 0;
  width: 100%;
}
.btn-submit:hover { background: var(--blue-dark); color: #fff; }

/* Footer */
.site-footer {
  background: #0a1638;
  color: #c9d3ef;
  padding: 1.4rem 1rem 1.7rem;
  text-align: center;
  font-size: 0.95rem;
}
.site-footer p { margin: 0.25rem 0; }
.site-footer a { color: var(--yellow); }

/* Tiny screens */
@media (max-width: 420px) {
  .brand span { display: none; }
  .hero-inner { padding-top: 4.2rem; }
}
