/* ========================================
   ÖZGÜN ÇOCUKLAR GÜNDÜZ BAKIM EVİ - MAIN STYLESHEET
   Warm & Cheerful Kindergarten Design
   ======================================== */

/* ========== CSS CUSTOM PROPERTIES ========== */
:root {
  /* Color Palette - Warm & Cheerful Kindergarten Theme */
  --primary-dark: #176B87;      /* Deep sky blue (headings, footer) */
  --primary-medium: #2BB3E0;    /* Sky blue (brand, links) */
  --primary-light: #7FD3F0;     /* Light sky blue */
  --accent-blue: #2BB3E0;       /* (kept name for compatibility) */

  /* Playful accent colors */
  --coral: #FF6B5C;             /* Coral */
  --coral-dark: #F2543D;
  --yellow: #FFC93C;            /* Sunny yellow */
  --yellow-soft: #FFE08A;
  --green: #5BC98C;             /* Grass green */
  --purple: #9B8CFF;            /* Soft purple */

  --neutral-dark: #4A4A57;      /* Dark gray (text) */
  --neutral-medium: #8A8A99;    /* Medium gray */
  --neutral-light: #ECE2D4;     /* Warm light border */
  --neutral-bg: #FFF9F0;        /* Cream background */
  --bg-light: #FFF3E2;          /* Light warm background */
  --text-dark: #3A3A4A;
  --text-medium: #5E5E6E;
  --text-light: #9A9AAA;
  --white: #FFFFFF;
  --accent-gradient: linear-gradient(135deg, #2BB3E0 0%, #36C5C0 55%, #5BC98C 100%);
  --accent-gradient-reverse: linear-gradient(135deg, #5BC98C 0%, #36C5C0 45%, #2BB3E0 100%);
  --warm-gradient: linear-gradient(135deg, #FFC93C 0%, #FF8A5B 50%, #FF6B5C 100%);

  /* Glass effect colors */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.25);
  --glass-shadow: rgba(23, 107, 135, 0.12);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;
  --spacing-2xl: 6rem;

  /* Typography */
  --font-heading: 'Fredoka', 'Trebuchet MS', sans-serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Borders - extra rounded for a playful feel */
  --border-radius-sm: 12px;
  --border-radius-md: 18px;
  --border-radius-lg: 26px;
  --border-radius-xl: 36px;
}

/* ========== GLOBAL RESET ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

/* Anchor targets land below the fixed header */
section[id],
[data-anchor] {
  scroll-margin-top: 100px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--neutral-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary-dark);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--primary-medium);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
  margin-bottom: var(--spacing-sm);
  color: var(--text-medium);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-medium);
}

/* ========== UTILITY CLASSES ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container-fluid {
  width: 100%;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-2xl) 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.text-center {
  text-align: center;
}

.text-gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== HEADER & NAVIGATION ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-medium);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26, 58, 82, 0.1);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) 0;
}

.logo {
  height: 50px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--spacing-md);
  align-items: center;
}

.nav-link {
  font-weight: 500;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-medium);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: width var(--transition-medium);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

.nav-link:hover {
  color: var(--primary-medium);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background: var(--primary-dark);
  border-radius: 3px;
  transition: all var(--transition-medium);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* ========== HERO SECTION (Unique Split Design) ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FFF9F0 0%, #FFF3E2 50%, #E9F8FB 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -45%;
  right: -20%;
  width: 75%;
  height: 150%;
  background: var(--accent-gradient);
  opacity: 0.08;
  border-radius: 50%;
  transform: rotate(-15deg);
  animation: float 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 55%;
  height: 120%;
  background: var(--warm-gradient);
  opacity: 0.07;
  border-radius: 50%;
  transform: rotate(12deg);
  animation: float 24s ease-in-out infinite reverse;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  position: relative;
  z-index: 2;
  margin-top: 80px;
}

.hero-text {
  padding: var(--spacing-md);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: var(--spacing-md);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: var(--text-medium);
  margin-bottom: var(--spacing-lg);
  font-weight: 300;
}

.hero-visual {
  position: relative;
  height: 500px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-xl);
}

/* Glass Cards Floating - Removed for cleaner design */

/* Hero text visibility fix - ensure headings are readable on light hero background */
.hero h1:not(.hero-slide-title):not(.brand-title) {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: var(--primary-dark);
  background-clip: unset;
  color: var(--primary-dark);
}

.hero .hero-subtitle {
  color: var(--neutral-dark);
}

