/* ================================================================
   SBG Booking page — wrapper styles around Cal.com embed
   Brand: yellow #fdbe19 (accent), navy #002855 (primary)
   ================================================================ */

:root {
  --sbg-navy: #002855;
  --sbg-navy-deep: #001a3d;
  --sbg-yellow: #fdbe19;
  --sbg-yellow-hover: #e6a900;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --bg-page: #f7f9fc;
  --bg-card: #ffffff;
  --border-soft: #e5e7eb;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-page);
  color: var(--text-dark);
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.site-header {
  background: var(--sbg-navy);
  background-image: linear-gradient(135deg, var(--sbg-navy-deep) 0%, var(--sbg-navy) 100%);
  border-bottom: 3px solid var(--sbg-yellow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo {
  height: 36px;
  width: auto;
  display: block;
}

.back-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}
.back-link:hover { color: var(--sbg-yellow); }

/* ---------- Hero ---------- */

.hero {
  background: var(--sbg-navy);
  background-image:
    radial-gradient(ellipse at top, rgba(253, 190, 25, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--sbg-navy) 0%, var(--sbg-navy-deep) 100%);
  color: #ffffff;
  padding: 64px 0 72px;
  text-align: center;
}

.hero-title {
  margin: 0 0 16px;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero-subtitle {
  margin: 0 auto;
  max-width: 640px;
  font-size: clamp(16px, 1.7vw, 18px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

/* ---------- Booking section ---------- */

.booking-section {
  padding: 0 0 80px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.booking-card {
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.05),
    0 20px 40px -12px rgba(0, 40, 85, 0.15);
  overflow: hidden;
  padding: 8px;
}

#cal-booking-embed {
  width: 100%;
  min-height: 720px;
  border-radius: 12px;
  overflow: hidden;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--sbg-navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 28px 0;
  font-size: 14px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-inner a {
  color: var(--sbg-yellow);
  font-weight: 500;
}

.footer-inner a:hover { color: #ffffff; }

/* ---------- Responsive ---------- */

@media (max-width: 640px) {
  .header-inner { padding-top: 14px; padding-bottom: 14px; }
  .logo { height: 30px; }
  .back-link { font-size: 12px; }

  .hero { padding: 48px 0 64px; }
  .hero-title { font-size: 30px; }
  .hero-subtitle { font-size: 15px; }

  .booking-section { padding-bottom: 48px; margin-top: -30px; }
  .booking-card { padding: 4px; border-radius: 12px; }
  #cal-booking-embed { min-height: 620px; }

  .footer-inner { justify-content: center; text-align: center; }
}
