/* HostingAuthors.com — Brand Stylesheet v3 */

/* ── Base ────────────────────────────────────── */
body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: #1f2933;
  background: #fff;
  letter-spacing: 0.01em;
}
h1, h2, h3, h4, h5, h6, .navbar-brand {
  font-family: "Lora", Georgia, serif;
  color: #18304a;
}
p, .lead { color: #4a5568; }

/* ── Navbar ──────────────────────────────────── */
.site-navbar {
  background: linear-gradient(145deg, #3d4f63 0%, #424242 58%, #3c6187 100%) !important;
  box-shadow: 0 4px 18px rgba(20,30,45,.22);
}
.navbar .nav-link { color: rgba(255,255,255,.9) !important; font-weight: 500; }
.navbar .nav-link:hover, .navbar .nav-link.active { color: #ffc300 !important; }

/* ── Hero ────────────────────────────────────── */
.hero-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 8% 12%, rgba(219,241,255,.55) 0%, transparent 42%),
    radial-gradient(ellipse at 88% 20%, rgba(51,140,231,.38) 0%, transparent 40%),
    linear-gradient(140deg, #2b4b6b 0%, #3c6187 50%, #338ce7 100%) !important;
}
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-section .container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .3rem .85rem;
  border-radius: 999px;
  background: rgba(219,241,255,.15);
  border: 1px solid rgba(219,241,255,.35);
  color: #dbf1ff;
  font-size: .82rem;
  margin-bottom: 1.1rem;
  letter-spacing: .04em;
}
.hero-title { color: #fff !important; text-shadow: 0 4px 16px rgba(10,20,40,.28); }
.hero-subtitle { color: rgba(240,250,255,.94) !important; }

.hero-panel {
  background: rgba(255,255,255,.16) !important;
  border: 1px solid rgba(255,255,255,.32) !important;
  border-radius: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 20px 48px rgba(10,20,40,.32);
}
.hero-panel h5 { color: #fff !important; }
.text-white-75 { color: rgba(255,255,255,.82) !important; }

/* ── Section layouts ─────────────────────────── */
.section-padding { padding: 5.5rem 0; }

.section-alt {
  background: linear-gradient(180deg, #f0f7ff 0%, #e4f0ff 100%) !important;
}

.section-charcoal {
  background: linear-gradient(150deg, #3c6187 0%, #424242 55%, #2e3a46 100%) !important;
  color: #fff;
}

/* ── Buttons ─────────────────────────────────── */
.btn-gold {
  background: linear-gradient(145deg, #ffd84d 0%, #ffc300 60%, #e8b000 100%) !important;
  color: #27323f !important;
  border: none !important;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(255,195,0,.38);
  transition: all .22s ease;
}
.btn-gold:hover, .btn-gold:focus {
  background: linear-gradient(145deg, #ffe474 0%, #ffd022 65%, #e8b000 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(255,195,0,.48);
}
.btn-ghost-light {
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.65) !important;
  color: #fff !important;
  background: rgba(255,255,255,.08) !important;
  transition: all .2s ease;
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,.22) !important;
  color: #fff !important;
}

/* ── Cards ───────────────────────────────────── */
.feature-card, .book-card, .pricing-mini, .plan-card, .example-card {
  background: #fff !important;
  border-radius: 16px !important;
  border: 1px solid #d0e6f8 !important;
  box-shadow: 0 4px 18px rgba(20,50,100,.09) !important;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.feature-card:hover, .book-card:hover, .pricing-mini:hover, .plan-card:hover, .example-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 38px rgba(20,50,100,.15) !important;
  border-color: #92c5f0 !important;
}

/* Testimonial cards */
.testimonial {
  background: #f5f9ff !important;
  border-radius: 16px !important;
  border: 1px solid #d0e6f8 !important;
  box-shadow: 0 4px 18px rgba(20,50,100,.07) !important;
  transition: transform .24s ease, box-shadow .24s ease;
}
.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(20,50,100,.13) !important;
}

/* ── Icon wrap ───────────────────────────────── */
span.icon-wrap,
.feature-card .icon-wrap,
.book-card .icon-wrap,
.section-padding .icon-wrap {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 14px;
  font-size: 1.35rem;
  color: #1e6dbf !important;
  background-color: #d6ebff !important;
  background: linear-gradient(140deg, #dbeeff 0%, #b8d9f8 100%) !important;
  box-shadow: 0 4px 14px rgba(51,140,231,.2);
  flex-shrink: 0;
  margin-bottom: .75rem;
}

/* ── Quote mark ──────────────────────────────── */
.quote-mark {
  font-size: 3.2rem;
  line-height: .85;
  color: rgba(51,140,231,.22);
  font-family: Georgia, serif;
  margin-bottom: .5rem;
}

/* ── Kicker ──────────────────────────────────── */
.kicker {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  font-size: .76rem;
  color: #338ce7;
  font-family: "Inter", sans-serif;
}

/* ── Pricing ─────────────────────────────────── */
.border-accent { border: 2px solid rgba(255,195,0,.7) !important; }
.price { font-size: 2.5rem; font-weight: 800; color: #1e4f80; margin: 10px 0 16px; }
.price span { font-size: 1rem; font-weight: 500; color: #6b7280; }
.feature-list li { padding: .4rem 0; border-bottom: 1px solid #e8f2fb; }
.feature-list li:last-child { border-bottom: none; }
.text-accent { color: #338ce7 !important; }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 991px) { .section-padding { padding: 4rem 0; } }
@media (max-width: 767px) {
  .display-4, .hero-title { font-size: 2rem; }
  .hero-panel { margin-top: 1.5rem; }
}