/* Brand title in header - always dark for readability */
.brand-title {
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: var(--primary-dark) !important;
  background-clip: unset !important;
  color: var(--primary-dark) !important;
  font-size: 1.25rem !important;
  margin-bottom: 0 !important;
}

.brand-tagline {
  color: var(--primary-medium) !important;
  font-size: 0.85rem !important;
  margin-bottom: 0 !important;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--border-radius-md);
  font-weight: 600;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: all var(--transition-medium);
  border: none;
  font-size: 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-gradient-reverse);
  z-index: -1;
  transition: opacity var(--transition-medium);
  opacity: 0;
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--accent-gradient);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-medium);
  color: var(--primary-dark);
}

.btn-outline:hover {
  background: var(--primary-medium);
  color: var(--white);
}

.btn-group {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

/* ========== FEATURE CARDS ========== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.feature-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--neutral-light);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transition: transform var(--transition-medium);
  transform-origin: left;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  border-color: var(--primary-light);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin-bottom: var(--spacing-sm);
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-dark);
}

.feature-description {
  color: var(--text-medium);
  line-height: 1.8;
}

/* ========== STATS SECTION ========== */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
  padding: var(--spacing-xl) 0;
  background: var(--accent-gradient);
  color: var(--white);
  border-radius: var(--border-radius-lg);
  margin: var(--spacing-xl) 0;
}

.stat-item {
  text-align: center;
  padding: var(--spacing-md);
}

.stat-number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  font-family: var(--font-heading);
  display: block;
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========== PRODUCT/TECH CARDS ========== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-lg);
}

.product-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--neutral-light);
  transition: all var(--transition-medium);
  position: relative;
}

.product-card:hover {
  border-color: var(--primary-light);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-content {
  padding: var(--spacing-md);
}

.product-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-dark);
}

.product-description {
  color: var(--text-medium);
  margin-bottom: var(--spacing-sm);
}

/* ========== FORM STYLES ========== */
.form-group {
  margin-bottom: var(--spacing-md);
}

.form-label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
  color: var(--text-dark);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--spacing-sm);
  border: 2px solid #E0E0E0;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition-medium);
  background: var(--white);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-medium);
  background: var(--bg-light);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-error {
  color: #d32f2f;
  font-size: 0.875rem;
  margin-top: var(--spacing-xs);
  display: none;
}

.form-input.error,
.form-textarea.error {
  border-color: #d32f2f;
}

.form-input.error + .form-error,
.form-textarea.error + .form-error {
  display: block;
}

/* ========== CONTACT INFO ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.contact-info {
  background: var(--neutral-bg);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.contact-icon {
  width: 24px;
  height: 24px;
  fill: var(--primary-medium);
  flex-shrink: 0;
}

.contact-detail h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--primary-dark);
}

.contact-detail p,
.contact-detail a {
  color: var(--text-medium);
  font-size: 0.95rem;
}

.contact-detail a:hover {
  color: var(--primary-medium);
}

/* ========== MAP EMBED ========== */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--neutral-light);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: var(--spacing-xl) 0 var(--spacing-md);
  margin-top: var(--spacing-2xl);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-section h3 {
  color: var(--white);
  margin-bottom: var(--spacing-sm);
  font-size: 1.25rem;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-xs);
  display: block;
}

.footer-section a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: var(--spacing-md);
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

/* Decorative shapes removed for cleaner design */

/* ========== SCROLL TO TOP BUTTON ========== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--accent-gradient);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  opacity: 0.9;
}

/* ========================================
   KINDERGARTEN ADDITIONS
   ======================================== */

/* ========== BRAND / LOGO PLACEHOLDER ========== */
.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

/* Empty logo slot — to be replaced with the real logo image later */
.logo-placeholder {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 16px;
  border: 2px dashed var(--primary-light);
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--primary-medium);
  text-transform: uppercase;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.15;
}

/* ========== DROPDOWN NAVIGATION ========== */
.nav-menu .nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 2px;
  display: inline-flex;
  align-items: center;
  color: var(--primary-dark);
}

.dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-medium);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 270px;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--neutral-light);
  border-radius: var(--border-radius-md);
  box-shadow: 0 14px 34px rgba(23, 107, 135, 0.16);
  padding: 0.5rem;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-medium);
  z-index: 1001;
}

.nav-item.has-dropdown:hover > .dropdown-menu,
.nav-item.has-dropdown:focus-within > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 0.9rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-dark);
}

.dropdown-menu a::after {
  display: none; /* no underline animation inside dropdown */
}

.dropdown-menu a:hover {
  background: var(--bg-light);
  color: var(--primary-dark);
}

