/* Leader Assistant Live — shared styles */

:root {
  --gb-deep-blue: #38404d;
  --gb-medium-blue: #739ea7;
  --gb-light-blue: #ddf0f4;
  --gb-orange: #ffa027;
  --gb-beige: #fff6ea;
  --gb-light-gray: #e6e7e8;

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--gb-beige);
  color: var(--gb-deep-blue);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--gb-medium-blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  line-height: 1.2;
  font-weight: 800;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

p {
  margin: 0 0 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gb-medium-blue);
}

/* Buttons */

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gb-orange);
  color: #ffffff;
}

.btn-primary:hover {
  background: #ff9410;
  box-shadow: 0 8px 20px rgba(255, 160, 39, 0.35);
}

.btn-outline {
  background: transparent;
  border-color: var(--gb-beige);
  color: var(--gb-beige);
}

.btn-outline:hover {
  background: var(--gb-beige);
  color: var(--gb-deep-blue);
}

.btn-secondary {
  background: transparent;
  border-color: var(--gb-deep-blue);
  color: var(--gb-deep-blue);
}

.btn-secondary:hover {
  background: var(--gb-deep-blue);
  color: #ffffff;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

/* 404 alert banner */

.alert-banner {
  background: var(--gb-orange);
  color: var(--gb-deep-blue);
  text-align: center;
  padding: 16px 24px;
}

.alert-banner p {
  margin: 0;
  font-weight: 700;
}

.alert-banner p + p {
  font-weight: 500;
  font-size: 0.95rem;
  margin-top: 4px;
}

.alert-banner a {
  color: var(--gb-deep-blue);
  text-decoration: underline;
}

/* Header / Nav */

.site-header {
  background: var(--gb-deep-blue);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.wordmark {
  color: var(--gb-beige);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.wordmark:hover {
  text-decoration: none;
  color: var(--gb-orange);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gb-beige);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  color: var(--gb-beige);
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: var(--gb-orange);
  text-decoration: none;
}

.site-nav a.is-active {
  color: var(--gb-orange);
}

/* Hero */

.hero {
  position: relative;
  background-color: var(--gb-deep-blue);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--gb-beige);
  padding: 96px 0 88px;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(56, 64, 77, 0.6);
}

.hero .wrap {
  position: relative;
  z-index: 1;
}

.hero-home {
  background-image: url("/assets/images/leader-assistant-live-background-lalive-dotcom.jpeg");
}

.hero-templates {
  background-image: url("/assets/images/leader-assistant-resource-library-background.jpg");
}

.hero h1 {
  color: #ffffff;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.hero .lede {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: #ffffff;
}

.hero .eyebrow {
  color: var(--gb-orange);
}

.hero .btn-row {
  justify-content: center;
}

/* Sections */

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--gb-light-blue);
}

.section-header {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-header p {
  color: var(--gb-deep-blue);
  font-size: 1.05rem;
}

/* Mission / statement blocks */

.statement {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 24px;
}

.statement p {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gb-deep-blue);
}

/* Founder section */

.founder {
  background: var(--gb-deep-blue);
  color: var(--gb-beige);
  padding: 72px 0;
}

.founder .wrap {
  max-width: 780px;
  text-align: center;
}

.founder p {
  font-size: 1.2rem;
  color: #ffffff;
}

.founder a {
  color: var(--gb-orange);
  font-weight: 700;
}

.headshot-sm {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 16px auto 24px;
  border: 3px solid var(--gb-light-blue);
}

.headshot-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Testimonials */

.testimonials {
  padding: 80px 0;
  background: var(--gb-light-blue);
}

.testimonial-columns {
  column-count: 3;
  column-gap: 28px;
  margin-top: 8px;
}

.testimonial-card {
  break-inside: avoid;
  display: inline-block;
  width: 100%;
  background: #ffffff;
  border-radius: 10px;
  padding: 26px;
  margin-bottom: 28px;
  border: 1px solid var(--gb-light-gray);
  box-shadow: 0 4px 14px rgba(56, 64, 77, 0.06);
}

.testimonial-card .quote {
  font-style: italic;
  color: var(--gb-deep-blue);
  margin-bottom: 14px;
  font-size: 0.96rem;
}

.testimonial-card .attribution {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--gb-medium-blue);
  margin: 0;
}

.testimonials .btn-row {
  justify-content: center;
  margin-top: 48px;
}

/* Resource cards (templates page) */

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 8px;
}

.resource-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--gb-light-gray);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 14px rgba(56, 64, 77, 0.06);
}

.resource-card .thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gb-light-gray);
}

.resource-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resource-card .body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.resource-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.resource-card p {
  color: #4c5561;
  font-size: 0.95rem;
  flex: 1;
}

.resource-card .list-label {
  flex: 0;
  font-weight: 700;
  color: var(--gb-deep-blue);
  margin-bottom: 8px;
}

.resource-card .sublink {
  flex: 0;
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.resource-card ul {
  flex: 0;
  margin: 0 0 16px;
  padding-left: 20px;
  color: #4c5561;
  font-size: 0.88rem;
}

.resource-card ul li {
  margin-bottom: 6px;
}

.resource-card .btn {
  align-self: flex-start;
  padding: 10px 22px;
  font-size: 0.8rem;
  margin-top: 8px;
}

.resource-card .extra-link {
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.stat-callout {
  text-align: center;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--gb-orange);
  margin-top: -8px;
  margin-bottom: 40px;
}

/* About page */

.about-hero {
  padding: 88px 0 72px;
  text-align: center;
}

.headshot {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 32px;
  background: var(--gb-light-gray);
  border: 4px solid var(--gb-light-blue);
}

.headshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.headshot.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gb-medium-blue);
  font-size: 0.8rem;
  text-align: center;
  padding: 12px;
}

.bio {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  font-size: 1.05rem;
}

.about-hero .btn-row {
  justify-content: center;
}

/* Footer */

.site-footer {
  background: var(--gb-deep-blue);
  color: var(--gb-light-blue);
  padding: 40px 0;
  text-align: center;
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--gb-beige);
}

/* Responsive */

@media (max-width: 1100px) {
  .testimonial-columns {
    column-count: 2;
  }
}

@media (max-width: 800px) {
  .nav-toggle {
    display: block;
  }

  .testimonial-columns {
    column-count: 1;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--gb-deep-blue);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .site-nav.is-open {
    max-height: 320px;
  }

  .site-nav a {
    width: 100%;
    padding: 16px 24px;
    border-top: 1px solid rgba(255, 246, 234, 0.1);
  }

  .site-header .wrap {
    position: relative;
    flex-wrap: wrap;
  }

  .hero {
    padding: 64px 0 56px;
  }

  .section {
    padding: 56px 0;
  }
}
