/* Yeni Renk Paleti Tanımlamaları */
:root {
    --primary-turkuaz: #67C3C0;
    --secondary-sari: #FFB81C;
    --bebek-mavisi: #92D6E7;
    --yanak-pembesi: #E87FA0;
    --bulut-beyazi: #FFFAFA;
    --arka-plan-ferah: #F0F9F9;
    --body-text: #4A4A4A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif; /* Çocuk dünyasına uygun yumuşak bir font */
    background-color: var(--arka-plan-ferah);
    color: var(--body-text);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    border-bottom: 2px solid var(--bebek-mavisi);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Logo Stili */
.logo a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    display: block;
}

.logo img{
    height: 120px;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-turkuaz);
    letter-spacing: -0.5px;
    line-height: 1;
}

.logo-sub {
    font-size: 14px;
    color: var(--secondary-sari);
    font-weight: 600;
    margin-top: 2px;
}

/* Masaüstü Nav */
.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.desktop-nav a {
    text-decoration: none;
    color: var(--body-text);
    font-weight: 600;
    font-size: 15px;
    padding: 10px 0;
    transition: all 0.3s ease;
    position: relative;
}

/* Hover Efekti: Alt çizgi yerine renk değişimi ve nokta */
.desktop-nav a:hover, .desktop-nav a.active {
    color: var(--primary-turkuaz);
}

.desktop-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--yanak-pembesi);
    border-radius: 50%;
}

/* Mobil Tetikleyici */
.mobile-toggle {
    display: none;
    cursor: pointer;
    align-items: center;
    gap: 8px;
}

.toggle-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-turkuaz);
    letter-spacing: 1px;
}

.burger-lines span {
    display: block;
    width: 22px;
    height: 3px;
    background-color: var(--primary-turkuaz);
    margin: 4px 0;
    border-radius: 2px;
}

/* Mobil Menü Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--primary-turkuaz);
    z-index: 2000;
    transition: all 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-menu.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 35px;
    right: 25px;
    font-weight: 700;
    color: var(--bulut-beyazi);
    cursor: pointer;
    border: 2px solid var(--bulut-beyazi);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 12px;
}

.mobile-nav ul {
    list-style: none;
    text-align: center;
}

.mobile-nav li {
    margin: 20px 0;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--bulut-beyazi);
    font-size: 32px;
    font-weight: 700;
}

/* Responsive Kurallar */
@media (max-width: 992px) {
    .desktop-nav { display: none; }
    .mobile-toggle { display: flex; }
    .container {  }
}

/* Hero Slider Genel Yapı */
.hero-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - 100px); /* Header yüksekliği düşüldü */
    overflow: hidden;
    background-color: var(--body-text);
}

.slider-container {
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 1s linear;
}

.slide.active .slide-image {
    transform: scale(1);
}

/* Koyu Katman ve İçerik */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(150, 150, 150,0.6), rgba(0, 0, 0,0.8));
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.slide-content {
    max-width: 800px;
    color: var(--bulut-beyazi);
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
    opacity: 0;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-tag {
    display: inline-block;
    background-color: var(--yanak-pembesi);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.slide-content h1 {
    font-size: clamp(32px, 5vw, 64px);
    line-height: 1.1;
    margin-bottom: 20px;
}

.slide-content .highlight {
    color: var(--primary-turkuaz);
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 40px;
    font-weight: 400;
    opacity: 0.9;
}

/* Butonlar */
.hero-btns {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 18px 35px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    font-size: 14px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--secondary-sari);
    color: var(--body-text);
}

.btn-primary:hover {
    background-color: var(--primary-turkuaz);
    color: var(--bulut-beyazi);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--bulut-beyazi);
    color: var(--bulut-beyazi);
}

.btn-secondary:hover {
    background-color: var(--bulut-beyazi);
    color: var(--primary-turkuaz);
}

/* Slider Kontrolleri */
.slider-controls {
    position: absolute;
    bottom: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 10;
}

.prev-slide, .next-slide {
    background: none;
    border: none;
    color: var(--bulut-beyazi);
    font-weight: 700;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 3px;
    transition: color 0.3s ease;
}

.prev-slide:hover, .next-slide:hover {
    color: var(--secondary-sari);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 40px;
    height: 3px;
    background-color: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--secondary-sari);
    width: 60px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider { height: 80vh; }
    .hero-btns { flex-direction: column; }
    .slide-content h1 { font-size: 32px; }
    .slider-controls { bottom: 30px; gap: 20px; }
}

