/* =====================================================
   Landing Page Specific Styles
   Styles that only apply to the home/landing page
   ===================================================== */

/* Larger logo on landing page - More specific selector */
body.landing-page .navbar-brand img,
body.landing-page .ww-navbar-brand img,
.landing-page .navbar-brand img {
  height: 80px !important;
  width: auto !important;
  transition: height 0.3s ease;
}

/* Responsive logo sizing for landing page */
@media (max-width: 768px) {
  body.landing-page .navbar-brand img {
    height: 60px !important;
  }
}

@media (max-width: 576px) {
  body.landing-page .navbar-brand img {
    height: 50px !important;
  }
}

/* Ensure navbar brand text scales nicely with larger logo */
body.landing-page .navbar-brand {
  font-size: 1.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

@media (max-width: 768px) {
  body.landing-page .navbar-brand {
    font-size: 1.5rem;
  }
}

/* Adjust navbar height to accommodate larger logo */
body.landing-page .navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

@media (max-width: 768px) {
  body.landing-page .navbar {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}

/* Landing hero media sizing */
body.landing-page {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

body.landing-page .landing-hero {
  padding: 4rem 0 3rem;
}

body.landing-page .landing-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: center;
  background: #ffffff;
  border-radius: 1.5rem;
  border: 2px solid #0f172a;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
  padding: 2.75rem;
}

body.landing-page .landing-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #b45309;
  margin-bottom: 0.75rem;
}

body.landing-page .landing-title {
  font-family: var(--ww-font-family-heading);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
  color: #0f172a;
}

body.landing-page .landing-lede {
  font-size: 1.1rem;
  color: #334155;
  margin-bottom: 1.75rem;
}

body.landing-page .landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

body.landing-page .landing-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

body.landing-page .landing-stat {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  min-width: 160px;
}

body.landing-page .landing-stat-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
}

body.landing-page .landing-stat-value {
  font-size: 1rem;
  color: #0f172a;
}

body.landing-page .landing-hero-media {
  width: 100%;
  height: auto;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.18);
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.landing-page .landing-hero-image {
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 1.25rem;
}

body.landing-page img[src*="default.jpg"],
body.landing-page img[src*="default.png"] {
  width: 100% !important;
  height: 100% !important;
  border-radius: 1.25rem !important;
}

body.landing-page .landing-features {
  margin: 2.5rem 0 3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

body.landing-page .landing-feature {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

body.landing-page .landing-feature h2 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: #0f172a;
}

body.landing-page .landing-feature p {
  color: #475569;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  body.landing-page .landing-hero-inner {
    grid-template-columns: 1fr;
  }

  body.landing-page .landing-hero-media {
    height: auto;
  }

  body.landing-page .landing-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  body.landing-page .landing-hero {
    padding: 3rem 0 2rem;
  }

  body.landing-page .landing-hero-inner {
    padding: 2rem;
  }

  body.landing-page .landing-hero-media {
    height: auto;
  }

  body.landing-page .landing-hero-image {
    max-height: 480px;
  }
}