/* ========== PAGE HERO (sub-pages) ========== */
.hero.page-hero {
  min-height: 42vh;
  text-align: center;
  padding: 140px 0 var(--spacing-xl);
}

.hero.page-hero .container {
  position: relative;
  z-index: 2;
}

.hero.page-hero .hero-subtitle {
  max-width: 680px;
  margin: 0 auto;
}

/* ========== SECTION BACKGROUND TINTS ========== */
.section-cream { background: var(--neutral-bg); }
.section-warm  { background: linear-gradient(135deg, #FFF6E8 0%, #FFEFD6 100%); }
.section-blue  { background: linear-gradient(135deg, #EAF8FC 0%, #DBF1FA 100%); }
.section-green { background: linear-gradient(135deg, #EAFAF0 0%, #DBF4E6 100%); }
.section-pink  { background: linear-gradient(135deg, #FFF0EE 0%, #FFE4E0 100%); }
.section-white { background: var(--white); }

/* ========== EMOJI ICON BADGE (feature cards) ========== */
.feature-emoji {
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  border-radius: 50%;
  margin-bottom: var(--spacing-sm);
  background: var(--bg-light);
  line-height: 1;
}

.emoji-blue   { background: #E3F4FB; }
.emoji-coral  { background: #FFE7E3; }
.emoji-yellow { background: #FFF2CF; }
.emoji-green  { background: #E2F6EA; }
.emoji-purple { background: #EEEAFF; }

/* Colored top accent variants for cards */
.card-accent-coral::before  { background: var(--warm-gradient) !important; }
.card-accent-yellow::before { background: linear-gradient(135deg, #FFD23F, #FFB300) !important; }
.card-accent-green::before  { background: linear-gradient(135deg, #5BC98C, #2FB36B) !important; }

/* ========== LEAD / INTRO TEXT ========== */
.lead {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: var(--text-medium);
  line-height: 1.8;
}

.prose p {
  line-height: 1.9;
  margin-bottom: var(--spacing-sm);
}

/* ========== CHECK LIST ========== */
.check-list {
  list-style: none;
  padding: 0;
  margin: var(--spacing-sm) 0;
  display: grid;
  gap: 0.75rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-medium);
  line-height: 1.6;
}

.check-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 2px;
}

.check-list.dots li::before {
  content: '';
  width: 12px;
  height: 12px;
  margin-top: 7px;
  background: var(--coral);
}

/* ========== CALLOUT / NOTE BOX ========== */
.callout {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg-light);
  border-left: 6px solid var(--yellow);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.callout .callout-emoji { font-size: 1.8rem; line-height: 1; }
.callout p { margin-bottom: 0; }

/* ========== PILL / BADGE ========== */
.pill {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: var(--bg-light);
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: var(--spacing-sm);
}

/* ========== BUTTON EXTRAS ========== */
.btn-warm {
  background: var(--warm-gradient);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--primary-dark);
}

.btn-white:hover { color: var(--primary-dark); }

/* ========== IMAGE + TEXT SPLIT ========== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.split img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 14px 40px rgba(23, 107, 135, 0.14);
  display: block;
}

.split .split-text h2 { margin-bottom: var(--spacing-sm); }

/* reversed row: image on the right */
.split.reverse .split-media { order: 2; }

/* rounded photo helper */
.rounded-photo {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 14px 40px rgba(23, 107, 135, 0.14);
  display: block;
}

/* Photo placeholder (e.g. school exterior — to be replaced with a real photo) */
.photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--border-radius-lg);
  border: 3px dashed var(--primary-light);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 201, 60, 0.18), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(255, 107, 92, 0.16), transparent 60%),
    var(--bg-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: var(--spacing-md);
}

.photo-placeholder-emoji {
  font-size: 3.4rem;
  line-height: 1;
}

/* ========== SOCIAL LINKS ========== */
.social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transition: all var(--transition-medium);
}

.social-links a:hover {
  background: var(--coral);
  transform: translateY(-3px);
}

.social-links svg { width: 22px; height: 22px; }

/* ========== AGE-PROGRAM TAB BUTTON PILLS ========== */
.tabs-nav.pills {
  border-bottom: none;
  gap: 0.75rem;
  justify-content: center;
}

.tabs-nav.pills .tab-button {
  border: 2px solid var(--neutral-light);
  border-radius: 999px;
  padding: 0.6rem 1.5rem;
}

.tabs-nav.pills .tab-button.active {
  background: var(--accent-gradient);
  color: #fff;
  border-color: transparent;
}

.tabs-nav.pills .tab-button::after { display: none; }
