/* ===== Design tokens ===== */
:root {
  --purple: #7C3AED;
  --purple-dark: #5B21B6;
  --purple-darker: #2E1065;
  --ink: #120E22;
  --orange: #FB7B29;
  --orange-dark: #EA580C;
  --yellow: #FFC93C;
  --yellow-dark: #F5A623;
  --pink: #EC4899;
  --text-heading: #241B3A;
  --text-body: #5B5568;
  --bg-lavender: #F6F3FF;
  --bg-blue: #EEF4FF;
  --white: #FFFFFF;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-card: 0 10px 30px rgba(46, 16, 101, 0.1);
  --shadow-card-hover: 0 18px 40px rgba(46, 16, 101, 0.18);
  --font-heading: 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;
}

/* ===== Reset ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.2;
  font-weight: 700;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: none;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(124, 58, 237, 0.35);
}
.btn-primary:hover { filter: brightness(1.06); }
.btn-secondary {
  background: var(--yellow);
  color: #5B3A00;
  box-shadow: 0 10px 24px rgba(255, 201, 60, 0.4);
}
.btn-secondary:hover { background: var(--yellow-dark); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); }
.btn-block { width: 100%; justify-content: center; }
.btn:disabled, .btn[aria-disabled="true"] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon { flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; font-family: var(--font-heading); line-height: 1; }
.logo-text-top {
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--orange), var(--yellow-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.5px;
}
.logo-text-bottom {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--purple-dark);
  letter-spacing: 1.5px;
  margin-top: 2px;
}
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 6px; }
.main-nav a {
  display: block;
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-heading);
  transition: background 0.15s ease, color 0.15s ease;
}
.main-nav a:hover { background: var(--bg-lavender); color: var(--purple-dark); }
.main-nav a.active { background: var(--purple); color: var(--white); }
.btn-cta { flex-shrink: 0; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  flex-shrink: 0;
}
.nav-toggle span { width: 24px; height: 3px; border-radius: 2px; background: var(--purple-dark); }

/* ===== Decorative stars ===== */
.star-deco { position: absolute; opacity: 0.9; pointer-events: none; }

/* ===== Hero (home) ===== */
.hero {
  position: relative;
  background: radial-gradient(circle at 15% 20%, #24123f 0%, var(--ink) 55%, #0B0817 100%);
  overflow: hidden;
  padding: 56px 0 96px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.hero-text h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  margin-bottom: 18px;
}
.hero-text h1 .accent-orange { color: var(--orange); }
.hero-text h1 .accent-gradient {
  background: linear-gradient(90deg, var(--pink), var(--yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-text p {
  color: #C9C3DE;
  font-size: 1.08rem;
  max-width: 480px;
  margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-badges { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 8px; color: #E4DFF4; font-weight: 700; font-size: 0.92rem; }
.hero-badge .badge-icon { font-size: 1.2rem; }
.hero-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.wave-divider { display: block; width: 100%; height: 44px; fill: var(--white); margin-top: -2px; }
.hero + .wave-divider { margin-top: -6px; }

/* ===== Section heading ===== */
.section { padding: 76px 0; }
.section-alt { background: var(--bg-lavender); }
.section-blue { background: var(--bg-blue); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  color: var(--purple);
  background: var(--bg-lavender);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.section-head p { margin-top: 12px; font-size: 1.02rem; }
.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 36px;
}
.section-head-row .section-head { text-align: left; margin: 0; max-width: 560px; }

/* ===== Feature cards ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid #EDE9F7;
}
.feature-card {
  padding: 34px 24px;
  text-align: center;
  border-left: 1px solid #EDE9F7;
}
.feature-card:first-child { border-left: none; }
.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.8rem;
}
.feature-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.92rem; }

/* ===== About / split section ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-media { position: relative; }
.about-media .media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.about-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.play-button {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(255,255,255,0.94);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  transition: transform 0.2s ease;
}
.media-frame:hover .play-button { transform: translate(-50%, -50%) scale(1.08); }
.about-text .eyebrow { background: transparent; padding-left: 0; }
.about-text h2 { font-size: clamp(1.6rem, 3vw, 2.15rem); margin-bottom: 16px; }
.about-text p { margin-bottom: 26px; font-size: 1.02rem; }

/* ===== Horizontal slider (Gösteriler / Atölyeler / Etkinlikler) ===== */
.slider-row {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 6px 4px 22px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--purple) var(--bg-lavender);
}
.slider-row::-webkit-scrollbar { height: 8px; }
.slider-row::-webkit-scrollbar-track { background: var(--bg-lavender); border-radius: 8px; }
.slider-row::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 8px; }
.slider-row > * { scroll-snap-align: start; flex: 0 0 auto; }

.content-card {
  width: 280px;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.content-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.content-card .card-media { position: relative; }
.content-card img { width: 100%; height: 170px; object-fit: cover; }
.content-card .card-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--purple);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
}
.content-card .card-body { padding: 18px 20px 22px; }
.content-card h3 { font-size: 1.08rem; margin-bottom: 6px; }
.content-card p { font-size: 0.88rem; }
.content-card .card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px; font-weight: 700; font-size: 0.86rem; color: var(--purple);
}

/* Event card (date badge variant) */
.event-card { width: 280px; }
.event-card .card-media { position: relative; }
.event-card .date-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--purple);
  color: var(--white);
  border-radius: 12px;
  padding: 6px 12px;
  text-align: center;
  font-family: var(--font-heading);
  line-height: 1.1;
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}
.event-card .date-badge .day { display: block; font-size: 1.15rem; font-weight: 800; }
.event-card .date-badge .month { display: block; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; }
.event-card .location {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.86rem; color: var(--text-body); margin-top: 8px;
}