/* Intro Playful Section Genel */
.intro-playful {
    position: relative;
    padding: 120px 0; /* Bulut dalgaları için daha fazla alan */
    background-color: var(--bulut-beyazi);
    overflow: hidden;
}
/* Başlık Alanı */
.intro-header-playful {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px auto;
}

.pembis-not {
    display: inline-block;
    color: var(--yanak-pembesi);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 3px;
    background-color: rgba(232, 127, 160, 0.1);
    padding: 5px 15px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.intro-header-playful h2 {
    color: var(--primary-turkuaz);
    font-size: clamp(30px, 5vw, 45px);
    margin-bottom: 25px;
    font-weight: 800;
}

.intro-header-playful p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--body-text);
}

/* Özellikler Grid */
.playful-features {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-evenly;
    text-align: center;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px 0;
}

/* Blob-Wrapper: Organik Şekiller (İkon Yerine) */
.blob-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
    margin-bottom: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Arka plandaki organik şekil */
.blob-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Değişken organik border-radius değeri */
    border-radius: 60% 40% 70% 30% / 40% 50% 60% 50%;
    transition: all 0.5s ease-in-out;
}

/* Şekil Renkleri (Hafif Transparan) */
.bg-sari { background-color: rgba(255, 184, 28, 0.2); }
.bg-turkuaz { background-color: rgba(103, 195, 192, 0.2); }
.bg-pembe { background-color: rgba(232, 127, 160, 0.2); }

/* Hover'da şekil değiştirme efekti */
.feature-item:hover .blob-shape {
    border-radius: 40% 60% 30% 70% / 60% 40% 50% 60%;
}

/* Şeklin içindeki görsel */
.blob-image {
    width: 280px;
    height: 280px;
    background-size: cover;
    background-position: center;
    /* Görselin de organik durması için */
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Metinler */
.feature-item h3 {
    font-size: 24px;
    color: var(--body-text);
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--body-text);
    opacity: 0.9;
    padding: 0 15px;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .playful-features {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .blob-wrapper {
        width: 360px;
        height: 360px;
    }
    
    .blob-image {
        width: 280px;
        height: 280px;
    }
    .intro-playful { padding: 80px 0; }
    .intro-header-playful { margin-bottom: 60px; }
}

/* Scroll Reveal için temel ayarlar (Önceki adımdan) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Gecikme Sınıfları */
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Müdüre Anne Bölümü */
.director-section {
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

/* Dekoratif Arka Plan (Yumuşak Turkuaz bir leke) */
.director-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background-color: var(--bulut-beyazi);
    border-radius: 50%;
    z-index: 0;
}

.director-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 1;
}

/* Görsel Alanı */
.director-visual {
    flex: 1;
    position: relative;
}

.director-blob {
    width: 100%;
    aspect-ratio: 1/1;
    background-color: var(--bebek-mavisi);
    /* Organik Blob Şekli */
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(103, 195, 192, 0.2);
}

.director-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.director-visual:hover .director-image {
    transform: scale(1.05);
}

.decorative-circle {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    background-color: var(--secondary-sari);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.3;
}

/* Metin Alanı */
.director-info {
    flex: 1.2;
}

.info-badge {
    color: var(--yanak-pembesi);
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 15px;
    display: block;
}

.director-info h2 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.2;
    color: var(--body-text);
    margin-bottom: 30px;
}

.director-info .highlight {
    color: var(--primary-turkuaz);
}

.director-quote {
    border-left: 5px solid var(--secondary-sari);
    padding-left: 25px;
    margin-bottom: 35px;
}

.director-quote p {
    font-size: 22px;
    font-style: italic;
    color: var(--primary-turkuaz);
    font-weight: 500;
    line-height: 1.5;
}

.director-bio p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--body-text);
    margin-bottom: 20px;
    opacity: 0.9;
}

.director-signature {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
}

.director-signature .name {
    font-size: 24px;
    font-weight: 800;
    color: var(--body-text);
    font-family: 'Comfortaa', cursive;
}

