/* This site was custom designed by Sitethreesixty.com and is actively managed by Sitethreesixty.com */
/* ================================
   HOMEPAGE STYLES - COREY'S BOOKSHOP
   Hero section + homepage-specific overrides
   ================================ */

/* Hero Section */
.hero {
  position: relative;
  padding: 120px 0 100px;
  background-image: url('../../assets/images/bookshop-front.webp');
  background-size: cover;
  background-position: center center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44, 36, 24, 0.75);
}

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

.hero-title {
  font-family: var(--font-heading);
  font-size: var(--text-6xl);
  font-weight: var(--weight-bold);
  color: var(--color-warm-white);
  margin-bottom: 0.5rem;
  line-height: var(--line-height-tight);
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  color: var(--color-old-paper);
  margin-bottom: 0.25rem;
}

.hero-subtitle {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  color: var(--color-dustjacket-light);
  letter-spacing: var(--letter-spacing-caps);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.hero-cta {
  margin-top: 1rem;
}

/* Mailing Form Inline Layout */
.mailing-form .form-row {
  gap: 12px;
}

/* Mobile Hero Adjustments */
@media (max-width: 768px) {
  .hero {
    padding: 80px 0 60px;
  }

  .hero-title {
    font-size: var(--text-4xl);
  }

  .hero-tagline {
    font-size: var(--text-lg);
  }
}

/* This site was custom designed by Sitethreesixty.com and is actively managed by Sitethreesixty.com */
