/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0B0C10;
  color: #BFC2C7;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navbar */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(11, 12, 16, 0.95);
  border-bottom: 1px solid rgba(255, 184, 77, 0.2);
  z-index: 1000;
  height: 60px;
  padding: 0.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

header > div {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  align-items: center !important;
  justify-content: space-between !important;
  height: 100% !important;
}

/* Logo */
header .logo img,
header a img {
  width: 330px;
  height: auto;
}

/* Navigation links */
header nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

header nav ul li a:hover,
header nav ul li a.active {
  color: #FFB84D;
}

/* Hero Section */
.hero {
  position: relative;
  text-align: center;
  padding-top: 110px;
  padding-bottom: 90px;
}

.hero-image-wrapper {
  width: 100%;
  margin: 0 auto 1.5rem auto;
  overflow: hidden;
  border-radius: 0 0 16px 16px;
}

/* ✅ Hero Image — smaller, more rectangular */
.hero-image {
  width: 100%;
  height: 200px; /* smaller for a more rectangular banner */
  display: block;
  object-fit: cover;
  object-position: center;
  filter: brightness(85%);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 0 25px rgba(255, 184, 77, 0.1);
}

/* ✅ Hero Text */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-content h1 {
  color: #FFB84D;
  font-size: 1.6rem; /* slightly smaller */
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

/* ✅ Highlighted metrics text */
.hero-content .metrics {
  font-style: italic;
  color: #BFC2C7;
}

.hero-content .metrics span {
  color: #FFB84D;
  font-weight: 600;
}

/* Buttons */
.cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.9rem 1.9rem;
  background: #FFB84D;
  color: #0B0C10;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta:hover {
  background: #ffc466;
  box-shadow: 0 0 15px #FFB84D;
}

/* About Section */
.about {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1rem;
  text-align: center;
}

.about h2 {
  color: #FFB84D;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about ul {
  list-style: none;
  margin-top: 1.5rem;
  text-align: left;
}

.about ul li {
  margin-bottom: 0.5rem;
}

/* Why Playbook XO */
.why {
  background: #0E0F14;
  text-align: center;
  padding: 3rem 1rem;
}

.why h2 {
  color: #FFB84D;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.why-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.why-cards .card {
  background: #141519;
  border-radius: 16px;
  padding: 1.5rem;
  width: 300px;
  box-shadow: 0 0 10px rgba(255, 184, 77, 0.05);
}

.why-cards .card h3 {
  color: #FFB84D;
  margin-bottom: 0.75rem;
}

/* Process */
.process {
  padding: 3rem 1rem;
  text-align: center;
}

.process h2 {
  color: #FFB84D;
  margin-bottom: 2rem;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.step {
  background: #141519;
  border-radius: 12px;
  padding: 1rem;
  width: 220px;
  color: #BFC2C7;
}

/* CTA */
.cta-section {
  text-align: center;
  padding: 3rem 1rem;
}

.cta-section h2 {
  color: #FFB84D;
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 1rem;
  background: #0B0C10;
  border-top: 1px solid rgba(255, 184, 77, 0.1);
}

footer img {
  width: 140px;
  margin-bottom: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
  header {
    height: 65px !important;
    padding: 0.5rem 1rem;
  }

  header .logo img {
    width: 260px;
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 70px;
  }

  .hero-image {
    height: 150px; /* smaller on mobile */
  }

  .hero-content h1 {
    font-size: 1.4rem; /* smaller text on mobile */
  }
}