.director-signature .title {
    font-size: 14px;
    color: var(--yanak-pembesi);
    font-weight: 700;
    margin-top: 5px;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .director-section{
    }
    .director-wrapper {
        flex-direction: column;
        gap: 50px;
    }
    
    .director-visual {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .director-info {
        text-align: center;
    }
    
    .director-quote {
        border-left: none;
        border-top: 3px solid var(--secondary-sari);
        padding-left: 0;
        padding-top: 20px;
    }
}
.vision-mission-alt {
    padding: 100px 0;
    background-color: var(--arka-plan-ferah);
    overflow: hidden;
}

.intro-centered {
    text-align: center;
    margin-bottom: 10px;
}

.eyebrow {
    color: var(--yanak-pembesi);
    font-weight: 800;
    letter-spacing: 4px;
    font-size: 12px;
    display: block;
    margin-bottom: 15px;
}

.text-turkuaz { color: var(--primary-turkuaz); }

/* Balon Düzeni */
.bubble-layout {
    display: flex;
    flex-direction: column;
    gap: 150px; /* Balonlar arası mesafe */
}

.bubble-group {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    justify-content: center;
}

.bubble-group.reverse {
    flex-direction: row-reverse;
}

/* Metin Balonu */
.bubble-text-area {
    width: 600px;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    border-radius: 50%; /* JS ile veya CSS ile asimetrik yapılacak */
    z-index: 1;
    position: relative;
    transition: all 0.5s ease;
}

/* Organik Şekiller */
.bg-turkuaz-blob {
    background-color: rgba(232, 127, 160, 0.5);
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    border: 2px dashed var(--primary-turkuaz);
}

.bg-sari-blob {
    background-color: #FFF9EB;
    border-radius: 70% 30% 46% 54% / 30% 39% 61% 70%;
    border: 2px dashed var(--secondary-sari);
}

.bubble-text-area h3 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--body-text);
    font-family: 'Comfortaa', cursive;
}

.bubble-text-area p {
    font-size: 20px;
    line-height: 1.8;
    color: var(--body-text);
}

/* Balon Görseli */
.bubble-image-wrapper {
    position: absolute;
    width: 450px;
    height: 450px;
    z-index: 2;
}

.img-blob-1 {
    top: -25%;
    transform: translate(0%,-25%);
}

.img-blob-2 {
    top: 50%;
    transform: translate(-100%,-50%);
}

.bubble-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 70% 30% 46% 54% / 30% 39% 61% 70%;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    border: 10px solid var(--bulut-beyazi);
    transition: transform 0.4s ease;
}

.bubble-group:hover .bubble-img {
    transform: scale(1.05) rotate(3deg);
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .bubble-layout { gap: 50px; }
    
    .bubble-group, .bubble-group.reverse {
        flex-direction: column;
        height: auto;
    }

    .bubble-text-area {
        width: 100%;
        height: auto;
        border-radius: 40px;
        padding: 50px 30px;
        border: none;
    }

    .bubble-image-wrapper {
        position: relative;
        width: 300px;
        height: 300px;
        right: auto;
        left: auto;
        top: auto;
        transform: translateY(-30px); /* Metin balonunun üzerine hafifçe çıksın */
    }

    .vision-mission-alt{
        padding-bottom: 20px;
    }
}

/* Genel Ayarlar */
.text-sari { color: var(--secondary-sari); }
.text-turkuaz { color: var(--primary-turkuaz); }

