:root {
  --teal: #2fa7a0;
  --raspberry: #d93a72;
  --plum: #7a4aa3;
  --cream: #fff7f1;
  --cream-dark: #f4e7dc;
  --text: #3c2d33;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(90, 42, 108, 0.12);
  --radius: 20px;
  --max-width: 1150px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Lato", sans-serif;
  color: var(--text);
  line-height: 1.6;

  /* ✨ BACKGROUND IMAGE */
  background:
    linear-gradient(rgba(255, 250, 248, 0.65), rgba(255, 246, 247, 0.65)),
    url("assets/images/background.jpg");

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--plum);
  text-decoration: none;
}

a:hover {
  opacity: 0.9;
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
  background: rgba(255, 255, 255, 0.75);
}

.alt-bg {
  background: rgba(255, 255, 255, 0.55);
}

.centered-text {
  text-align: center;
}

.eyebrow {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: var(--raspberry);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

/* ✨ SCRIPT FONT MAGIC */

h1,
h2 {
  margin-top: 0;
  line-height: 1.2;
  color: var(--plum);
  font-family: "Great Vibes", cursive;
  font-weight: 400;
}

h3,
h4 {
  margin-top: 0;
  line-height: 1.2;
  color: var(--plum);
  font-family: "Pacifico", cursive;
  font-weight: 400;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 250, 248, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(217, 58, 114, 0.1);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}

/* ✨ LOGO TEXT */
.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: "Pacifico", cursive;
  font-weight: 400;
  color: var(--plum);
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--teal);
  background: var(--white);
}

.brand-text {
  font-size: 1.2rem;
}

/* ✨ NAV FONT */
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--plum);
  position: relative;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--raspberry);
}

.nav-toggle {
  display: none;
  border: none;
  background: var(--teal);
  color: var(--white);
  font-size: 1.4rem;
  padding: 0.5rem 0.8rem;
  border-radius: 12px;
  cursor: pointer;
}

.hero {
  padding: 5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero-description {
  max-width: 620px;
  font-size: 1.08rem;
}

.hero-image-card img {
  border-radius: 28px;
  box-shadow: var(--shadow);
  max-height: 420px;
  object-fit: contain;
  width: 100%;
  background: var(--white);
  padding: 1.5rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--raspberry);
  color: var(--white);
}

.btn-secondary {
  background: var(--teal);
  color: var(--white);
}

.tagline-strip {
  background: linear-gradient(90deg, var(--teal), var(--raspberry));
  color: var(--white);
  text-align: center;
  padding: 1rem 0;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card,
.value-card,
.contact-card,
.menu-card,
.cta-box {
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-card {
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.card-content {
  padding: 1.25rem;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.image-panel img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.text-panel {
  font-size: 1.05rem;
}

.cta-box {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.page-hero {
  padding: 4rem 0 2rem;
  text-align: center;
}

.small-hero {
  background:
    radial-gradient(circle at top left, rgba(47, 167, 160, 0.12), transparent 35%),
    radial-gradient(circle at top right, rgba(217, 58, 114, 0.12), transparent 35%);
}

.menu-category-title {
  margin: 2.5rem 0 1rem;
  text-align: center;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.menu-card {
  padding: 1.5rem;
  border-left: 6px solid var(--teal);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  padding: 1.5rem;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-card {
  padding: 1.5rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.site-footer {
  background: var(--plum);
  color: var(--white);
  padding: 2rem 0;
  margin-top: 2rem;
}

.site-footer h3,
.site-footer p,
.site-footer a {
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 900px) {
  .hero-grid,
  .split-section,
  .card-grid,
  .values-grid,
  .contact-grid,
  .menu-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-image-card img {
    min-height: auto;
  }

  .site-nav {
    position: absolute;
    top: 84px;
    right: 4%;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 18px;
    padding: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    min-width: 220px;
  }

  .site-nav.show {
    display: flex;
  }

  .nav-toggle {
    display: inline-block;
  }

  .brand-text {
    max-width: 180px;
    font-size: 1.05rem;
  }
}
