/*
 Theme Name:   Kiwi Spotting Tours
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/
/* HERO (BEM) — CSS */

/* Theme variables (override these anywhere, e.g. .dark .hero { ... } or :root { ... }) */
/* =========================
ALL 5 SECTIONS (BEM) — CSS
(shared variables + utilities + section styles)
========================= */
/* Global CSS in Bricks (Settings → Custom Code → CSS) */
html {
  font-size: 16px;
}
/* ---- THEME TOKENS (single source of truth) ---- */
:root {
  /* Base */
  --bg: #020617;                    /* slate-950 */
  --bg-2: #0f172a;                  /* slate-900 */
  --bg-3: #0f172a80;
  --surface: rgba(15, 23, 42, 0.5); /* slate-900/50 */
  --surface-2: rgba(30, 41, 59, 0.5); /* slate-800/50 */
  --surface-hover: rgba(15, 23, 42, 0.8);

  --text: #ffffff;
  --text-muted: #cbd5e1;            /* slate-300 */
  --text-subtle: #94a3b8;           /* slate-400 */
  --text-faint: rgba(255, 255, 255, 0.6);

  /* Accent */
  --accent: #fbbf24;                /* amber-400 */
  --accent-2: #fcd34d;              /* amber-300 */
  --accent-3: #f59e0b;              /* amber-500 */
  --accent-4: #d97706;              /* amber-600 */

  /* Lines */
  --border: #1e293b;                /* slate-800 */
  --border-strong: #64748b;         /* slate-500 */
  --divider: #334155;               /* slate-700 */

  /* Overlays */
  --overlay-top: rgba(2, 6, 23, 0.8);
  --overlay-mid: rgba(15, 23, 42, 0.6);
  --overlay-bottom: rgba(2, 6, 23, 1);
  --overlay-side: rgba(2, 6, 23, 0.5);
  --overlay-clear: rgba(0, 0, 0, 0);

  /* Effects */
  --shadow-glow: rgba(245, 158, 11, 0.3);
  --blur-strong: 64px;

  /* Layout */
  --container: 80rem;               /* ~max-w-7xl */
  --container-narrow: 56rem;        /* ~max-w-4xl */
  --radius-lg: 1rem;                /* rounded-2xl */
  --radius-xl: 1.5rem;              /* rounded-3xl */
  --radius-md: 0.75rem;             /* rounded-xl */

  /* Spacing */
  --section-y: 6rem;                /* py-24 */
}

/* ---- UTILITIES ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container--narrow {
  max-width: var(--container-narrow);
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.kicker {
  display: inline-block;
  color: var(--accent);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  text-decoration: none;
  transition: transform 300ms ease, box-shadow 300ms ease, background-color 300ms ease, border-color 300ms ease,
    color 300ms ease;
  will-change: transform;
}

.button--primary {
  background: var(--accent-3);
  color: var(--bg-2);
  font-weight: 600;
}

.button--primary:hover {
  background: var(--accent);
  transform: scale(1.05);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1),
    0 0 40px var(--shadow-glow);
}

.button--secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
  font-weight: 500;
}

.button--secondary:hover {
  border-color: var(--text);
  background: rgba(255, 255, 255, 0.1);
}

.button--xl {
  padding: 1.25rem 2.5rem; /* px-10 py-5 */
  font-size: 1.25rem;      /* text-xl */
}

.divider--vertical {
  width: 1px;
  height: 3rem;
  background: var(--divider);
}

.section-head {
  text-align: center;
  margin-bottom: 4rem;
}