/* İçerik Sınırlayıcı (Container alternatifi) */
.space-limit {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Alternatif Alan Stilleri */
.space-modern-alt {
    padding: 140px 0;
    background-color: var(--bulut-beyazi);
    overflow: hidden;
    position: relative;
}

.space-alt-limit {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

.space-alt-flex {
    display: flex;
    align-items: center;
    gap: 100px;
}

/* Görsel Kompozisyon */
.space-alt-visuals {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.space-circle-deco {
    position: absolute;
    width: 500px;
    height: 500px;
    background-color: var(--arka-plan-ferah);
    border-radius: 50%;
    z-index: 0;
}

.img-pill {
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(103, 195, 192, 0.15);
    z-index: 2;
    border: 10px solid var(--bulut-beyazi);
}

.main-pill {
    width: 350px;
    height: 500px;
    border-radius: 200px; /* Kapsül Formu */
    transform: rotate(-5deg);
}

.sub-pill {
    width: 250px;
    height: 350px;
    border-radius: 150px;
    position: absolute;
    right: -20px;
    bottom: -40px;
    z-index: 3;
    transform: rotate(10deg);
}

.img-pill img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* m2 Rozeti */
.m2-badge {
    position: absolute;
    top: 20px;
    left: -20px;
    background-color: var(--secondary-sari);
    color: var(--body-text);
    padding: 25px;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 4;
    box-shadow: 0 15px 30px rgba(255, 184, 28, 0.3);
    transform: rotate(-15deg);
}

.m2-val { font-size: 38px; font-weight: 800; line-height: 1; }
.m2-unit { font-size: 12px; font-weight: 700; text-transform: uppercase; }

/* İçerik Alanı */
.space-alt-content {
    flex: 1;
}

.space-upper {
    color: var(--yanak-pembesi);
    font-weight: 800;
    letter-spacing: 4px;
    font-size: 13px;
    margin-bottom: 20px;
    display: block;
}

.space-alt-content h2 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 50px;
    color: var(--body-text);
}

.highlight-turkuaz { color: var(--primary-turkuaz); }

.space-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-box {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-num {
    font-size: 50px;
    font-weight: 900;
    line-height: 0.8;
    opacity: 0.3;
    font-family: 'Comfortaa', cursive;
}

.color-turkuaz { color: var(--primary-turkuaz); }
.color-sari { color: var(--secondary-sari); }
.color-pembe { color: var(--yanak-pembesi); }

.step-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--body-text);
}

.step-info p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--body-text);
    opacity: 0.8;
}

/* Mobil */
@media (max-width: 992px) {
    .space-alt-flex {
        flex-direction: column;
        gap: 80px;
    }
    
    .space-alt-visuals {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .main-pill { width: 250px; height: 350px; }
    .sub-pill { width: 180px; height: 250px; right: 0; }
    
    .space-alt-content { text-align: center; }
    .step-box { flex-direction: column; align-items: center; }
}

/* KURUCUMUZ STİLLERİ */
.founder-section {
    padding: 120px 0;
    background-color: var(--arka-plan-ferah);
    position: relative;
}

.founder-flex {
    display: flex;
    align-items: center;
    gap: 100px;
}

.founder-image-area {
    flex: 1;
    position: relative;
    max-width: 450px;
}

.arch-frame {
    width: 100%;
    height: 550px;
    border-radius: 250px 250px 40px 40px; /* Kemer formu */
    overflow: hidden;
    border: 15px solid var(--bulut-beyazi);
    box-shadow: 0 30px 60px rgba(103, 195, 192, 0.15);
}

.arch-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-experience-tag {
    position: absolute;
    bottom: 40px;
    right: -30px;
    background-color: var(--secondary-sari);
    padding: 20px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.exp-year {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--body-text);
}

.exp-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--body-text);
}

.founder-content { flex: 1.2; }

.founder-sub {
    color: var(--yanak-pembesi);
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.founder-content h3 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 30px;
}

.story-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--body-text);
}

.founder-motto {
    margin-top: 40px;
    padding: 30px;
    background-color: var(--bulut-beyazi);
    border-radius: 20px;
    border-left: 6px solid var(--primary-turkuaz);
    font-size: 20px;
    font-style: italic;
    color: var(--primary-turkuaz);
    font-weight: 500;
}

/* Mobil */
@media (max-width: 992px) {
    .space-grid, .founder-flex {
        flex-direction: column;
        gap: 60px;
    }
    
    .space-limit { padding: 0 20px; }
    
    .founder-image-area {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .arch-frame { height: 400px; }
    
    .space-visuals { grid-template-columns: 1fr; }
    .sub-img-box { display: none; } /* Mobilde sadelik için küçük resimleri gizliyoruz */
}

/* Akademi ve Rehberlik İçin Özel Stil Blokları */
.edu-wrapper {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 30px;
}

.edu-academy-section {
    padding: 40px 0;
    background-color: var(--arka-plan-ferah);
}

.edu-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px auto;
}

.edu-pre-title {
    color: var(--yanak-pembesi);
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 13px;
    display: block;
    margin-bottom: 15px;
}

/* Eğitim Kartları Grid */
.edu-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.edu-card {
    width: 350px;
    margin: 20px;
    background-color: var(--bulut-beyazi);
    border-radius: 40px;
    padding: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.edu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(103, 195, 192, 0.1);
}

