/* =========================================================================
   BUMBAA — Tasarım Sistemi
   Neşeli & renkli, mobil öncelikli, çocuk dostu
   ========================================================================= */

:root {
  /* Marka renkleri (çok renkli palet) */
  --c-coral:  #FF4D6D;
  --c-orange: #FF9F1C;
  --c-yellow: #FFD23F;
  --c-green:  #06D6A0;
  --c-blue:   #3A86FF;
  --c-purple: #9B5DE5;
  --c-pink:   #F15BB5;

  /* Yüzeyler */
  --bg:        #FFF9F0;
  --bg-soft:   #FFF3E2;
  --surface:   #FFFFFF;
  --ink:       #2B2D42;
  --ink-soft:  #5C5F73;
  --line:      #F0E4D4;

  /* Ölçüler */
  --radius:    22px;
  --radius-sm: 14px;
  --radius-lg: 34px;
  --shadow:    0 14px 40px -18px rgba(43, 45, 66, 0.28);
  --shadow-sm: 0 8px 22px -14px rgba(43, 45, 66, 0.30);
  --maxw:      1120px;

  --ff-head: "Baloo 2", "Segoe UI", system-ui, sans-serif;
  --ff-body: "Nunito", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--ff-head);
  line-height: 1.15;
  margin: 0 0 .4em;
  font-weight: 700;
}
h1 { font-size: clamp(2.1rem, 7vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 3.5vw, 1.5rem); }
p  { margin: 0 0 1em; color: var(--ink-soft); }
a  { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(18px, 5vw, 40px);
}

section { padding: clamp(48px, 9vw, 96px) 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--ff-head);
  font-weight: 700;
  letter-spacing: .5px;
  font-size: .8rem;
  text-transform: uppercase;
  color: var(--c-coral);
  background: #FFE7EC;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 60ch; }

.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* -------------------------------------------------------- Butonlar */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.02rem;
  padding: 15px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(.96); }
.btn-primary {
  background: linear-gradient(135deg, var(--c-coral), var(--c-orange));
  color: #fff;
  box-shadow: 0 12px 26px -10px rgba(255, 77, 109, .7);
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.04); }
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--line);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--c-coral); }
.btn-wa { background: linear-gradient(135deg, #25D366, #128C7E); color:#fff; box-shadow:0 12px 26px -10px rgba(37,211,102,.6);}
.btn-wa:hover { transform: translateY(-2px); }

/* -------------------------------------------------------- Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 249, 240, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 12px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo-img { height: 58px; width: auto; display: block; }

.nav-links {
  display: none;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  font-weight: 700;
  font-size: .96rem;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  transition: color .15s, background .15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); background: var(--bg-soft); }
.nav-cta { display: none; }

/* Mobil menü */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 10px 11px;
  cursor: pointer;
}
.nav-toggle span { width: 22px; height: 2.6px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 0 18px;
  border-top: 1px solid var(--line);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--ff-head);
  font-weight: 600;
  padding: 13px 12px;
  border-radius: 14px;
  font-size: 1.05rem;
}
.mobile-menu a:hover, .mobile-menu a.active { background: var(--bg-soft); }
.mobile-menu .btn { margin-top: 10px; justify-content: center; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* -------------------------------------------------------- Hero */
.hero { position: relative; padding-top: clamp(40px, 7vw, 70px); padding-bottom: clamp(16px, 3vw, 32px); }
.hero-inner {
  display: grid;
  gap: 34px;
  align-items: center;
}
.hero h1 span { color: var(--c-coral); }
.hero .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line);
  padding: 9px 16px; border-radius: 999px;
  font-weight: 700; font-size: .9rem; box-shadow: var(--shadow-sm);
}
.chip .dot { width: 10px; height: 10px; border-radius: 50%; }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 3.4;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #FFE9C7, #FFD9E4 55%, #D7E9FF);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -15%;
  background:
    radial-gradient(circle at 20% 24%, var(--c-yellow) 0 16%, transparent 17%),
    radial-gradient(circle at 82% 16%, var(--c-green) 0 13%, transparent 14%),
    radial-gradient(circle at 86% 80%, var(--c-blue) 0 17%, transparent 18%),
    radial-gradient(circle at 22% 86%, var(--c-pink) 0 13%, transparent 14%);
  filter: blur(26px);
  opacity: .5;
}

