/* ============================================================
   Silicon Valley Skydiving — Demo Site Styles
   Palette: Navy #1a3a6b | Blue #1e90ff | Red #cc0000
   Fonts: Montserrat (headings) + Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,600;0,700;0,800;0,900;1,800&family=Inter:wght@400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #1a3a6b;
  --blue:   #1e90ff;
  --red:    #cc0000;
  --white:  #ffffff;
  --dark:   #111827;
  --gray:   #f3f4f6;
  --text:   #1f2937;
  --muted:  #6b7280;
  --border: #e5e7eb;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ── Utility bar ── */
.util-bar {
  background: var(--navy);
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #c8d8f0;
  flex-wrap: wrap;
  gap: 6px;
}
.util-bar a { color: #c8d8f0; transition: color .2s; }
.util-bar a:hover { color: var(--white); }
.util-bar .util-left { display: flex; align-items: center; gap: 6px; }
.util-bar .util-right { display: flex; gap: 16px; }
.util-bar .phone { font-weight: 700; font-size: 0.9rem; color: var(--white); letter-spacing: .5px; }

/* ── Main nav ── */
.main-nav {
  background: #0f2447;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo img { height: 52px; width: auto; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
}
.nav-links a {
  color: #d1e3ff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: rgba(30,144,255,.2); color: var(--white); }
.nav-book-btn {
  background: var(--blue);
  color: var(--white) !important;
  border-radius: 6px;
  padding: 8px 16px !important;
}
.nav-book-btn:hover { background: #1677d8 !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

/* ── Hero ── */
.hero {
  position: relative;
  height: 92vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('/siliconvalleyskydiving/assets/img/tandem-girl-1.webp') center center / cover no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,36,71,.72) 0%, rgba(15,36,71,.45) 60%, rgba(30,144,255,.25) 100%);
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}
.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a8c8ff;
  margin-bottom: 12px;
}
.hero-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  text-transform: uppercase;
  max-width: 680px;
  margin-bottom: 24px;
}
.hero-headline .highlight {
  color: var(--blue);
  font-style: italic;
  display: block;
}
.hero-sub {
  font-size: 1.05rem;
  color: #c8d8f0;
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 6px;
  transition: all .2s;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover { background: #1677d8; border-color: #1677d8; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover { background: #a80000; border-color: #a80000; transform: translateY(-1px); }

/* ── Sub-hero band ── */
.sub-hero {
  background: linear-gradient(90deg, #e8f1ff 0%, #dceeff 100%);
  padding: 28px 24px;
  text-align: center;
  border-bottom: 3px solid var(--blue);
}
.sub-hero h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.sub-hero p {
  color: #3a5a8a;
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.sub-hero-ctas { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ── Why Choose section ── */
.why-choose {
  background: var(--navy);
  padding: 64px 24px;
  color: var(--white);
}
.why-choose h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 40px;
  color: var(--white);
}
.why-choose h2 span { color: var(--blue); }
.why-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.why-col h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(30,144,255,.3);
}
.why-col ul { list-style: none; }
.why-col li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: #c8d8f0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.why-col li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Skydiver level cards ── */
.levels {
  padding: 72px 24px;
  background: var(--white);
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.levels-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.level-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  background: var(--white);
}
.level-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(26,58,107,.14); }
.level-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.level-card-body { padding: 24px; }
.level-card-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.level-card-body p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; margin-bottom: 18px; }
.level-card-body .btn { font-size: 0.78rem; padding: 10px 20px; }

/* ── About section ── */
.about {
  background: var(--gray);
  padding: 72px 24px;
}
.about-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.about-inner .section-title { margin-bottom: 8px; }
.about-inner .section-eyebrow { margin-bottom: 10px; }
.about-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 32px;
}
.about-text { text-align: left; }
.about-text p {
  font-size: 0.96rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 18px;
}
.about-text p:last-child { margin-bottom: 0; }
.about-ctas { margin-top: 32px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── Pricing section ── */
.pricing {
  padding: 72px 24px;
  background: var(--white);
}
.pricing-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.price-card {
  border: 2px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.price-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(26,58,107,.14); }
.price-card.featured {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(30,144,255,.2);
}
.price-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.price-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.price-altitude {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 4px;
}
.price-altitude span { font-size: 0.9rem; font-weight: 600; color: var(--muted); }
.price-card-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.price-card-body p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.price-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 16px;
}
.price-tag .price-note { font-size: 0.8rem; font-weight: 500; color: var(--muted); display: block; }
.price-card-body .btn { text-align: center; }
.price-badge {
  background: var(--blue);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  text-align: center;
}

