/* ================================
   Laundry Page Styles – 2025 Design
   ================================ */

.hero-section.small-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-section.small-hero .hero-overlay {
  background: rgba(0, 0, 0, 0.45);
  padding: 2rem;
  text-align: center;
  color: #fff;
}

.hero-section.small-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero-section.small-hero .tagline {
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0.95;
}

.hero-bg {
  display: none;
}

/* Section Headings */
.section h2 {
  margin-bottom: 0.75rem;
  font-size: 1.8rem;
  color: var(--primary);
}

.section-subtext {
  margin-bottom: 1.8rem;
  font-size: 1.05rem;
  color: var(--muted);
}

/* Highlights */
.laundry-highlights {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.laundry-highlights li {
  padding: 0.3rem 0;
  font-size: 1rem;
  color: var(--text);
}

/* Tables */
.pricing-table {
  overflow-x: auto;
  margin-bottom: 2rem;
}

.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
}

.pricing-table th,
.pricing-table td {
  padding: 0.8rem;
  border: 1px solid var(--border);
  text-align: left;
}

.pricing-table th {
  background: #fff3e9;
  color: var(--primary-dark);
  font-weight: 600;
}

/* Reminders */
.laundry-terms {
  list-style: none;
  padding-left: 0;
}

.laundry-terms li {
  margin-bottom: 0.6rem;
  color: #a94442;
  font-weight: 500;
}

/* Add-ons */
.addon-list {
  margin: 1rem 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  font-size: 1rem;
  color: var(--text);
}

.addon-list div {
  background: #fffaf5;
  padding: 0.8rem 1rem;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

/* Request Guide */
.request-guide {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.request-guide li {
  padding: 0.5rem 0;
  font-size: 1rem;
  color: var(--text);
}

.request-guide a {
  color: var(--primary-dark);
  text-decoration: underline;
}

.request-guide a:hover {
  color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section.small-hero h1 {
    font-size: 1.8rem;
  }
  .hero-section.small-hero .tagline {
    font-size: 1rem;
  }
  .section h2 {
    font-size: 1.5rem;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-color-scheme: dark) {
  .addon-list div {
    background: #2c2c2c;
    color: #ffffff;
    border-left-color: var(--accent);
  }
}
