/* ========================================
   Base
======================================== */

.brickhunt-homepage {
  font-family: 'PT Serif', serif;
  background-color: #F8F3E8; /* cream */
  color: #7A5C3E; /* brown */
  line-height: 1.6;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* ========================================
   Typography
======================================== */

h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

p {
  margin-bottom: 12px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  color: #C9982E;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 20px;
  margin-bottom: 10px;
}

.section-label {
  font-size: 12px;
  text-transform: uppercase;
  color: #C9982E;
  margin-bottom: 6px;
}

/* ========================================
   Buttons
======================================== */

.btn {
  display: inline-block;
  padding: 10px 16px;
  margin-right: 10px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: #A94F3D;
  color: white;
}

.btn-primary:hover {
  background-color: #8a3f30;
}

.btn-secondary {
  background-color: #E6B85C;
  color: #3a2a1c;
}

.btn-secondary:hover {
  background-color: #d4a94f;
}

.btn-outline {
  border: 1px solid #7A5C3E;
  color: #7A5C3E;
}

.btn-outline:hover {
  background-color: #7A5C3E;
  color: white;
}

/* ========================================
   Sections
======================================== */

.hero {
  background-color: #EFE4C8;
  text-align: center;
}

.hero-actions {
  margin-top: 20px;
}

.what-is,
.who-its-for,
.website-help,
.coming-soon {
  background-color: #F8F3E8;
}

.featured-book {
  background-color: #EFE4C8;
}

.what-kids-do,
.why-parents-love-it {
  background-color: #F3EBDC;
}

.final-cta {
  background-color: #DCEEF8;
  text-align: center;
}

.brickhunt-footer {
  background-color: #EFE4C8;
  text-align: center;
  padding: 20px 0;
}

.disclaimer {
  font-size: 12px;
  color: #7A5C3E;
  opacity: 0.7;
  margin: 0;
}

/* ========================================
   Featured Book Layout
======================================== */

.featured-book__content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.featured-book__text {
  flex: 1 1 300px;
}

.featured-book__image {
  flex: 1 1 250px;
}

.image-placeholder {
  background-color: #D8C39A;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5c4630;
  border-radius: 8px;
}

/* ========================================
   Cards
======================================== */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.info-card {
  background-color: #EFE4C8;
  padding: 16px;
  border-radius: 8px;
}

/* ========================================
   Lists
======================================== */

.feature-list {
  padding-left: 18px;
  margin-bottom: 16px;
}

.feature-list li {
  margin-bottom: 6px;
}

.simple-list {
  padding-left: 18px;
}

.simple-list li {
  margin-bottom: 6px;
}

/* ========================================
   Quick Links
======================================== */

.quick-links {
  margin-top: 16px;
}

.quick-link {
  display: inline-block;
  margin-right: 12px;
  text-decoration: none;
  color: #A94F3D;
  font-weight: bold;
}

.quick-link:hover {
  text-decoration: underline;
}

/* ========================================
   Responsive
======================================== */

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  .container {
    padding: 30px 16px;
  }
}