/* İkon Yerine Blob Fotoğraf */
.edu-blob-frame {
    position: relative;
    width: 100%;
    height: 220px;
    margin-bottom: 30px;
}

.edu-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    position: relative;
    z-index: 2;
}

.edu-blob-shape {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.5;
}

.bg-turkuaz-soft { background-color: var(--primary-turkuaz); }
.bg-sari-soft { background-color: var(--secondary-sari); }
.bg-pembe-soft { background-color: var(--yanak-pembesi); }

/* Kart İçerik Etiketleri */
.edu-card-content { padding: 10px; }

.edu-card-content span {
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 15px;
    display: inline-block;
}

.edu-label-turkuaz { background-color: rgba(103, 195, 192, 0.1); color: var(--primary-turkuaz); }
.edu-label-sari { background-color: rgba(255, 184, 28, 0.1); color: var(--secondary-sari); }
.edu-label-pembe { background-color: rgba(232, 127, 160, 0.1); color: var(--yanak-pembesi); }

.edu-card-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--body-text);
}

.edu-card-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--body-text);
    opacity: 0.8;
}

/* REHBERLİK STİLLERİ */
.edu-guidance-section {
    padding-bottom: 120px;
    background-color: var(--arka-plan-ferah);
}

.edu-guidance-box {
    background-color: var(--primary-turkuaz);
    border-radius: 60px;
    display: flex;
    overflow: hidden;
    color: var(--bulut-beyazi);
    min-height: 450px;
}

.edu-guidance-content {
    flex: 1.2;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.guidance-tag {
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 12px;
    margin-bottom: 20px;
    color: var(--secondary-sari);
}

.edu-guidance-content h3 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--bulut-beyazi);
}

.edu-guidance-content p {
    font-size: 20px;
    line-height: 1.8;
    opacity: 0.95;
    font-style: italic;
}

.edu-guidance-image {
    flex: 1;
}

.edu-guidance-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobil */
@media (max-width: 992px) {
    .edu-grid { grid-template-columns: 1fr; }
    .edu-guidance-box { flex-direction: column; }
    .edu-guidance-content { padding: 50px 30px; text-align: center; }
    .edu-guidance-image { height: 300px; }
}

/* Yaşam Alanı Stilleri */
.campus-life-section {
    padding: 120px 0;
    background-color: var(--bulut-beyazi);
}

.campus-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

.campus-intro {
    text-align: center;
    margin-bottom: 80px;
}

.campus-tag {
    color: var(--yanak-pembesi);
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 13px;
    display: block;
    margin-bottom: 15px;
}

.campus-intro h2 {
    font-size: 42px;
    color: var(--body-text);
}

.garden-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.garden-card {
    position: relative;
}

.garden-img-box {
    width: 100%;
    height: 600px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

/* Kemer Formları */
.arch-top { border-radius: 300px 300px 30px 30px; }
.arch-bottom { border-radius: 30px 30px 300px 300px; }

.garden-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.garden-card:hover .garden-img-box img {
    transform: scale(1.08);
}

.floating-info {
    position: absolute;
    bottom: -40px;
    left: 0%;
    right: 0%;
    padding: 40px;
    border-radius: 30px;
    color: var(--body-text);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 2;
}

.bg-sari { background-color: var(--secondary-sari); }
.bg-turkuaz { background-color: var(--bebek-mavisi); } /* Daha yumuşak turkuaz */

.floating-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-family: 'Comfortaa', cursive;
}

.floating-info p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Beslenme Bölümü Stilleri */
.nutrition-section {
    height: 100vh;
    min-height: 800px;
    position: relative;
}

.nutrition-bg-image {
    width: 100%;
    height: 100%;
    background-image: url('img/beslenme.jpg');
    background-size: cover;
    background-position: center;
    /*background-attachment: fixed;  Parallax efekti */
    display: flex;
    align-items: center;
}

.meal-wrap {
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
}

.nutrition-card {
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    max-width: 550px;
    padding: 80px 60px;
    border-radius: 60px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.2);
}

.meal-badge {
    color: var(--primary-turkuaz);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
}

