:root {
  --yh-cream: #fff6f3;
  --yh-sand: #ffe7de;
  --yh-white: #ffffff;
  --yh-accent: #e85d75;
  --yh-accent-dark: #7a1f3d;
  --yh-olive: #2f6f5e;
  --yh-text: #2b1b24;
  --yh-muted: #6c4a57;
  --yh-border: rgba(232, 93, 117, 0.18);
  --yh-shadow: 0 16px 45px rgba(122, 31, 61, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--yh-text);
  background:
    radial-gradient(circle at top left, rgba(255, 199, 190, 0.45), transparent 30%),
    linear-gradient(180deg, #fffaf8 0%, #fff6f3 35%, #ffece6 100%);
  line-height: 1.7;
}

a {
  color: var(--yh-accent-dark);
  text-decoration: none;
}

a:hover {
  color: var(--yh-accent);
}

.section-padding {
  padding: 5rem 0;
}

.topbar-note {
  background: #ffe9e1;
  color: var(--yh-accent-dark);
  font-size: 0.92rem;
}

.navbar {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(232, 93, 117, 0.16);
}

.navbar-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--yh-accent-dark);
}

.navbar-brand span {
  color: var(--yh-accent);
}

.nav-link {
  font-weight: 500;
  color: var(--yh-text);
}

.nav-link.active,
.nav-link:hover {
  color: var(--yh-accent);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 7rem 0 5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 236, 229, 0.92), rgba(255, 255, 255, 0.78)),
    url("https://images.unsplash.com/photo-1482049016688-2d3e1b311543?auto=format&fit=crop&w=1400&q=80") center/cover;
  opacity: 0.28;
}

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

.eyebrow {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  color: var(--yh-accent-dark);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.9rem;
  border: 1px solid rgba(232, 93, 117, 0.24);
}

.display-heading {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 1.1;
  margin: 1rem 0 1.25rem;
}

.lead-text {
  font-size: 1.08rem;
  color: var(--yh-muted);
  max-width: 42rem;
}

.btn-warm {
  background: linear-gradient(135deg, #ef7d92, #e85d75);
  color: #fff;
  border: none;
  box-shadow: 0 12px 30px rgba(232, 93, 117, 0.28);
}

.btn-warm:hover,
.btn-warm:focus {
  color: #fff;
  background: linear-gradient(135deg, #e85d75, #cf4561);
}

.btn-outline-warm {
  border: 1px solid rgba(232, 93, 117, 0.32);
  color: var(--yh-accent-dark);
  background: rgba(255, 255, 255, 0.82);
}

.btn-outline-warm:hover,
.btn-outline-warm:focus {
  background: rgba(255, 237, 231, 0.92);
  color: var(--yh-accent-dark);
}

.hero-card,
.info-card,
.trust-card,
.recipe-card,
.detail-panel,
.contact-panel,
.policy-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--yh-border);
  border-radius: 1.5rem;
  box-shadow: var(--yh-shadow);
}

.hero-card {
  padding: 1.5rem;
}

.hero-card img {
  width: 100%;
  border-radius: 1.1rem;
  min-height: 360px;
  object-fit: cover;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--yh-muted);
  max-width: 40rem;
}

.info-card,
.trust-card,
.contact-panel,
.policy-card {
  padding: 1.75rem;
  height: 100%;
}

.recipe-card {
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  height: 100%;
}

.recipe-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(122, 31, 61, 0.2);
}

.recipe-card img,
.recipe-detail-image {
  width: 100%;
  object-fit: cover;
}

.recipe-card img {
  height: 230px;
}

.recipe-card .card-body {
  padding: 1.4rem;
}

.recipe-meta {
  color: var(--yh-muted);
  font-size: 0.92rem;
}

.category-pill,
.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.92rem;
  border: 1px solid rgba(232, 93, 117, 0.24);
  background: rgba(255, 241, 237, 0.94);
  color: var(--yh-accent-dark);
}

.filter-chip.active {
  background: var(--yh-accent);
  color: #fff;
  border-color: var(--yh-accent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stat-box {
  background: rgba(255, 241, 237, 0.94);
  border: 1px solid rgba(232, 93, 117, 0.18);
  border-radius: 1rem;
  padding: 1rem;
}

.stat-label {
  display: block;
  color: var(--yh-muted);
  font-size: 0.86rem;
}

.stat-value {
  font-weight: 600;
  font-size: 1.05rem;
}

.listing-toolbar {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--yh-border);
  border-radius: 1.25rem;
  padding: 1.25rem;
}

.empty-state {
  display: none;
  padding: 1.4rem;
  border-radius: 1rem;
  background: rgba(255, 241, 237, 0.94);
  border: 1px dashed rgba(232, 93, 117, 0.34);
  color: var(--yh-muted);
}

.recipe-detail-image {
  border-radius: 1.5rem;
  min-height: 400px;
  max-height: 540px;
}

.detail-panel {
  padding: 2rem;
}

.detail-panel h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
}

.ingredients-list li,
.instructions-list li,
.policy-list li {
  margin-bottom: 0.7rem;
}

.ingredients-list li::marker,
.instructions-list li::marker {
  color: var(--yh-accent);
  font-weight: 700;
}

.breadcrumb-wrap {
  color: var(--yh-muted);
  font-size: 0.94rem;
}

.page-banner {
  padding: 6.5rem 0 3.5rem;
}

.page-banner.compact {
  padding-bottom: 2.5rem;
}

.contact-details a {
  word-break: break-word;
}

.form-control,
.form-select {
  border-radius: 0.95rem;
  padding: 0.85rem 1rem;
  border-color: rgba(232, 93, 117, 0.26);
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(232, 93, 117, 0.56);
  box-shadow: 0 0 0 0.25rem rgba(232, 93, 117, 0.2);
}

.form-check-input:checked {
  background-color: var(--yh-accent);
  border-color: var(--yh-accent);
}

.footer {
  background: #2b1b24;
  color: rgba(255, 241, 237, 0.86);
  padding: 4rem 0 2rem;
}

.footer h2,
.footer h3 {
  color: #fff7f4;
  font-family: "Playfair Display", serif;
}

.footer a {
  color: rgba(255, 241, 237, 0.86);
}

.footer a:hover {
  color: #ffc4b7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 241, 237, 0.18);
  margin-top: 2rem;
  padding-top: 1.3rem;
  font-size: 0.94rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 2000;
  background: #fff;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
}

@media (max-width: 991.98px) {
  .hero {
    padding-top: 6rem;
  }

  .hero-card img {
    min-height: 300px;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 4rem 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .page-banner {
    padding-top: 5.75rem;
  }

  .listing-toolbar {
    padding: 1rem;
  }
}
