/* ============================================
   BİLGE ÇOCUK OKULLARI - ANA STİL DOSYASI
   ============================================ */

:root {
    --primary: #1a3a5c;        /* Koyu lacivert */
    --secondary: #e8b830;      /* Altın sarısı */
    --accent: #2ecc71;         /* Yeşil vurgu */
    --light: #f8f9fa;
    --dark: #212529;
    --text: #495057;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    line-height: 1.6;
}

/* ========== HEADER ========== */
.main-header {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

.main-header .navbar {
    padding: 0;
}

.navbar-brand img {
    max-height: 60px;
}

.navbar-nav .nav-link {
    color: var(--primary) !important;
    font-weight: 600;
    padding: 15px 20px !important;
    font-size: 15px;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary) !important;
}

/* CTA Buton */
.btn-cta {
    background: var(--secondary);
    color: var(--primary);
    font-weight: 700;
    padding: 12px 25px;
    border-radius: 50px;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.btn-cta:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(26,58,92,0.3);
}

/* ========== MEGA MENU (Tekfen İlhamlı) ========== */
.mega-dropdown {
    position: static !important;
}

.mega-menu {
    width: 100%;
    left: 0;
    right: 0;
    padding: 30px 0;
    border: none;
    border-radius: 0;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    margin-top: 10px;
    border-top: 3px solid var(--secondary);
}

.mega-menu h6 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 16px;
}

.mega-menu a {
    display: block;
    color: var(--text);
    text-decoration: none;
    padding: 5px 0;
    font-size: 14px;
    transition: color 0.3s;
}

.mega-menu a:hover {
    color: var(--secondary);
}

.menu-icon-3d {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.2));
    transition: transform 0.3s;
}

.menu-icon-3d:hover {
    transform: scale(1.1) rotateY(10deg);
}

/* ========== MAIN ========== */
main {
    min-height: 60vh;
}

/* ========== FOOTER ========== */
.main-footer {
    background: var(--primary);
    color: #fff;
    padding: 60px 0 0;
    margin-top: 60px;
}

.main-footer h5 {
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
}

.main-footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #ccc;
}

.footer-contact li i {
    color: var(--secondary);
    margin-top: 5px;
    width: 16px;
}

/* Sosyal Medya İkonları */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
}

/* E-Bülten Formu */
.newsletter-form .input-group {
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-form .form-control {
    border-radius: 50px 0 0 50px;
    border: none;
    padding: 12px 20px;
}

.newsletter-form .btn-cta {
    border-radius: 0 50px 50px 0;
    padding: 12px 20px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 40px;
    font-size: 14px;
    color: #999;
}

.back-to-top {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.back-to-top:hover {
    color: #fff;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .mega-menu {
        padding: 15px 0;
    }
    
    .mega-menu .row > div {
        margin-bottom: 15px;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 10px;
    }
}


















/* ============================================
   ÇOCUK DOSTU EK STİLLER
   ============================================ */

/* ========== HERO KIDS ========== */
.hero-kids {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #ffd93d 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 0%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 50%; }
}

/* Uçan şekiller */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    font-size: 30px;
    animation: float 6s ease-in-out infinite;
    opacity: 0.7;
}

.shape-1 { top: 10%; left: 5%; animation-delay: 0s; }
.shape-2 { top: 20%; right: 10%; animation-delay: 1s; font-size: 40px; }
.shape-3 { top: 60%; left: 15%; animation-delay: 2s; font-size: 25px; }
.shape-4 { bottom: 20%; right: 20%; animation-delay: 0.5s; }
.shape-5 { top: 15%; left: 50%; animation-delay: 1.5s; font-size: 35px; }
.shape-6 { bottom: 30%; left: 30%; animation-delay: 3s; }
.shape-7 { top: 40%; right: 5%; animation-delay: 2.5s; font-size: 28px; }
.shape-8 { bottom: 10%; left: 60%; animation-delay: 1.8s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Hero içeriği */
.hero-text {
    color: #fff;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 14px;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.text-yellow {
    color: #FFD93D;
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.hero-buttons .btn-cta {
    background: #FFD93D;
    color: #333;
    font-weight: 800;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 18px;
    box-shadow: 0 8px 25px rgba(255,217,61,0.4);
}

.hero-buttons .btn-outline-light {
    border: 2px solid #fff;
    border-radius: 50px;
    padding: 14px 30px;
    font-weight: 700;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,217,61,0.6); }
    70% { box-shadow: 0 0 0 20px rgba(255,217,61,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,217,61,0); }
}

