/*
Theme Name: Get Boo
Theme URI: https://example.com/get-boo
Author: Get Boo
Description: A fast, mobile-first WordPress theme for the Get Boo ride-booking service.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: get-boo
*/

:root {
  --gb-yellow: #FFD400;
  --gb-black: #0B0B0B;
  --gb-white: #FFFFFF;
  --gb-gray: #F5F5F5;
  --gb-text: #161616;
  --gb-muted: #666666;
  --gb-radius: 22px;
  --gb-shadow: 0 16px 40px rgba(0,0,0,.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--gb-text);
  background: var(--gb-white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
.gb-container { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }

.gb-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.gb-nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.gb-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -.04em;
}
.gb-brand .custom-logo { max-height: 52px; width: auto; }
.gb-logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--gb-yellow);
  color: var(--gb-black);
  display: grid;
  place-items: center;
  font-weight: 900;
}
.gb-menu { display: flex; align-items: center; gap: 26px; font-weight: 700; }
.gb-menu a:hover { opacity: .65; }
.gb-mobile-toggle { display: none; border: 0; background: transparent; font-size: 1.5rem; }

.gb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
  cursor: pointer;
}
.gb-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.14); }
.gb-btn-primary { background: var(--gb-yellow); color: var(--gb-black); }
.gb-btn-dark { background: var(--gb-black); color: var(--gb-white); }
.gb-btn-outline { border-color: var(--gb-black); color: var(--gb-black); background: transparent; }

.gb-hero {
  background:
    radial-gradient(circle at 85% 15%, rgba(255,212,0,.38), transparent 34%),
    linear-gradient(135deg, #fff 0%, #f7f7f7 100%);
  padding: 92px 0 76px;
  overflow: hidden;
}
.gb-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 54px;
}
.gb-kicker {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--gb-black);
  color: var(--gb-white);
  font-size: .85rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.gb-hero h1 {
  font-size: clamp(3rem, 7vw, 6.3rem);
  line-height: .95;
  margin: 0 0 24px;
  letter-spacing: -.07em;
}
.gb-hero h1 span { color: #B28D00; }
.gb-hero p { font-size: 1.18rem; color: var(--gb-muted); max-width: 640px; }
.gb-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.gb-phone-card {
  min-height: 520px;
  border-radius: 36px;
  padding: 26px;
  background: var(--gb-black);
  color: var(--gb-white);
  box-shadow: var(--gb-shadow);
  position: relative;
}
.gb-map-faux {
  min-height: 300px;
  border-radius: 26px;
  background:
    linear-gradient(45deg, rgba(255,255,255,.05) 25%, transparent 25%) 0 0/34px 34px,
    linear-gradient(-45deg, rgba(255,255,255,.05) 25%, transparent 25%) 0 0/34px 34px,
    #1a1a1a;
  position: relative;
  overflow: hidden;
}
.gb-map-faux:before, .gb-map-faux:after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: var(--gb-yellow);
  box-shadow: 0 0 0 10px rgba(255,212,0,.16);
}
.gb-map-faux:before { width: 18px; height: 18px; left: 24%; top: 48%; }
.gb-map-faux:after { width: 18px; height: 18px; right: 20%; top: 24%; }
.gb-trip-card {
  margin-top: -44px;
  position: relative;
  background: var(--gb-white);
  color: var(--gb-black);
  padding: 22px;
  border-radius: 24px;
  box-shadow: var(--gb-shadow);
}
.gb-trip-row { display: grid; gap: 10px; margin-bottom: 16px; }
.gb-trip-field { padding: 14px 16px; border-radius: 14px; background: var(--gb-gray); font-weight: 700; }

.gb-section { padding: 86px 0; }
.gb-section-dark { background: var(--gb-black); color: var(--gb-white); }
.gb-section-yellow { background: var(--gb-yellow); color: var(--gb-black); }
.gb-section-head { max-width: 720px; margin-bottom: 40px; }
.gb-section-head h2 {
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  line-height: 1;
  letter-spacing: -.055em;
  margin: 0 0 16px;
}
.gb-section-head p { color: var(--gb-muted); font-size: 1.08rem; }
.gb-section-dark .gb-section-head p { color: #c9c9c9; }

.gb-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.gb-card {
  padding: 28px;
  border-radius: var(--gb-radius);
  background: var(--gb-white);
  color: var(--gb-black);
  border: 1px solid rgba(0,0,0,.08);
}
.gb-card-icon {
  width: 48px; height: 48px; border-radius: 15px;
  background: var(--gb-yellow);
  display: grid; place-items: center;
  font-size: 1.25rem; font-weight: 900;
  margin-bottom: 20px;
}
.gb-card h3 { margin: 0 0 10px; font-size: 1.35rem; }
.gb-card p { margin: 0; color: var(--gb-muted); }

.gb-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.gb-cta-card { border-radius: 30px; padding: 36px; min-height: 300px; display: flex; flex-direction: column; justify-content: space-between; }
.gb-cta-card.dark { background: var(--gb-black); color: var(--gb-white); }
.gb-cta-card.light { background: var(--gb-gray); color: var(--gb-black); }
.gb-cta-card h3 { font-size: 2.1rem; margin: 0 0 10px; letter-spacing: -.04em; }
.gb-cta-card p { max-width: 450px; }

.gb-islands { display: flex; flex-wrap: wrap; gap: 12px; }
.gb-island {
  padding: 13px 17px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  font-weight: 800;
}

.gb-contact-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 28px;
  background: var(--gb-black);
  color: var(--gb-white);
}
.gb-contact-box h2 { margin: 0 0 8px; font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -.05em; }
.gb-contact-box p { margin: 0; color: #d2d2d2; }

.gb-footer { background: #050505; color: #fff; padding: 36px 0; }
.gb-footer-row { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.gb-footer a { color: var(--gb-yellow); }

.gb-page-hero { padding: 70px 0 40px; background: var(--gb-yellow); }
.gb-page-hero h1 { margin:0; font-size: clamp(2.7rem,6vw,5rem); letter-spacing:-.06em; }
.gb-content { padding: 60px 0 90px; }

@media (max-width: 900px) {
  .gb-hero-grid, .gb-grid-3, .gb-cta-grid, .gb-contact-box { grid-template-columns: 1fr; }
  .gb-menu {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    padding: 20px;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--gb-shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .gb-menu.open { display: flex; }
  .gb-mobile-toggle { display: block; }
  .gb-phone-card { min-height: 460px; }
  .gb-contact-box .gb-btn { width: 100%; }
}

@media (max-width: 560px) {
  .gb-hero { padding-top: 56px; }
  .gb-actions .gb-btn { width: 100%; }
  .gb-section { padding: 64px 0; }
}