.nutrition-header h2 {
    font-size: 38px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.emphasize {
    color: var(--yanak-pembesi);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 40px;
}

.meal-plan {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.meal-item {
    display: flex;
    align-items: center;
    gap: 25px;
}

.meal-time {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-sari);
    font-family: 'Comfortaa', cursive;
    line-height: 1;
}

.meal-desc h4 {
    font-size: 18px;
    color: var(--body-text);
    margin-bottom: 5px;
}

.meal-desc p {
    font-size: 15px;
    color: var(--body-text);
    opacity: 0.8;
}

/* Mobil */
@media (max-width: 992px) {
    .garden-grid { grid-template-columns: 1fr; gap: 80px; }
    .garden-img-box { height: 400px; }
    .nutrition-section { padding: 80px 0; }
    .nutrition-card { padding: 40px 30px; border-radius: 40px; }
    .floating-info { position: relative; bottom: 0; left: 0; right: 0; margin-top: -30px; }
}

/* İletişim Bölümü Stilleri */
.contact-area {
    padding: 120px 0;
    background-color: var(--arka-plan-ferah);
    position: relative;
}

.contact-limit {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-grid {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info { flex: 1; }
.contact-form-side { flex: 1; }

.contact-tag {
    color: var(--yanak-pembesi);
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 13px;
    display: block;
    margin-bottom: 15px;
}

.contact-info h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 40px;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 50px;
}

.info-label {
    display: block;
    font-weight: 800;
    font-size: 12px;
    color: var(--primary-turkuaz);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.info-item p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--body-text);
}

.action-btns {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.call-btn, .whatsapp-btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s ease;
}

.call-btn {
    background-color: var(--primary-turkuaz);
    color: white;
}

.whatsapp-btn {
    background-color: transparent;
    border: 2px solid var(--primary-turkuaz);
    color: var(--primary-turkuaz);
}

.call-btn:hover { background-color: var(--secondary-sari); color: var(--body-text); }
.whatsapp-btn:hover { background-color: var(--primary-turkuaz); color: white; }

/* Harita Alanı */
.map-container {
    width: 100%;
    height: 300px;
    border-radius: 40px;
    overflow: hidden;
    background-color: var(--bebek-mavisi);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.map-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

/* Form Kartı */
.form-card {
    background-color: var(--bulut-beyazi);
    padding: 60px;
    border-radius: 60px;
    box-shadow: 0 30px 60px rgba(103, 195, 192, 0.1);
}

.form-card h3 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--body-text);
}

.form-card p {
    margin-bottom: 40px;
    color: var(--body-text);
    opacity: 0.7;
    line-height: 1.6;
}

.ayisigi-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 800;
    font-size: 11px;
    color: var(--primary-turkuaz);
    letter-spacing: 1px;
}

.form-group input, .form-group textarea {
    padding: 15px 25px;
    border-radius: 20px;
    border: 2px solid var(--arka-plan-ferah);
    background-color: var(--arka-plan-ferah);
    font-family: inherit;
    font-size: 15px;
    color: var(--body-text);
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    background-color: white;
    border-color: var(--bebek-mavisi);
}

.form-group textarea { height: 120px; resize: none; }

.submit-btn {
    margin-top: 20px;
    padding: 20px;
    background-color: var(--secondary-sari);
    color: var(--body-text);
    border: none;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--primary-turkuaz);
    color: white;
    transform: translateY(-3px);
}

/* Mobil */
@media (max-width: 992px) {
    .contact-grid { flex-direction: column; gap: 60px; }
    .contact-info { text-align: center; }
    .action-btns { justify-content: center; flex-direction: column; }
    .form-card { padding: 40px 25px; border-radius: 40px; }
}

/* Footer Ana Stilleri */
.main-footer {
    background-color: var(--bulut-beyazi);
    padding: 100px 0 40px 0;
    border-top: 1px solid rgba(103, 195, 192, 0.1);
}

.footer-limit {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* Logo Alanı */
.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img{
    height: 240px;
    width: auto;
}

.f-logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-turkuaz);
    letter-spacing: -0.5px;
}

.f-logo-sub {
    font-size: 12px;
    color: var(--secondary-sari);
    font-weight: 700;
}

.footer-slogan {
    font-size: 15px;
    line-height: 1.7;
    color: var(--body-text);
    opacity: 0.8;
    max-width: 300px;
}

/* Başlıklar */
.footer-title {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: var(--yanak-pembesi);
    letter-spacing: 2px;
    margin-bottom: 30px;
}

