/* Wonder Cub Studio — site styles */

:root {
  --purple: #6a5acd;
  --purple-dark: #4b3f9e;
  --pink: #e94f9f;
  --cream: #fdf8f3;
  --text: #2e2a3d;
  --muted: #6b6577;
  --radius: 14px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

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

a { color: var(--purple-dark); }

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

/* Header / Nav */
header.site-header {
  background: linear-gradient(120deg, var(--purple), #8a6fd8);
  color: #fff;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
}

nav.main-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

nav.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  opacity: 0.9;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  opacity: 1;
  text-decoration: underline;
}

/* Hero */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
}

.hero img.hero-bg {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: brightness(0.65);
}

.hero-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  max-width: 1100px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.hero-text h1 {
  font-size: 3rem;
  margin: 0 0 12px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.hero-text p {
  max-width: 600px;
  font-size: 1.15rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

/* Page hero (simple, for About/FAQ/Gallery) */
.page-hero {
  background: linear-gradient(120deg, var(--pink), var(--purple));
  color: #fff;
  padding: 56px 24px;
  text-align: center;
}

.page-hero h1 {
  margin: 0;
  font-size: 2.4rem;
}

/* Sections */
section {
  padding: 56px 0;
}

section.alt {
  background: #fff;
}

h2 {
  font-size: 2rem;
  margin-top: 0;
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 700px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 720px) {
  .two-col { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 2.2rem; }
  .hero img.hero-bg { height: 320px; }
}

/* About page intro (portrait + merged bio) */
.about-intro {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
}

.portrait-oval {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.about-photos .card img { height: 260px; }

@media (max-width: 720px) {
  .about-intro { grid-template-columns: 1fr; }
  .portrait-oval { max-width: 220px; margin: 0 auto; }
}

/* Pricing cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.card img { height: 200px; object-fit: cover; width: 100%; }

.card-body { padding: 20px; }

.card-body h3 { margin: 0 0 4px; color: var(--purple-dark); }

.card-body .tagline { color: var(--pink); font-weight: 600; margin: 0 0 12px; }

.card-body .price { font-weight: 700; margin-top: 12px; }

/* Buttons */
.btn {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  margin-top: 16px;
}

.btn:hover { background: var(--purple-dark); }

/* Steps list */
ol.steps, ul.plain {
  padding-left: 1.2rem;
}

ol.steps li, ul.plain li {
  margin-bottom: 8px;
}

/* FAQ */
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 20px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}

.faq-item h3 {
  margin-top: 0;
  color: var(--purple-dark);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.2s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

/* Footer */
footer.site-footer {
  background: var(--purple-dark);
  color: #fff;
  padding: 40px 24px;
  text-align: center;
}

footer.site-footer a {
  color: #fff;
}

footer.site-footer .footer-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

footer.site-footer .footer-nav a {
  text-decoration: none;
  font-weight: 600;
}

footer.site-footer img.footer-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  margin-bottom: 16px;
}

footer.site-footer p {
  margin: 6px 0;
  opacity: 0.85;
  font-size: 0.95rem;
}
