/* site-dev/public/css/base.css */
@font-face {
  font-family: "BannerFont";
  src: url("../fonts/bannerfont.otf") format("opentype");
  font-display: swap;
}

:root {
  --bg: #050308;
  --bg-soft: #120818;
  --card: #1b0d20;
  --accent: #ffd6aa;
  --accent-soft: rgba(255, 214, 170, 0.14);
  --accent-strong: rgba(255, 214, 170, 0.35);
  --text-main: #fdf5eb;
  --text-soft: #cbb8a8;
  --danger: #ff6b81;
  --success: #63e6be;
  --border-radius: 18px;
  --shadow-soft: 0 22px 40px rgba(0, 0, 0, 0.65);
  --section-max-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #2d162f, #050308);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

.no-js .fade-item {
  opacity: 1;
  transform: none;
}

.js .fade-item {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  max-width: var(--section-max-width);
  margin: 0 auto;
  backdrop-filter: blur(14px);
  background: linear-gradient(
    to bottom,
    rgba(5, 3, 8, 0.95),
    rgba(5, 3, 8, 0.82),
    rgba(5, 3, 8, 0)
  );
}

.logo {
  text-decoration: none;
  color: inherit;
}

.brand-wordmark {
  font-family: "BannerFont", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--accent);
  white-space: nowrap;
}

.main-nav {
  display: flex;
  gap: 16px;
  font-size: 0.9rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-soft);
  padding: 4px 8px;
  border-radius: 999px;
}

.main-nav a:hover {
  background: rgba(255, 214, 170, 0.18);
  color: var(--text-main);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--text-main);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 3, 8, 0.96);
  backdrop-filter: blur(18px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
}

.nav-overlay.is-open {
  display: flex;
}

.nav-drawer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 20px;
  border-radius: 20px;
  background: rgba(18, 9, 23, 0.98);
  border: 1px solid rgba(255, 214, 170, 0.35);
  min-width: 240px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-main);
  font-size: 0.95rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: transparent;
}

.nav-link:hover {
  background: rgba(255, 214, 170, 0.12);
}

.section {
  padding: 40px 16px 60px;
}

.section-inner {
  max-width: var(--section-max-width);
  margin: 0 auto;
}

.glass-panel {
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 214, 170, 0.22);
  background: radial-gradient(circle at top left, rgba(27, 13, 32, 0.9), rgba(5, 3, 8, 0.95));
  box-shadow: var(--shadow-soft);
  padding: 24px 22px;
}

.glass-panel-dark {
  background: radial-gradient(circle at top left, rgba(12, 4, 18, 0.98), rgba(5, 3, 8, 0.98));
}

h1,
h2,
h3 {
  margin: 0 0 8px;
  font-weight: 600;
}

h2 {
  font-size: 1.5rem;
}

.section-lead {
  margin: 4px 0 12px;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.section-lead-light {
  color: #f8e9da;
}

.hero-panel {
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 214, 170, 0.16), transparent 60%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--text-soft);
  margin: 0 0 6px;
}

.hero-paragraph {
  font-size: 0.9rem;
  margin: 0 0 6px;
  color: var(--text-soft);
}

.hero-paragraph-cta {
  margin-top: 10px;
  color: var(--text-main);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 999px;
  padding: 8px 14px;
  border: 1px solid transparent;
  font-size: 0.88rem;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #311604;
  border-color: rgba(0, 0, 0, 0.08);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 214, 170, 0.7);
  color: var(--accent);
}

.btn-ghost:hover {
  background: rgba(255, 214, 170, 0.12);
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.scroll-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid var(--accent);
}

.hero-portrait-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-portrait-oval {
  width: 220px;
  max-width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 100% / 80%;
  overflow: hidden;
  border: 2px solid rgba(255, 214, 170, 0.6);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.7);
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.35), transparent 55%);
}

.hero-portrait-oval img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 22px;
}

.benefits-list {
  margin: 8px 0 0;
  padding-left: 18px;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.highlight-box {
  border-radius: 16px;
  padding: 12px 12px 10px;
  border: 1px solid rgba(255, 214, 170, 0.38);
  background: radial-gradient(circle at top left, var(--accent-soft), rgba(10, 5, 15, 0.98));
}

.highlight-heading {
  margin: 0 0 6px;
  font-size: 0.9rem;
  color: var(--accent);
}

.experiences-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.experiences-header h2 {
  margin-bottom: 4px;
}

.experience-display {
  border-radius: 16px;
  border: 1px solid rgba(255, 214, 170, 0.24);
  background: rgba(8, 4, 12, 0.95);
  padding: 14px 14px 16px;
}

.experience-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}

.experience-thumb {
  display: flex;
  justify-content: center;
  padding: 4px;
  border-radius: 12px;
  cursor: pointer;
  border: 1px solid transparent;
}

.experience-thumb img {
  width: 100%;
  max-width: 110px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
}

.experience-thumb.is-active {
  border-color: rgba(255, 214, 170, 0.7);
  background: rgba(255, 214, 170, 0.06);
}