/* Maskotlar */
.mascots {
    margin-top: 30px;
}

.mascot {
    font-size: 40px;
    display: inline-block;
    animation: wiggle 3s ease-in-out infinite;
    margin-right: 10px;
}

.mascot:nth-child(2) { animation-delay: 0.5s; }
.mascot:nth-child(3) { animation-delay: 1s; }
.mascot:nth-child(4) { animation-delay: 1.5s; }

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-5deg) scale(1.1); }
    75% { transform: rotate(5deg) scale(1.1); }
}

/* Hero İllüstrasyon */
.hero-illustration {
    text-align: center;
    position: relative;
    z-index: 2;
}

.illustration-circle {
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255,255,255,0.3);
    animation: rotate 20s linear infinite;
}

.main-emoji {
    font-size: 80px;
    animation: none;
}

.orbit {
    position: absolute;
    font-size: 30px;
    animation: orbitFloat 4s ease-in-out infinite;
}

.orbit-1 { top: -10px; right: 20px; animation-delay: 0s; }
.orbit-2 { bottom: 10px; left: -10px; animation-delay: 1.5s; }
.orbit-3 { top: 40px; left: -30px; animation-delay: 3s; }

@keyframes orbitFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(5px, -10px) scale(1.2); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Dalga efekti */
.wave-divider {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 3;
}

.wave-divider svg {
    width: 100%;
    height: 80px;
}

/* ========== HIZLI BİLGİ KARTLARI ========== */
.quick-info {
    padding: 60px 0;
    background: #f8f9fa;
}

.info-card {
    text-align: center;
    padding: 40px 25px;
    border-radius: 20px;
    background: #fff;
    transition: all 0.4s;
    cursor: pointer;
    border: 2px solid transparent;
}

.card-emoji {
    font-size: 50px;
    margin-bottom: 15px;
}

.info-card h4 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.info-card p {
    color: #666;
    margin: 0;
}

