/* ==========================================================================
   Home Page Styles — Hero, value props, card grid preview, hours, CTA
   ========================================================================== */

/* -- Hero ----------------------------------------------------------------- */
.hero {
  padding: 7rem 0 6rem;
  background: linear-gradient(135deg, var(--brand-primary) 0%, color-mix(in srgb, var(--brand-primary) 70%, #1a1a2e) 100%);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 60%),
              radial-gradient(circle at 70% 80%, rgba(255,255,255,0.05) 0%, transparent 40%);
  pointer-events: none;
}

/* Decorative floating gradient orbs */
.hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  pointer-events: none;
  animation: heroFloat 8s ease-in-out infinite alternate;
}

@keyframes heroFloat {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-30px, 20px); }
}

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

.hero h1 {
  font-size: 3.75rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.hero__tagline {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero .btn--primary {
  background: var(--brand-accent);
  color: #ffffff;
  border-color: var(--brand-accent);
  position: relative;
  overflow: hidden;
}

.hero .btn--primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: btnShimmer 3s ease-in-out infinite;
}

@keyframes btnShimmer {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

.hero .btn--primary:hover {
  opacity: 0.9;
}

/* Scroll indicator */
.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.hero__scroll:hover {
  opacity: 1;
}

.hero__scroll-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}

.hero__scroll-icon {
  width: 24px;
  height: 24px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* -- Value Propositions --------------------------------------------------- */
.value-props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.value-prop {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.value-prop:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.value-prop__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-prop:hover .value-prop__icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(var(--brand-primary-rgb, 37, 99, 235), 0.3);
}

.value-prop__icon svg {
  width: 28px;
  height: 28px;
}

.value-prop__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.value-prop__text {
  font-size: 0.92rem;
  color: #6b7280;
  line-height: 1.6;
}

/* -- Card Grid (services preview) ----------------------------------------- */
.card--placeholder {
  border-style: dashed;
  border-color: #d1d5db;
}

.card__price--placeholder {
  color: #9ca3af;
  font-weight: 500;
  font-style: italic;
}

/* -- Hours Section (Split Layout) ----------------------------------------- */
.hours-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hours-split__content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: 1rem;
}

.hours-split__content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--brand-accent);
  border-radius: 2px;
}

.hours-split__text {
  color: #6b7280;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 1.25rem;
}

.hours-table {
  max-width: 480px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 0.5rem 1.5rem;
}

.hours-table--full {
  max-width: 560px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 0.5rem;
  border-bottom: 1px solid #f3f4f6;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.hours-row:hover {
  background: rgba(var(--brand-primary-rgb, 37, 99, 235), 0.04);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row--placeholder {
  opacity: 0.6;
}

.hours-row__day {
  font-weight: 600;
  color: var(--brand-primary);
}

.hours-row__time {
  color: #6b7280;
}

/* -- Responsive ----------------------------------------------------------- */
@media (max-width: 768px) {
  .hero {
    padding: 5rem 0 4rem;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero__tagline {
    font-size: 1.05rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
  }

  .hero__scroll {
    display: none;
  }

  .value-props {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .value-prop {
    padding: 2rem 1.5rem;
  }

  .hours-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hours-split__content {
    text-align: center;
  }

  .hours-split__content h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .hours-table {
    padding: 0.25rem 1rem;
  }
}

@media (max-width: 400px) {
  .hero h1 {
    font-size: 1.85rem;
  }
}