.center-cta { text-align: center; margin-top: 8px; }

/* ===== Testimonials ===== */
.testimonials-panel {
  background: var(--bg-blue);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
}
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  box-shadow: var(--shadow-card);
}
.testimonial-card .quote-mark { font-family: var(--font-heading); font-size: 2rem; color: var(--purple); line-height: 1; }
.testimonial-card p { margin: 10px 0 16px; font-size: 0.95rem; color: var(--text-heading); }
.stars { color: var(--yellow-dark); letter-spacing: 2px; margin-bottom: 6px; }
.testimonial-card .author { font-weight: 700; font-size: 0.86rem; color: var(--purple-dark); }

/* ===== Contact CTA (footer top) ===== */
.contact-cta {
  position: relative;
  background: linear-gradient(120deg, var(--purple-dark), var(--purple) 55%, #9333EA);
  padding: 52px 0 60px;
  overflow: hidden;
}
.contact-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.contact-cta-heading h2 { color: var(--white); font-size: 1.7rem; margin-bottom: 8px; }
.contact-cta-heading p { color: #E6DEFA; max-width: 380px; }
.contact-cta-items { display: flex; gap: 28px; flex-wrap: wrap; }
.contact-item { display: flex; align-items: center; gap: 12px; color: var(--white); }
.contact-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease;
}
.contact-item:hover .contact-icon { background: rgba(255,255,255,0.3); }
.contact-item strong { display: block; font-size: 0.86rem; }
.contact-item span span { font-size: 0.86rem; opacity: 0.9; }
.star-deco-1 { width: 26px; top: 24px; right: 8%; }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: #C9C3DE; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 52px 0 36px;
}
.footer-brand p { margin-top: 14px; font-size: 0.9rem; max-width: 280px; color: #A79EC4; }
.logo-text-footer .logo-text-bottom { color: #C9B8F5; }
.footer-col h3 { color: var(--white); font-size: 0.95rem; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-contact-list li { font-size: 0.9rem; color: #A79EC4; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom-inner {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  padding: 18px 0; font-size: 0.82rem; color: #7C74A0;
}

/* ===== Inner page hero (subpages) ===== */
.page-hero {
  position: relative;
  background: radial-gradient(circle at 85% 20%, #3B1470 0%, var(--ink) 60%);
  padding: 64px 0 68px;
  text-align: center;
  overflow: hidden;
}
.page-hero .eyebrow { background: rgba(255,255,255,0.1); color: var(--yellow); }
.page-hero h1 { color: var(--white); font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 14px; }
.page-hero p { color: #C9C3DE; max-width: 560px; margin: 0 auto; font-size: 1.02rem; }
.page-hero .breadcrumb { color: #B7ACDD; font-size: 0.86rem; margin-top: 14px; }

/* ===== Generic content grid (subpages) ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.show-card, .workshop-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.show-card:hover, .workshop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.show-card img, .workshop-card img { width: 100%; height: 210px; object-fit: cover; }
.show-card .card-body, .workshop-card .card-body { padding: 22px 24px 26px; }
.show-card .card-body h3, .workshop-card .card-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.age-tag {
  display: inline-block;
  background: var(--bg-lavender);
  color: var(--purple-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.workshop-card .card-body ul { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.workshop-card .card-body li { font-size: 0.88rem; display: flex; gap: 8px; align-items: flex-start; }
.workshop-card .card-body li::before { content: "✓"; color: var(--purple); font-weight: 800; }

/* Events (full listing page) */
.events-list { display: flex; flex-direction: column; gap: 20px; }
.event-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 20px 26px;
}
.event-row .date-badge {
  background: var(--bg-lavender);
  color: var(--purple-dark);
  border-radius: 14px;
  padding: 12px 10px;
  text-align: center;
  font-family: var(--font-heading);
}
.event-row .date-badge .day { display: block; font-size: 1.6rem; font-weight: 800; }
.event-row .date-badge .month { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; }
.event-row h3 { font-size: 1.1rem; margin-bottom: 6px; }
.event-row .location { display: flex; gap: 6px; align-items: center; font-size: 0.9rem; }
.event-note {
  background: var(--bg-lavender);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  font-size: 0.92rem;
  color: var(--purple-dark);
  margin-top: 30px;
  text-align: center;
}

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery-item { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); background: var(--white); }
.gallery-item img { width: 100%; height: 220px; object-fit: cover; }
.gallery-caption { padding: 14px 18px; }
.gallery-caption strong { display: block; font-size: 0.94rem; color: var(--text-heading); }
.gallery-caption span { font-size: 0.82rem; color: var(--purple); font-weight: 700; }
.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* About page */
.value-list { display: flex; flex-direction: column; gap: 18px; margin-top: 8px; }
.value-item { display: flex; gap: 16px; align-items: flex-start; }
.value-item .value-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.value-item h4 { font-size: 1rem; margin-bottom: 4px; }
.value-item p { font-size: 0.9rem; }
.stat-row { display: flex; gap: 40px; margin-top: 34px; flex-wrap: wrap; }
.stat-row .stat strong { display: block; font-family: var(--font-heading); font-size: 1.8rem; color: var(--purple); }
.stat-row .stat span { font-size: 0.85rem; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 46px; align-items: start; }
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 26px 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.contact-info-card h3 { font-size: 1rem; margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a { font-size: 0.92rem; }
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 36px;
}
.form-notice {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #FFF7E0;
  border: 1px solid #FBE7A8;
  color: #7A5B00;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.88rem;
  margin-bottom: 22px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { display: block; font-weight: 700; font-size: 0.88rem; color: var(--text-heading); margin-bottom: 7px; }
.form-group input, .form-group textarea {
  width: 100%;
  border: 1.5px solid #E4DEF3;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: #FBFAFF;
}
.form-group input:focus, .form-group textarea:focus { outline: 2px solid var(--purple); outline-offset: 1px; }
.form-group textarea { resize: vertical; min-height: 110px; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-inner, .about-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card:nth-child(3) { border-left: none; }
  .feature-card:nth-child(odd) { border-left: none; }
  .testimonials-grid, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .main-nav.open { max-height: 480px; }
  .main-nav ul { flex-direction: column; padding: 10px 24px 18px; gap: 4px; }
  .main-nav a { padding: 12px 14px; }
  .nav-toggle { display: flex; }
  .btn-cta { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { border-left: none !important; border-top: 1px solid #EDE9F7; }
  .feature-card:first-child { border-top: none; }
  .testimonials-grid, .grid-3, .grid-2, .gallery-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .contact-cta-inner { flex-direction: column; align-items: flex-start; }
  .form-grid { grid-template-columns: 1fr; }
  .event-row { grid-template-columns: 80px 1fr; }
  .event-row .btn { grid-column: 1 / -1; }
  .section { padding: 56px 0; }
  .section-head-row { flex-direction: column; align-items: flex-start; }
}