/* Liste Linkleri */
.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    text-decoration: none;
    color: var(--body-text);
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-turkuaz);
}

/* Sosyal Medya Metin Linkleri */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-item {
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    color: var(--body-text);
    padding-bottom: 5px;
    border-bottom: 2px solid var(--arka-plan-ferah);
    width: fit-content;
    transition: all 0.3s ease;
}

.social-item:hover {
    color: var(--primary-turkuaz);
    border-bottom-color: var(--primary-turkuaz);
}

/* Saatler */
.hours-box {
    background-color: var(--arka-plan-ferah);
    padding: 20px;
    border-radius: 20px;
    display: inline-block;
}

.hours-box .days {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: var(--primary-turkuaz);
    margin-bottom: 5px;
}

.hours-box .time {
    font-size: 18px;
    font-weight: 700;
    color: var(--body-text);
}

/* Footer Alt Kısım */
.footer-bottom {
    padding-top: 40px;
}

.bottom-line {
    width: 100%;
    height: 1px;
    background-color: var(--arka-plan-ferah);
    margin-bottom: 30px;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--body-text);
    opacity: 0.6;
}

.legal-links {
    display: flex;
    gap: 15px;
}

.legal-links a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.legal-links a:hover { color: var(--primary-turkuaz); }

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo, .social-item, .footer-slogan {
        align-items: center;
        margin: 0 auto 20px auto;
    }
    
    .bottom-flex {
        flex-direction: column;
        gap: 20px;
    }
}

.gallery-bento-section {
    padding: 100px 0;
    background-color: rgba(232, 127, 160, 0.2);
}

.bento-limit {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bento-header {
    text-align: center;
    margin-bottom: 60px;
}

.bento-tag {
    color: var(--yanak-pembesi);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}

.bento-header h2 {
    font-size: 42px;
    color: var(--body-text);
}

/* Bento Grid Yapısı */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 eşit sütun */
    grid-auto-rows: 240px; /* Sabit satır yüksekliği "kalıp" hissini verir */
    gap: 20px;
}

.bento-item {
    position: relative;
    border-radius: 30px; /* Tüm kutularda aynı yumuşaklık: Kalıp etkisi */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Kutu Boyutlandırmaları (Asimetriyi kalıba uyduran kısım) */
.bento-big {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-wide {
    grid-column: span 2;
}

.bento-tall {
    grid-row: span 2;
}

/* Görsel Yerleşimi */
.bento-img-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.bento-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Overlay (Üzerine gelince belirir) */
.bento-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(103, 195, 192, 0.9));
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: all 0.4s ease;
}

.bento-overlay span {
    color: white;
    font-weight: 700;
    font-size: 18px;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.bento-item:hover .bento-overlay { opacity: 1; }
.bento-item:hover .bento-overlay span { transform: translateY(0); }
.bento-item:hover img { transform: scale(1.05); }

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    .bento-big, .bento-wide, .bento-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Bulut Konteyner Ayarları */
.cloud-animation-container {
    position: fixed;
    top: 15%; /* Yukarıdan uzaklık */
    right: 5%; /* Sağdan uzaklık */
    width: 120px; /* Bulutun büyüklüğü */
    z-index: 999;
    pointer-events: none; /* Üzerine tıklanmasın, alttaki linklere engel olmasın */
    opacity: 0.8;
}

/* SVG Bulut Tasarımı */
.svg-cloud {
    fill: var(--bulut-beyazi);
    /* Logodaki o 3D derinlik hissi için yumuşak bir gölge */
    filter: drop-shadow(0 10px 15px rgba(103, 195, 192, 0.2));
    animation: floatingCloud 6s ease-in-out infinite;
}

/* Süzülme Animasyonu (Floating Effect) */
@keyframes floatingCloud {
    0% {
        transform: translateY(0) translateX(0) scale(1);
    }
    33% {
        transform: translateY(-15px) translateX(10px) scale(1.02);
    }
    66% {
        transform: translateY(5px) translateX(-5px) scale(0.98);
    }
    100% {
        transform: translateY(0) translateX(0) scale(1);
    }
}

/* Mobil Cihazlarda Bulutu Küçültelim veya Gizleyelim */
@media (max-width: 768px) {
    .cloud-animation-container {
        width: 80px;
        top: 10%;
        right: 2%;
        opacity: 0.6;
    }
}