/* Wanda's Desserts — shared site styles */

:root {
  --sand: #fffaf0;
  --sand-dark: #ffe8b8;
  --navy: #073b4c;
  --navy-dark: #052a37;
  --pink: #ff2e7e;
  --pink-light: #ff6fa5;
  --pink-dark: #e0175f;
  --red: #e6122b;
  --red-dark: #b80e22;
  --text: #17323f;
  --white: #ffffff;
  --shadow: 0 6px 18px rgba(7, 59, 76, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--sand);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: "Baloo 2", "Segoe UI", sans-serif;
  color: var(--navy);
  margin: 0 0 0.5em;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header / nav */
.site-header {
  background: var(--navy);
  color: var(--sand);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 4px solid var(--pink);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  font-family: "Baloo 2", "Segoe UI", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--sand);
}

.logo span {
  color: var(--red);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--sand);
  font-weight: 600;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  border-color: var(--pink);
}

.nav-cta {
  background: var(--pink);
  color: var(--white) !important;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border-bottom: none !important;
  font-weight: 700;
}

.nav-cta:hover {
  background: var(--red);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--pink-light), var(--pink) 55%, var(--red));
  padding: 5rem 0 4rem;
  text-align: center;
  color: var(--white);
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--white);
  text-shadow: 0 3px 12px rgba(7, 59, 76, 0.25);
}

.hero .tagline {
  font-family: "Pacifico", cursive;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--red);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.55), 0 2px 4px rgba(7, 59, 76, 0.2);
  margin-bottom: 1rem;
}

.hero p.lead {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--white);
}

.hero .btn-row {
  justify-content: center;
}

.hero .btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--white);
}

/* Sections */
section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title p {
  max-width: 600px;
  margin: 0.5rem auto 0;
  color: var(--text);
}

.alt-bg {
  background: var(--white);
}

/* Dessert placeholder graphic */
.dessert-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px 14px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
  background: linear-gradient(135deg, var(--pink-light), var(--pink) 55%, var(--red));
}

/* Cards grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  border-bottom: 4px solid var(--pink);
}

.card-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body h3 {
  margin-bottom: 0.4rem;
}

.card-body p {
  flex: 1;
  margin: 0 0 1rem;
  color: var(--text);
}

.price {
  font-weight: 700;
  color: var(--red-dark);
  margin-bottom: 0.9rem;
}

.badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.6rem;
  width: fit-content;
}

/* About teaser / two-column */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 720px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.photo-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--pink-light), var(--pink) 55%, var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  box-shadow: var(--shadow);
}

/* Notice / info box */
.notice {
  background: var(--sand-dark);
  border-left: 4px solid var(--pink);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-top: 2.5rem;
}

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: var(--sand-dark);
  padding: 3rem 0 2rem;
  margin-top: 3rem;
  border-top: 4px solid var(--pink);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid h4 {
  color: var(--pink-light);
  font-family: "Baloo 2", "Segoe UI", sans-serif;
  margin-bottom: 0.75rem;
}

.footer-grid a {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--sand-dark);
}

.footer-grid a:hover {
  color: var(--pink-light);
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  color: rgba(255, 250, 240, 0.6);
}
