/* Blue Pop Balloons - style.css */

:root {
  --bg: #fffdfb;
  --text: #333333;
  --muted: #666666;
  --accent: #e9a5b3;
  --accent-dark: #d98fa0;
  --card: #faf7f8;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

/* HERO */
.hero {
  min-height: 80vh;
  background:
    linear-gradient(rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.9)),
    url("https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?q=80&w=2070")
    center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 16px;
}

.overlay {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 0 0 10px 0;
  letter-spacing: 0.2px;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 22px 0;
}

.buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* BUTTONS */
.btn {
  background: var(--accent);
  color: #ffffff;
  padding: 12px 22px;
  text-decoration: none;
  border-radius: 999px;
  display: inline-block;
  transition: transform 0.15s ease, opacity 0.2s ease, background 0.2s ease;
  font-weight: 500;
}

.btn:hover {
  opacity: 0.92;
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

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

.btn.outline:hover {
  background: rgba(233, 165, 179, 0.12);
  opacity: 1;
  transform: translateY(-1px);
}

/* SECTIONS */
section {
  max-width: 920px;
  margin: 0 auto;
  padding: 72px 18px;
  text-align: center;
}

section h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  margin: 0 0 16px 0;
}

section p {
  margin: 0 auto;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.02rem;
}

/* PRODUCTS */
.products {
  text-align: left;
}

.products h2 {
  text-align: center;
}

.product-grid {
  display: grid;
  gap: 28px;
  margin-top: 32px;
}

.product-card {
  background: var(--card);
  border-radius: 22px;
  padding: 20px;
  display: grid;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.product-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
}

.product-details h3 {
  margin: 0 0 6px 0;
  font-size: 1.35rem;
}

.product-details p {
  margin: 0 0 12px 0;
  color: var(--muted);
}

.product-details .price {
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 1.1rem;
}

.product-details ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
  display: grid;
  gap: 6px;
}

.product-details li {
  padding-left: 18px;
  position: relative;
}

.product-details li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-dark);
}

.product-details .note,
.product-details .subhead {
  font-weight: 500;
  color: var(--text);
}

/* ORDER LIST */
.order ul {
  list-style: none;
  padding: 0;
  margin: 22px auto 26px auto;
  max-width: 720px;
  text-align: left;
  display: grid;
  gap: 10px;
}

.order li {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 12px 14px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 28px 16px;
  background: var(--card);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

footer p {
  margin: 0 0 8px 0;
  color: var(--muted);
  font-size: 0.95rem;
}

footer a {
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 500;
}

footer a:hover {
  text-decoration: underline;
}

@media (min-width: 900px) {
  .product-card {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }

  .product-gallery img {
    height: 240px;
  }
}