.card-blue:hover { border-color: #667eea; box-shadow: 0 15px 40px rgba(102,126,234,0.2); }
.card-green:hover { border-color: #4ECDC4; box-shadow: 0 15px 40px rgba(78,205,196,0.2); }
.card-orange:hover { border-color: #FF8C42; box-shadow: 0 15px 40px rgba(255,140,66,0.2); }

.bounce-on-hover:hover {
    transform: translateY(-10px);
}

/* ========== İSTATİSTİK KUTULARI ========== */
.stats-section {
    padding: 60px 0;
    background: #fff;
}

.stat-box {
    background: #fff;
    padding: 30px 15px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.stat-emoji {
    font-size: 40px;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-weight: 600;
    margin: 0;
}

/* ========== EĞİTİM KADEMELERİ ========== */
.kademeler-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 14px;
}

.section-header h2 {
    font-weight: 800;
    color: #333;
    font-size: 36px;
    margin-bottom: 10px;
}

.section-header p {
    color: #666;
    font-size: 18px;
}

.kademe-card {
    text-align: center;
    padding: 40px 25px;
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: all 0.4s;
    cursor: pointer;
    border: 3px solid transparent;
}

.kademe-card:hover {
    transform: translateY(-15px);
    border-color: var(--card-color);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.kademe-icon-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.kademe-icon {
    font-size: 45px;
}

.kademe-card h4 {
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.kademe-card p {
    color: #666;
    margin-bottom: 15px;
}

.kademe-link {
    color: #667eea;
    font-weight: 700;
    text-decoration: none;
}

.kademe-link span {
    transition: transform 0.3s;
    display: inline-block;
}

.kademe-card:hover .kademe-link span {
    transform: translateX(5px);
}

/* ========== NEDEN BİZ ========== */
.neden-biz-section {
    padding: 80px 0;
    background: #fff;
}

.neden-card {
    text-align: center;
    padding: 35px 20px;
    border-radius: 20px;
    background: #f8f9fa;
    transition: all 0.3s;
}

.neden-card:hover {
    background: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.neden-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.neden-card h5 {
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.neden-card p {
    color: #666;
    margin: 0;
}

/* ========== VELİ YORUMLARI ========== */
.veli-yorumlari {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea15, #f093fb15);
}

.yorum-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s;
}

.yorum-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.yorum-emoji {
    font-size: 50px;
    margin-bottom: 15px;
}

.yorum-text {
    font-size: 16px;
    color: #555;
    font-style: italic;
    line-height: 1.6;
}

.yorum-sahip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.cocuk-avatar {
    font-size: 35px;
}

/* ========== CTA ========== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
}

.cta-content .big-emoji {
    font-size: 70px;
    display: block;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.cta-content h2 {
    font-weight: 800;
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-illustration {
        margin-top: 30px;
    }
    
    .illustration-circle {
        width: 180px;
        height: 180px;
    }
    
    .main-emoji {
        font-size: 50px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 28px;
    }
}


















/* ============================================
   HABERLER & DUYURULAR STİLLERİ
   ============================================ */

/* ========== HABERLER BÖLÜMÜ ========== */
.haberler-section {
    padding: 60px 0;
    background: #fff;
}

.section-header-left {
    margin-bottom: 35px;
}

.section-header-left .section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 13px;
}

.section-header-left h3 {
    font-weight: 800;
    color: #333;
    font-size: 28px;
    margin-bottom: 5px;
}

.section-header-left p {
    color: #888;
    margin: 0;
}

/* Haber Grid */
.haber-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.haber-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.haber-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.haber-gorsel {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea20, #764ba220);
}

.haber-gorsel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.haber-card:hover .haber-gorsel img {
    transform: scale(1.1);
}

.haber-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
}

.haber-kategori {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.haber-kategori.haber {
    background: #667eea;
}

.haber-kategori.etkinlik {
    background: #f5576c;
}

.haber-icerik {
    padding: 20px;
}

.haber-tarih {
    font-size: 12px;
    color: #999;
    display: block;
    margin-bottom: 8px;
}

.haber-icerik h4 {
    font-weight: 700;
    font-size: 17px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.haber-icerik p {
    color: #777;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.haber-link {
    color: #667eea;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
}

.haber-link span {
    transition: transform 0.3s;
    display: inline-block;
}

.haber-card:hover .haber-link span {
    transform: translateX(5px);
}

/* ========== DUYURULAR BÖLÜMÜ ========== */
.duyurular-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.duyuru-listesi {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.duyuru-item {
    background: #fff;
    padding: 18px 20px;
    border-radius: 15px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    box-shadow: 0 3px 15px rgba(0,0,0,0.04);
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.duyuru-item:hover {
    transform: translateX(5px);
    border-left-color: #667eea;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.duyuru-icon {
    font-size: 30px;
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: #f0f0ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.duyuru-icerik h5 {
    font-weight: 700;
    font-size: 15px;
    color: #333;
    margin-bottom: 4px;
}

.duyuru-icerik p {
    color: #777;
    font-size: 13px;
    margin-bottom: 4px;
}

.duyuru-tarih {
    color: #aaa;
}

/* Yemek Listesi */
.yemek-listesi {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.04);
}

.yemek-listesi h5 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.yemek-gunler {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.yemek-gun {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s;
}

.yemek-gun:hover {
    background: #667eea10;
}

.yemek-gun strong {
    color: #667eea;
    font-size: 14px;
    min-width: 30px;
}

.yemek-gun small {
    color: #666;
    font-size: 12px;
}

/* Boş mesaj */
.bos-mesaj {
    text-align: center;
    padding: 50px 20px;
    grid-column: 1 / -1;
}

.bos-mesaj span {
    font-size: 60px;
    display: block;
    margin-bottom: 15px;
}

.bos-mesaj p {
    color: #999;
    font-size: 16px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .haber-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .haber-grid {
        grid-template-columns: 1fr;
    }
}





/* Hero Video Arka Plan */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.hero-kids {
    position: relative;
}