.experience-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 260px;
  margin-bottom: 10px;
}

.experience-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 400ms ease;
}

.experience-image.is-visible {
  opacity: 1;
}

.experience-text h3 {
  margin-bottom: 4px;
}

.experience-backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background-position: center;
  background-size: cover;
  filter: blur(26px);
  transform: scale(1.1);
  transition: opacity 900ms ease;
  pointer-events: none;
}

.experience-backdrop.is-visible {
  opacity: 0.35;
}

.experience-cards {
  margin-top: 12px;
  display: none;
  gap: 12px;
}

.experience-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 214, 170, 0.24);
  background: rgba(7, 3, 11, 0.97);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.55);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.experience-card:active,
.experience-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.6);
}

.experience-card-image {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.experience-card-text {
  padding: 10px 12px 12px;
}

.experience-card-text h3 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.experience-card-text p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-soft);
}

.hot-deals-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.hot-deal-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 214, 170, 0.28);
  background: rgba(8, 4, 12, 0.95);
  padding: 10px 10px 12px;
  font-size: 0.85rem;
}

.hot-deal-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 6px;
  object-fit: cover;
  max-height: 150px;
}

.hot-deals-empty {
  margin-top: 12px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(10, 5, 16, 0.96);
  border: 1px dashed rgba(255, 214, 170, 0.35);
  font-size: 0.85rem;
  color: var(--text-soft);
}

.insta-header {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.insta-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 8px;
}

.insta-tile {
  border-radius: 12px;
  background: rgba(12, 6, 18, 0.96);
  border: 1px solid rgba(255, 214, 170, 0.18);
  aspect-ratio: 1 / 1;
}

.enquiry-form {
  margin-top: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 214, 170, 0.24);
  background: rgba(7, 3, 11, 0.95);
  padding: 14px 14px 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px 18px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.85rem;
}

label {
  font-size: 0.8rem;
  color: var(--text-soft);
}

input,
select,
textarea {
  border-radius: 10px;
  border: 1px solid rgba(255, 214, 170, 0.38);
  background: rgba(5, 3, 10, 0.95);
  color: var(--text-main);
  padding: 6px 8px;
  font-size: 0.85rem;
  font-family: inherit;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(255, 214, 170, 0.6);
}

.children-ages-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.children-ages-list select {
  min-width: 70px;
}

.form-note {
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--text-soft);
}

.btn-full-width {
  width: 100%;
  margin-top: 10px;
}

.newsletter-form {
  margin-top: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 214, 170, 0.24);
  background: rgba(7, 3, 11, 0.95);
  padding: 12px 14px;
}

.newsletter-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) auto;
  gap: 10px;
  align-items: flex-end;
}

.newsletter-submit {
  height: 34px;
  padding-inline: 18px;
}

.site-footer {
  padding: 20px 16px 26px;
  border-top: 1px solid rgba(255, 214, 170, 0.18);
  background: radial-gradient(circle at top, rgba(18, 7, 24, 0.9), rgba(5, 3, 8, 1));
}

.footer-inner {
  max-width: var(--section-max-width);
  margin: 0 auto;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.footer-small {
  margin: 2px 0;
}

.footer-inner a {
  color: var(--accent);
  text-decoration: none;
}

.footer-inner a:hover {
  text-decoration: underline;
}

.logo-bubbles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  overflow: hidden;
  opacity: 0.4;
}

.partners-strip-container {
  margin-top: 20px;
}

.partners-strip-label {
  margin: 0 0 6px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-soft);
}

.partners-strip-viewport {
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(255, 214, 170, 0.45);
  background: rgba(8, 4, 12, 0.96);
  padding: 6px 0;
  cursor: grab;
  touch-action: pan-y;
}

.partners-strip-viewport.is-dragging {
  cursor: grabbing;
}

.partners-strip {
  display: flex;
  gap: 16px;
  padding: 4px 16px;
}

.partner-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.partner-logo-img {
  height: 24px;
  max-width: 90px;
  object-fit: contain;
  display: block;
}

/* Testimonials strip */
.testimonials-strip-viewport {
  margin-top: 14px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 214, 170, 0.28);
  background: rgba(7, 3, 11, 0.96);
  padding: 10px 6px;
  cursor: grab;
  touch-action: pan-y;
}

.testimonials-strip-viewport.is-dragging {
  cursor: grabbing;
}

.testimonials-strip {
  display: flex;
  gap: 12px;
  padding: 4px 4px;
}

.testimonial-card {
  flex: 0 0 280px;
  max-width: 320px;
  border-radius: 14px;
  border: 1px solid rgba(255, 214, 170, 0.26);
  background: radial-gradient(
    circle at top left,
    rgba(255, 214, 170, 0.12),
    rgba(5, 3, 10, 0.98)
  );
  padding: 10px 12px 12px;
  font-size: 0.82rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6);
}

.testimonial-quote {
  margin: 0 0 8px;
  color: var(--text-main);
}

.testimonial-name {
  margin: 0;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--accent);
}