/* --- Sticker kümesi (hero/konsept görseli) --- */
.sticker-cluster {
  position: relative;
  width: 100%; height: 100%;
  display: grid; place-items: center;
}
.sticker {
  background: #fff;
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
  line-height: 1;
}
.sticker-main {
  position: relative;
  z-index: 2;
  width: clamp(112px, 28vw, 176px);
  height: clamp(112px, 28vw, 176px);
  border-radius: 32px;
  font-size: clamp(3rem, 11vw, 5rem);
  transform: rotate(-4deg);
  filter: drop-shadow(0 10px 16px rgba(0,0,0,.14));
}
.sticker-sm {
  position: absolute;
  z-index: 3;
  width: clamp(50px, 9vw, 70px);
  height: clamp(50px, 9vw, 70px);
  border-radius: 18px;
  font-size: clamp(1.3rem, 3.6vw, 1.9rem);
}
.sticker-sm.s1 { top: 9%;  left: 8%;  transform: rotate(-11deg); }
.sticker-sm.s2 { top: 11%; right: 9%; transform: rotate(9deg); }
.sticker-sm.s3 { bottom: 11%; right: 15%; transform: rotate(-7deg); }

@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.05fr .95fr; gap: 50px; }
}

/* -------------------------------------------------------- Kartlar / grid */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: 1fr; }
@media (min-width: 680px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } .grid-2 { grid-template-columns: repeat(2, 1fr);} }
@media (min-width: 940px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .ico {
  width: 58px; height: 58px; border-radius: 18px;
  display: grid; place-items: center; font-size: 1.7rem; margin-bottom: 16px;
}
.card h3 { margin-bottom: 6px; }
.card p { margin: 0; font-size: .98rem; }

.bg-coral  { background: #FFE7EC; } .fg-coral  { color: var(--c-coral); }
.bg-orange { background: #FFF0D9; } .fg-orange { color: var(--c-orange); }
.bg-green  { background: #D8F8EF; } .fg-green  { color: #06a97f; }
.bg-blue   { background: #E1ECFF; } .fg-blue   { color: var(--c-blue); }
.bg-purple { background: #EEE3FB; } .fg-purple { color: var(--c-purple); }
.bg-pink   { background: #FDE3F3; } .fg-pink   { color: #d63d95; }
.bg-yellow { background: #FFF6D6; } .fg-yellow { color: #d9a400; }

/* -------------------------------------------------------- Bölüm başlıkları */
.section-head { max-width: 62ch; margin-bottom: 38px; }
.section-head.center { margin-inline: auto; }

/* -------------------------------------------------------- Fiyat tablosu */
.price-list { display: grid; gap: 12px; max-width: 640px; margin-inline: auto; }
.price-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 18px 22px; box-shadow: var(--shadow-sm);
}
.price-row .p-name { font-family: var(--ff-head); font-weight: 700; font-size: 1.08rem; }
.price-row .p-detail { font-size: .85rem; color: var(--ink-soft); }
.price-row .p-value {
  font-family: var(--ff-head); font-weight: 800; font-size: 1.25rem; color: var(--c-coral);
  white-space: nowrap;
}
.price-note { text-align: center; margin-top: 22px; font-size: .95rem; }

/* -------------------------------------------------------- Paketler */
.pkg {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 2px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform .2s;
}
.pkg:hover { transform: translateY(-5px); }
.pkg.pop { border-color: var(--c-purple); box-shadow: 0 20px 44px -20px rgba(155,93,229,.55); }
.pkg-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--c-purple); color: #fff; font-family: var(--ff-head); font-weight: 700;
  font-size: .78rem; padding: 6px 16px; border-radius: 999px; white-space: nowrap;
}
.pkg-top { display:flex; align-items:center; gap:12px; margin-bottom: 8px; }
.pkg-dot { width: 40px; height: 40px; border-radius: 12px; display:grid; place-items:center; font-size: 1.3rem; }
.pkg h3 { margin: 0; }
.pkg ul { list-style: none; padding: 0; margin: 18px 0 22px; display: grid; gap: 11px; }
.pkg li { display: flex; gap: 10px; align-items: flex-start; font-size: .98rem; color: var(--ink); }
.pkg li .tick { color: var(--c-green); font-weight: 800; flex: none; }
.pkg .pkg-note { font-size: .85rem; color: var(--ink-soft); margin-bottom: 16px; }
.pkg .btn { margin-top: auto; justify-content: center; }

/* -------------------------------------------------------- Galeri */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 720px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
.gallery.single { grid-template-columns: 1fr; max-width: 720px; margin-inline: auto; }
.gallery.single .gallery-item { aspect-ratio: auto; }
.gallery.single .gallery-item img { height: auto; }
.gallery-item {
  position: relative; aspect-ratio: 1/1; border-radius: var(--radius-sm);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; cursor: zoom-in; }
.gallery-item:hover img { transform: scale(1.06); }

/* Büyük görüntüleme (lightbox) */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: none; align-items: center; justify-content: center;
  padding: 24px; background: rgba(20, 18, 30, .82);
  backdrop-filter: blur(4px);
}
.lightbox.open { display: flex; animation: lb-in .2s ease; }
@keyframes lb-in { from { opacity: 0; } to { opacity: 1; } }
.lightbox-img {
  max-width: min(1100px, 96vw); max-height: 90vh;
  border-radius: var(--radius-sm); box-shadow: 0 24px 60px -18px rgba(0,0,0,.6);
  cursor: zoom-out;
}
.lightbox-close {
  position: absolute; top: 18px; right: 22px;
  width: 46px; height: 46px; border: none; border-radius: 50%;
  background: rgba(255,255,255,.92); color: var(--ink);
  font-size: 1.8rem; line-height: 1; cursor: pointer;
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
  transition: transform .15s ease;
}
.lightbox-close:hover { transform: scale(1.08); }
.gallery-item.ph {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  transition: transform .25s ease;
}
.gallery-item.ph:hover { transform: translateY(-3px); }
.gallery-item.ph .ph-badge {
  width: 58px; height: 58px; border-radius: 18px;
  background: #fff; box-shadow: var(--shadow-sm);
  display: grid; place-items: center; font-size: 1.7rem;
}
.gallery-item.ph .ph-label {
  font-family: var(--ff-head); font-weight: 700; font-size: .78rem;
  letter-spacing: .3px; color: var(--ink-soft);
}

/* -------------------------------------------------------- İletişim */
.info-grid { display: grid; gap: 18px; }
@media (min-width: 820px) { .info-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.info-card { display: flex; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px 22px; box-shadow: var(--shadow-sm); }
.info-card .ico { flex: none; width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; font-size: 1.35rem; }
.info-card h4 { margin: 0 0 3px; font-size: 1.05rem; }
.info-card p, .info-card a { margin: 0; font-size: 1rem; color: var(--ink); font-weight: 600; }
.info-list { display: grid; gap: 14px; }

/* --- Telefon kartı: sade iki numara --- */
.phone-lines { display: flex; flex-direction: column; gap: 2px; }
.phone-line {
  font-size: 1rem; font-weight: 700; color: var(--ink);
  text-decoration: none; transition: color .15s ease;
}
.phone-line:hover { color: var(--c-coral); }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 340px; border: 0; display: block; }
.hours-row { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; border-bottom: 1px dashed var(--line); }
.hours-row:last-child { border-bottom: 0; }
.hours-row .g { font-weight: 700; }
.hours-row .s { color: var(--ink-soft); }

/* -------------------------------------------------------- CTA bandı */
.cta-band {
  background: linear-gradient(135deg, var(--c-purple), var(--c-blue));
  color: #fff; border-radius: var(--radius-lg); padding: clamp(34px, 6vw, 60px);
  text-align: center; box-shadow: var(--shadow);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 52ch; margin-inline: auto; }
.cta-band .btn-primary { background: #fff; color: var(--c-purple); box-shadow: 0 12px 26px -10px rgba(0,0,0,.4); }
.cta-band .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }

/* -------------------------------------------------------- Footer */
.site-footer { background: var(--ink); color: #E7E7EF; padding: 54px 0 30px; margin-top: 20px; }
.footer-grid { display: grid; gap: 30px; }
.footer-logo-img { height: 96px; width: auto; display: block; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 14px; }
.site-footer a { color: #C9C9D6; display: inline-block; padding: 4px 0; }
.site-footer a:hover { color: #fff; }
.foot-links a { display: block; }
.footer-social { display: flex; gap: 12px; margin-top: 14px; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08);
  display: grid; place-items: center; font-size: 1.1rem; padding: 0;
}
.footer-social a:hover { background: rgba(255,255,255,.16); }
.footer-bottom { margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: .85rem; color: #9A9AAB; display:flex; flex-wrap:wrap; gap:8px; justify-content: space-between;}

/* -------------------------------------------------------- Sabit Ara butonu (mobil) */
.call-fab {
  position: fixed; right: 16px; bottom: 16px; z-index: 60;
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, var(--c-coral), var(--c-orange));
  color: #fff; font-family: var(--ff-head); font-weight: 700;
  padding: 15px 22px; border-radius: 999px;
  box-shadow: 0 14px 30px -10px rgba(255,77,109,.8);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 14px 30px -10px rgba(255,77,109,.8); }
  50%     { box-shadow: 0 14px 30px -10px rgba(255,77,109,.8), 0 0 0 12px rgba(255,77,109,.10); }
}
@media (min-width: 900px) { .call-fab { display: none; } }

/* -------------------------------------------------------- Page hero (iç sayfalar) */
.page-hero { background: var(--bg-soft); padding: clamp(40px, 7vw, 72px) 0; text-align: center; }
.page-hero p { margin-inline: auto; }

/* -------------------------------------------------------- Yardımcılar */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