.section-head__title {
  margin: 1rem 0 1.5rem;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.section-head__lead {
  margin: 0 auto;
  color: var(--text-subtle);
  font-size: 1.125rem;
  line-height: 1.625;
  max-width: 48rem;
}

/* Shared icon style (stroke icons) */
.icon-stroke {
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ---- ANIMATIONS ---- */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
/* HEADER / NAVBAR (Standalone BEM, no dependencies) */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  background: rgba(15, 23, 42, 0.95); /* slate-900/95 */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow:
    0 10px 15px -3px rgba(2, 6, 23, 0.2),
    0 4px 6px -4px rgba(2, 6, 23, 0.2);

  transition: all 0.5s ease;
}

.site-header__container {
  max-width: 80rem; /* ~1280px */
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .site-header__container {
    padding: 0 2rem;
  }
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem; /* 80px */
}

/* Brand */
.site-header__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.site-header__logo {
  height: 3rem; /* 48px */
  width: auto;
  display: block;
}

.site-header__brand-text {
  display: flex;
  flex-direction: column;
}

.site-header__name {
  color: var(--text);
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  z-index: 1000000;
}
.site-header__tag {
  color: var(--accent);
  font-size: 0.75rem; /* text-xs */
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: -13px;
}


/* Navigation */
.site-header__nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

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

.site-header__link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #cbd5e1; /* slate-300 */
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-header__link:hover {
  color: #ffffff;
}

/* CTA Button */
.site-header__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;

  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;

  background: var(--accent-3); /* amber-500 */
  color: #0f172a;       /* slate-900 */

  transition: all 0.3s ease;
}

.site-header__button:hover {
  background: #fbbf24; /* amber-400 */
  box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.25);
}

/* Mobile Toggle */
.site-header__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  padding: 0.5rem;
  color: #ffffff;
  cursor: pointer;
}

@media (min-width: 768px) {
  .site-header__toggle {
    display: none;
  }
}

.site-header__toggle-icon {
  width: 1.5rem;
  height: 1.5rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* FOOTER (BEM) — CSS
   Uses the same shared variables you already defined:
   --bg, --border, --text, --text-subtle, --text-muted, --accent, etc.
*/

.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  color: var(--text);
}

.footer__inner {
  padding-top: 4rem;  /* py-16 */
  padding-bottom: 4rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem; /* gap-12 */
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Brand */
.footer__brand-head {
  display: flex;
  align-items: center;
  gap: 0.75rem; /* gap-3 */
  margin-bottom: 1.5rem; /* mb-6 */
}

.footer__logo {
  height: 2.5rem; /* h-10 */
  width: auto;
  display: block;
}

.footer__brand-text {
  display: flex;
  flex-direction: column;
}

.footer__brand-name {
  color: var(--text);
  font-weight: 600;
  font-size: 1.125rem; /* text-lg */
  letter-spacing: -0.01em;
  z-index: 1000000;
}

.footer__brand-tag {
  color: var(--accent);
  font-size: 0.75rem; /* text-xs */
  letter-spacing: 0.1em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: -13px;
}

.footer__desc {
  margin: 0;
  color: var(--text-subtle);
  font-size: 0.875rem; /* text-sm */
  line-height: 1.625;
  margin-bottom: 1.5rem;
}
/* SOCIAL LINKS (Standalone BEM) */

.footer__social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-subtle);
    background: transparent;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.footer__social-link:hover {
    color: var(--accent);
}

.footer__social-icon {
    width: 1.25rem;
    height: 1.25rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* Columns */
.footer__title {
  margin: 0 0 1.5rem; /* mb-6 */
  color: var(--text);
  font-weight: 600;
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem; /* space-y-3 */
}

.footer__contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem; /* space-y-4 */
}

.footer__item {
  margin: 0;
}

.footer__link {
  color: var(--text-subtle);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 150ms ease;
}

.footer__link:hover {
  color: var(--accent);
}

/* Contact items */
.footer__contact-item {
  display: flex;
  gap: 0.75rem; /* gap-3 */
  align-items: flex-start;
}

.footer__contact-item:last-child {
  align-items: center;
}

.footer__icon {
  width: 1.25rem;  /* w-5 */
  height: 1.25rem; /* h-5 */
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
  margin-top: 0.125rem; /* mt-0.5 */
}

.footer__contact-text {
  color: var(--text-subtle);
  font-size: 0.875rem;
  line-height: 1.4;
}

/* Bottom */
.footer-legal {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    border-color: hsl(var(--border));
    border-top: 1px solid var(--border);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
}
.footer-legal .footer-text {
    margin: 0;
    color: #64748b;
    font-size: 0.875rem;
}
@media (min-width: 768px) {
  .footer-legal {
    flex-direction: row;
  }
}