/* ── Discounts table ── */
.discounts {
  background: var(--gray);
  padding: 56px 24px;
}
.discounts-inner {
  max-width: 860px;
  margin: 0 auto;
}
.discounts table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-top: 32px;
}
.discounts th {
  background: var(--navy);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
}
.discounts td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.discounts tr:nth-child(even) td { background: #f9fafb; }
.discount-amount {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--blue);
  font-size: 1rem;
}
.discounts .disclaimer {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 16px;
  font-style: italic;
}

/* ── AFF / Learn section ── */
.learn {
  padding: 72px 24px;
  background: var(--white);
}
.learn-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.learn-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.learn-content p { font-size: 0.95rem; color: var(--text); line-height: 1.8; margin-bottom: 16px; }
.learn-content .btn { margin-top: 8px; }
.learn-img { border-radius: 12px; overflow: hidden; }
.learn-img img { width: 100%; height: 420px; object-fit: cover; border-radius: 12px; }
.learn-requirements {
  background: var(--gray);
  border-radius: 8px;
  padding: 20px;
  margin-top: 20px;
  font-size: 0.88rem;
}
.learn-requirements h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}
.learn-requirements ul { list-style: none; }
.learn-requirements li {
  padding: 4px 0;
  color: var(--text);
  display: flex;
  gap: 8px;
}
.learn-requirements li::before { content: '→'; color: var(--blue); font-weight: 700; }

/* ── Call Us band ── */
.call-band {
  background: linear-gradient(90deg, #1a3a6b 0%, #1e5fa8 100%);
  padding: 40px 24px;
  text-align: center;
  color: var(--white);
}
.call-band h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.call-band .phone-big {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 20px;
}
.call-band .phone-big a { color: inherit; }

/* ── Map section ── */
.map-section {
  background: var(--dark);
  padding: 0;
}
.map-section iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* ── Footer ── */
footer {
  background: var(--dark);
  color: #9ca3af;
  padding: 56px 24px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #374151;
}
.footer-logo img { height: 72px; width: auto; margin-bottom: 16px; }
.footer-logo-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-logo-sub {
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 20px;
}
.footer-ctas { display: flex; flex-direction: column; gap: 8px; }
.footer-ctas .btn { text-align: center; font-size: 0.78rem; padding: 10px 18px; }
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #9ca3af; font-size: 0.88rem; transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  align-items: flex-start;
}
.footer-contact-item .icon { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: #9ca3af; }
.footer-contact-item a:hover { color: var(--white); }
.footer-hours { font-size: 0.85rem; line-height: 1.7; }
.footer-hours strong { color: var(--white); }
.footer-bottom {
  max-width: 1200px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: #6b7280;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1f2937;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  transition: background .2s, color .2s;
  font-size: 0.85rem;
}
.footer-social a:hover { background: var(--blue); color: var(--white); }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { color: #6b7280; }
.footer-legal a:hover { color: var(--white); }

/* ── Sticky book button ── */
.sticky-book {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  display: none;
}
.sticky-book.visible { display: block; }
.sticky-book .btn {
  box-shadow: 0 6px 24px rgba(30,144,255,.5);
  font-size: 0.82rem;
  padding: 14px 24px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 24px; }
  .levels-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .learn-inner { grid-template-columns: 1fr; }
  .learn-img { order: -1; }
  .learn-img img { height: 280px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .util-bar { justify-content: center; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: #0f2447; padding: 16px; gap: 4px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero { height: 80vh; }
  .hero-content { padding: 0 20px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; }
  .sub-hero-ctas { flex-direction: column; align-items: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .call-band .phone-big { font-size: 1.8rem; }
}
