:root {
  --background: #FFFFFF;
  --foreground: #4A4A4A;
  --primary: #E8CFC9;
  --primary-foreground: #4A4A4A;
  --secondary: #FAF7F4;
  --secondary-foreground: #4A4A4A;
  --muted: #F5EFEA;
  --muted-foreground: #A9A29D;
  --accent: #D9B8B0;
  --accent-foreground: #4A4A4A;
  --border: #D6BFA3;
  --input: #A9A29D;
  --ring: #4A4A4A;
  --radius: 50px;
  --cols-mobile: 1;
  --cols-desktop: 4;
}

.btn {
  border-radius: var(--radius);
  padding: 8px 24px;
  font-weight: 600;
}
  .flex.gap-4:has(a.btn){
    flex-direction: column
  }

@media (min-width: 576px) {
  .btn {
    padding: 10px 40px;
  }
    .flex.gap-4:has(a.btn){
    flex-direction: row
  }
}

.btn-filled {
  border-color: var(--accent);
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.hero-pink-line {
  color: #D28D91;
}

.section-hero .theme-container.flex.flex-col.gap-20 {
  max-width: 100%;
  margin: 0;
  padding: 0 16px;
}

@media (min-width: 576px) {
  .section-hero .theme-container.flex.flex-col.gap-20 {
    max-width: 410px;
    padding: 0;
  }
}

.section-hero h1.text-foreground.text-2xl.md\:text-3xl.font-semibold.tracking-tight {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  font-size: clamp(40px, 7vw, 60px);
}

.section-hero span.text-muted.text-xs.uppercase.tracking-wide {
  color: var(--muted);
}
@media (max-width: 576px) {
  .section-hero {
    min-height: unset !important;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
  }

  .section-hero .absolute.inset-0.-z-10 {
    position: relative !important;
    max-height: 300px;
    flex-shrink: 0;
  }

  .section-hero .absolute.inset-0.-z-10 img {
    object-position: top center;
  }

  .section-hero .bg-primary.absolute.inset-0 {
    display: none;
  }

  .section-hero .theme-container {
    position: relative;
    background-color: var(--muted);
    padding: 32px 20px 50px !important;
    max-width: 100% !important;
    align-items: center;
    text-align: center;
  }
}