/* ═══════════════════════════════════════════════════════
   Soho Bakery — Hero Section (home page only)
   ═══════════════════════════════════════════════════════ */

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(196, 150, 62, 0.08), transparent),
    radial-gradient(ellipse 60% 80% at 20% 70%, rgba(92, 58, 36, 0.06), transparent),
    linear-gradient(165deg, var(--cream) 0%, var(--flour) 40%, var(--linen) 100%);
}

/* Floating orbs */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 150, 62, 0.07), transparent 70%);
  animation: float 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92, 58, 36, 0.05), transparent 70%);
  animation: float 25s ease-in-out infinite reverse;
}

/* Decorative conic gradient */
.hero-deco {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  height: 500px;
  opacity: 0.06;
  background: repeating-conic-gradient(
    from 0deg at 50% 50%,
    var(--walnut) 0deg 10deg,
    transparent 10deg 30deg
  );
  border-radius: 50%;
  filter: blur(1px);
}

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

/* Logo in hero */
.hero-logo {
  max-width: 280px;
  height: auto;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.1s forwards;
  background: var(--espresso);
  border-radius: 16px;
  padding: 1.5rem 2rem 1rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

/* Tagline */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--golden-crust);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-tag::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--golden-crust);
}

/* Hero heading */
.hero h1 {
  max-width: 700px;
  color: var(--espresso);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--walnut);
  font-weight: 400;
}

/* Hero description */
.hero-desc {
  max-width: 520px;
  font-size: 1.1rem;
  color: var(--caramel);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.7s forwards;
}

/* Hero action buttons */
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.9s forwards;
}

/* ═══════ HIGHLIGHTS STRIP ═══════ */
.highlights {
  padding: 5rem 2rem;
  background: var(--flour);
}

.highlights-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.highlight-card {
  text-align: center;
  padding: 1.5rem 1rem;
}

.highlight-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--golden-crust);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.highlight-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--caramel);
}

@media (max-width: 768px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════ HOME CTA SECTION ═══════ */
.home-cta {
  text-align: center;
  padding: 5rem 2rem;
  background: var(--warm-white);
}

.home-cta h2 {
  margin-bottom: 1rem;
}

.home-cta p {
  color: var(--caramel);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.home-cta .btn-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
