/* ===== Cotton Candy Dreams — Brand System ===== */
:root {
  --pink-hot: #E94B8C;
  --pink-light: #FFD9E8;
  --purple: #B47FD4;
  --purple-light: #EDE0F7;
  --cream: #FFFBF5;
  --teal: #4FC3D9;
  --ink: #2E2233;
  --ink-light: #5A4C63;
  --white: #FFFFFF;
  --success: #3D9970;
  --font-header: Georgia, 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --radius: 16px;
  --shadow: 0 4px 20px rgba(233, 75, 140, 0.15);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

a { color: var(--pink-hot); text-decoration: none; }
a:hover, a:focus { text-decoration: underline; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}

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

h1, h2, h3 { font-family: var(--font-header); color: var(--ink); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }

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

.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { background: var(--pink-hot); color: var(--white); }
.btn-secondary { background: var(--white); color: var(--pink-hot); border: 2px solid var(--pink-hot); }
.btn-text { background: transparent; color: var(--pink-hot); text-decoration: underline; padding: 0.5rem 1rem; }

/* ===== Decorative Background Bubbles (margins) ===== */
.bg-bubbles { position: fixed; inset: 0; pointer-events: none; z-index: 5; overflow: hidden; display: none; }
@media (min-width: 1400px) { .bg-bubbles { display: block; } }
.bg-bubbles .bubble { position: absolute; border-radius: 50%; opacity: 0.35; animation: float 7s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .bg-bubbles .bubble { animation: none; } }

/* ===== Header / Nav ===== */
.site-header {
  background: var(--white);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.site-header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-header); font-size: 1.5rem; font-weight: bold; color: var(--pink-hot); }
.tagline-badge { font-size: 0.85rem; color: var(--ink-light); font-style: italic; }
.nav-cta { display: flex; gap: 0.75rem; align-items: center; }
.nav-phone { font-weight: 700; color: var(--ink); font-size: 0.95rem; }

/* ===== Seasonal Banner ===== */
.seasonal-banner {
  background: linear-gradient(90deg, var(--pink-hot), var(--purple));
  color: var(--white);
  text-align: center;
  padding: 0.6rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(180deg, var(--pink-light) 0%, var(--cream) 100%);
  text-align: center;
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.hero .puff {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  animation: float 6s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hero .puff { animation: none; }
}
.hero .puff-1 { width: 120px; height: 120px; background: var(--pink-hot); top: 10%; left: 5%; animation-delay: 0s; }
.hero .puff-2 { width: 80px; height: 80px; background: var(--purple); top: 60%; right: 8%; animation-delay: 1.5s; }
.hero .puff-3 { width: 60px; height: 60px; background: var(--teal); bottom: 10%; left: 15%; animation-delay: 3s; }
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}
.hero-tagline { font-family: var(--font-header); font-size: 1.4rem; color: var(--pink-hot); font-style: italic; margin: 1rem 0; }
.hero-description-highlight {
  font-size: 1.3rem;
  font-weight: 800;
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(90deg, var(--pink-hot), var(--purple), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-cta-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }

/* ===== Availability Widget ===== */
.availability-widget {
  background: var(--white);
  border: 2px solid var(--purple-light);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  max-width: 500px;
  margin: 2rem auto 0;
  box-shadow: var(--shadow);
}
.availability-widget p { font-weight: 600; margin-bottom: 0.5rem; }
.availability-status { color: var(--success); font-weight: 700; }

/* ===== Trust Bar ===== */
.trust-bar {
  background: var(--white);
  padding: 1.5rem 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.trust-bar .container { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; text-align: center; }
.trust-item { font-size: 0.9rem; font-weight: 600; color: var(--ink-light); display: flex; align-items: center; gap: 0.4rem; }

/* ===== Why Carol ===== */
.why-carol { display: grid; grid-template-columns: 1fr 1.3fr; gap: 3rem; align-items: center; }
.why-carol img { border-radius: var(--radius); box-shadow: var(--shadow); }
@media (max-width: 768px) { .why-carol { grid-template-columns: 1fr; } }

/* ===== Services Grid ===== */
.services-section { background: var(--purple-light); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2rem; }
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .services-grid { grid-template-columns: 1fr; } }
.services-intro { text-align: center; max-width: 600px; margin: 0 auto; }
.also-available-highlight {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--pink-hot), var(--purple), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease;
}
.service-card:hover { transform: translateY(-4px); }
.service-card .icon { font-size: 2rem; margin-bottom: 0.75rem; }
.pricing-anchor {
  background: var(--pink-hot);
  color: var(--white);
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-top: 2rem;
  font-size: 1.3rem;
  font-weight: 700;
}

/* ===== Service Area ===== */
.service-area-section { text-align: center; }
.service-area-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pink-hot);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ===== Wholesale ===== */
.wholesale-section {
  background: linear-gradient(135deg, var(--teal), var(--purple));
  color: var(--white);
  text-align: center;
}
.wholesale-section h2, .wholesale-section p { color: var(--white); }
.wholesale-section .btn-primary { background: var(--white); color: var(--pink-hot); }

/* ===== Gallery ===== */
.gallery-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2rem; }
.filter-btn {
  background: var(--white);
  border: 2px solid var(--purple-light);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
}
.filter-btn.active, .filter-btn:hover { background: var(--pink-hot); color: var(--white); border-color: var(--pink-hot); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.gallery-item { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* ===== FAQ ===== */
.faq-item { border-bottom: 1px solid var(--purple-light); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
}
.faq-answer { padding: 0 0 1.25rem; color: var(--ink-light); display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-icon { font-size: 1.5rem; color: var(--pink-hot); }

/* ===== Contact Forms ===== */
.contact-section { background: var(--purple-light); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 768px) { .form-grid { grid-template-columns: 1fr; } }
.form-card { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.form-field { margin-bottom: 1rem; }
.form-field label { display: block; font-weight: 600; margin-bottom: 0.35rem; font-size: 0.95rem; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}
.honeypot-field { position: absolute; left: -9999px; }
.text-cta { text-align: center; margin-top: 1.5rem; font-weight: 600; }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: var(--white); padding: 3rem 0 1.5rem; text-align: center; }
.site-footer a { color: var(--pink-light); }
.footer-tagline { font-family: var(--font-header); font-style: italic; font-size: 1.2rem; margin-bottom: 1rem; }
.social-links { display: flex; justify-content: center; gap: 1rem; margin: 1rem 0; }

/* ===== 404 ===== */
.error-page { text-align: center; padding: 6rem 1.5rem; }
.error-page h1 { font-size: 4rem; color: var(--pink-hot); }
