/* ============================================
   BloomBeauty Voorbeeld — Clean White + Soft Pink
   Fonts: DM Sans + DM Serif Display
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400;1,9..40,500&family=DM+Serif+Display:ital@0;1&display=swap');

/* ---------- Reset & Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #fafaf8;
  --bg-warm: #f5f0ec;
  --bg-card: #ffffff;
  --pink: #d4a0a0;
  --pink-dark: #b8787a;
  --pink-light: #e8c5c5;
  --pink-subtle: #f2e0e0;
  --charcoal: #2a2a2a;
  --text: #444444;
  --text-muted: #888888;
  --border: #e8e4e0;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --radius: 20px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.08);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--pink-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--pink); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 48px;
}
.accent { color: var(--pink-dark); }

/* ---------- Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.active { opacity: 1; transform: translateX(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ---------- Header / Nav ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}
.header.scrolled {
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
  padding: 14px 0;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--charcoal);
  letter-spacing: -0.5px;
}
.logo span { color: var(--pink-dark); }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--pink);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav a:hover { color: var(--pink-dark); }
.nav a:hover::after { width: 100%; }
.nav-cta {
  background: var(--pink-dark) !important;
  color: var(--bg) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: all var(--transition) !important;
}
.nav-cta:hover {
  background: var(--pink) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(212,160,160,0.3);
}
.nav-cta::after { display: none !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.nav-toggle span { width: 26px; height: 2px; background: var(--charcoal); transition: var(--transition); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--bg-warm);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 80px;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink-subtle);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pink-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--pink-dark);
}
.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.8;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink-dark);
  color: white;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-primary:hover {
  background: var(--pink);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212,160,160,0.3);
  color: white;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--pink-dark);
  color: var(--pink-dark);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: var(--pink-dark);
  color: white;
  transform: translateY(-3px);
}
.hero-image {
  position: relative;
  border-radius: 200px 200px 40px 40px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-height: 620px;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-float {
  position: absolute;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
  z-index: 3;
}
.hero-float-1 { bottom: 80px; left: -30px; }
.hero-float-2 { top: 120px; right: -20px; }
.hero-float-icon {
  width: 40px; height: 40px;
  background: var(--pink-subtle);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-dark);
}

/* ---------- Scroll Video ---------- */
.scroll-video-section {
  position: relative;
  background: var(--bg);
}
.scroll-video-section .pin-wrap {
  width: 100%; height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.scroll-video-section canvas {
  width: 90%;
  max-width: 960px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.scroll-video-overlay {
  position: absolute;
  bottom: 48px; left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.scroll-video-overlay p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* ---------- Services ---------- */
.services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--pink-light);
}
.service-icon {
  width: 64px; height: 64px;
  background: var(--pink-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--pink-dark);
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--pink-dark);
  color: white;
  transform: rotate(-8deg) scale(1.1);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}
.service-price {
  margin-top: 16px;
  font-weight: 600;
  color: var(--pink-dark);
  font-size: 1rem;
}

/* ---------- Stats ---------- */
.stats-section {
  background: var(--pink-dark);
  padding: 72px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  margin-bottom: 6px;
}
.stat-item p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute;
  top: -20px; left: -20px;
  width: 120px; height: 120px;
  background: var(--pink-subtle);
  border-radius: 50%;
  z-index: -1;
}
.about-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.about-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--pink-subtle);
  color: var(--pink-dark);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--bg-warm); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--pink-light);
  position: absolute;
  top: 16px; left: 24px;
  line-height: 1;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.testimonial-stars {
  color: var(--pink-dark);
  margin-bottom: 16px;
  padding-top: 20px;
}
.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--pink-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-dark);
  font-weight: 600;
  font-size: 0.85rem;
}
.testimonial-author strong { color: var(--charcoal); font-size: 0.9rem; }
.testimonial-author span { color: var(--text-muted); font-size: 0.8rem; }

/* ---------- Gallery ---------- */
.gallery { background: var(--bg); }
.gallery-masonry {
  columns: 5;
  column-gap: 12px;
}
.gallery-item {
  break-inside: avoid;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 12px;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(212,160,160,0.3), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

/* ---------- FAQ ---------- */
.faq { background: var(--bg-warm); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item:hover, .faq-item.active { border-color: var(--pink-light); box-shadow: var(--shadow); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 22px 28px;
  user-select: none;
}
.faq-question h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--charcoal);
  font-weight: 400;
}
.faq-question .faq-icon {
  color: var(--pink-dark);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 28px 22px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ---------- CTA ---------- */
.cta-section {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: url('../images/cta-bg.jpg') center/cover no-repeat;
  filter: brightness(0.35);
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,160,160,0.6), rgba(42,42,42,0.7));
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: white;
  margin-bottom: 16px;
}
.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--charcoal);
  padding: 64px 0 24px;
  color: rgba(255,255,255,0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer .logo { color: white; margin-bottom: 16px; display: inline-block; }
.footer .logo span { color: var(--pink-light); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 300px; }
.footer h4 {
  font-family: var(--font-display);
  color: white;
  margin-bottom: 16px;
  font-size: 1.05rem;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.footer ul a:hover { color: var(--pink-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.8rem; }

/* ---------- StudioLee Badge ---------- */
.studiolee-badge {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.studiolee-badge:hover {
  border-color: var(--pink);
  color: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.studiolee-badge svg { width: 14px; height: 14px; }

/* ---------- Blog Page ---------- */
.blog-hero {
  padding: 140px 0 60px;
  background: var(--bg-warm);
  text-align: center;
}
.blog-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--charcoal);
  margin-bottom: 12px;
}
.blog-hero p { color: var(--text-muted); font-size: 1.05rem; }
.blog-categories {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.blog-cat {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--bg-card);
}
.blog-cat:hover, .blog-cat.active {
  background: var(--pink-dark);
  color: white;
  border-color: var(--pink-dark);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  padding: 60px 0 100px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--pink-light);
}
.blog-card-img { height: 210px; overflow: hidden; }
.blog-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 24px; }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.blog-tag {
  background: var(--pink-subtle);
  color: var(--pink-dark);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 500;
}
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.blog-read-more {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--pink-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-read-more:hover { gap: 10px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gallery-masonry { columns: 3; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { max-height: 400px; border-radius: var(--radius); }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(250,250,248,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }
  .nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { columns: 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.4rem; }
  .hero-btns { flex-direction: column; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .gallery-masonry { columns: 2; }
  .hero-float { display: none; }
}
