:root {
  /*
    Change these variables to match the exact
    Leela Books website color palette.
  */
  --brand-primary: #cd9b20;
  --brand-dark: #103466;
  --brand-gold: #d5a64a;
  --brand-cream: #fff9f0;

  --ink: #282329;
  --muted: #797979;
  --line: #eadfd4;
  --soft: #fff3d6;
}




.section-space {
  padding: 70px 0;
}


/* Buttons */

.btn-primary {
  --bs-btn-bg: var(--brand-primary);
  --bs-btn-border-color: var(--brand-primary);
  --bs-btn-hover-bg: var(--brand-dark);
  --bs-btn-hover-border-color: var(--brand-dark);
}

/* Hero */

.hero-section {
  position: relative;
  display: flex;
  min-height: 760px;
  align-items: center;
  padding-top: 170px;
  overflow: hidden;
  background: var(--brand-cream);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.55;
}

.orb-one {
  top: 80px;
  right: -100px;
  width: 360px;
  height: 360px;
  background: #f5ddc9;
}

.orb-two {
  bottom: -80px;
  left: 38%;
  width: 180px;
  height: 180px;
  background: #ead0a5;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--brand-primary);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.display-title {
  max-width: 800px;
  margin-bottom: 25px;
  color: var(--brand-dark);
  font-size: clamp(2.6rem, 5vw, 5.3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.lead-copy {
  max-width: 700px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1.08rem;
}

/* Image Placeholders */

.image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--brand-primary);
  text-align: center;
  border: 2px dashed rgba(143, 29, 44, 0.35);
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f3e3d8 100%
  );
}

.image-placeholder span {
  font-weight: 700;
}

.image-placeholder small {
  margin-top: 4px;
  color: var(--muted);
}

.hero-placeholder {
  min-height: 500px;
  border-radius: 150px 18px 150px 18px;
  box-shadow: 25px 25px 0 rgba(213, 166, 74, 0.25);
}

/* Section Heading */

.section-heading {
 
  margin: 0 auto 5px;
}

.section-heading h2,
.why-section h2,
.cta-box h2 {
  margin-bottom: 18px;
  color: var(--brand-dark);
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.section-heading p,
.why-section p {
  color: var(--muted);
}

/* Services */

.services-section {
  background: #ffffff;
}

.service-row {
  padding: 75px 0;
  border-bottom: 1px solid var(--line);
}

.service-row:last-child {
  border-bottom: 0;
}

.service-placeholder {
  min-height: 370px;
  border-radius: 18px 110px 18px 110px;
  background: linear-gradient(
    145deg,
    #fbf3ea,
    #f0d8c5
  );
}

.service-row:nth-child(even) .service-placeholder {
  border-radius: 110px 18px 110px 18px;
  background: linear-gradient(
    145deg,
    #f4e9d4,
    #f8f5ed
  );
}

.service-content {
  padding: 10px 25px;
}

.service-number {
  color: var(--brand-gold);
  font: 700 1.1rem "DM Sans";
  letter-spacing: 0.12em;
}

.service-content h3 {
  margin: 10px 0 18px;
  color: var(--brand-dark);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.service-content p {
  margin-bottom: 12px;
  color: var(--muted);
}

.service-content h6 {
  margin: 23px 0 12px;
  color: var(--brand-dark);
  
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list span {
  padding: 5px 13px;
  color: var(--brand-dark);
  font-size: 0.82rem;
  background: var(--soft);
  border-radius: 50px;
}

/* Why Choose Us */

.why-section {
  background: var(--brand-cream);
}

.feature-card,
.process-card {
  height: 100%;
  padding: 25px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: 0.3s ease;
}

.feature-card:hover,
.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(66, 21, 29, 0.09);
}

.feature-card > span {
  color: var(--brand-primary);
  font-size: 0.8rem;
  font-weight: 700;
}

.feature-card h4,
.process-card h4 {
  margin: 11px 0 7px;
  color: var(--brand-dark);
  font-size: 1.22rem;
}

.feature-card p,
.process-card p {
  margin: 0;
  font-size: 0.92rem;
}

/* Process */

.process-section {
  background: #f6f6f6;
}

.process-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #ffffff;
  background: var(--brand-primary);
  border-radius: 50%;
  font-weight: 700;
}

/* CTA */

.cta-section {
  padding-top: 30px;
  background: #f6f6f6;
}

.cta-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 65px 75px;
  overflow: hidden;
  color: #ffffff;
  background: var(--brand-dark);
  border-radius: 22px;
}

.cta-box::after {
  position: absolute;
  top: -100px;
  right: -80px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 30px rgba(255, 255, 255, 0.05),
    0 0 0 60px rgba(255, 255, 255, 0.04);
  content: "";
}

.cta-box h2 {
  color: #ffffff;
}

.cta-box h2 em {
  color: #f2c76e;
}

.cta-box p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.cta-box .eyebrow {
  color: #f2c76e;
}

.cta-box .btn {
  z-index: 1;
  color: var(--brand-dark);
  white-space: nowrap;
}

/* Footer */

.site-footer {
  padding: 25px 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.85rem;
  background: #241116;
}

/* Tablet */

@media (max-width: 991.98px) {
  .hero-section {
    min-height: auto;
    padding-top: 145px;
  }

  .hero-placeholder {
    min-height: 340px;
    border-radius: 18px 90px 18px 90px;
  }

  .cta-box {
    align-items: flex-start;
    flex-direction: column;
    padding: 45px 30px;
  }
}

/* Mobile */

@media (max-width: 575.98px) {
  .section-space {
    padding: 75px 0;
  }

  .service-row {
    padding: 45px 0;
  }

  .service-content {
    padding: 5px 0;
  }

  .service-placeholder {
    min-height: 250px;
  }

  .display-title {
    font-size: 2.7rem;
  }
}



