/* Genel Stil - Masaüstünde Eğlenceli Font */
body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
}

/* Mobil için Sade Font */
@media (max-width: 768px) {
    body, .kids-title, .kids-subtitle, .about-area .content h2, .about-area .content p {
        font-family: Arial, sans-serif !important; /* Mobilde sade font */
    }
    /* Menü ve Footer Eğlenceli Font */
    .menu, .menu-item, nav ul li a, .navbar-nav .nav-link {
        font-family: 'Comic Sans MS', cursive, sans-serif !important; /* Menü mobilde eğlenceli */
    }
    /* Footer Eğlenceli Font */
    footer, footer * {
        font-family: 'Comic Sans MS', cursive, sans-serif !important; /* Footer ve tüm alt elemanları */
    }
}

/* Başlık Alanı */
.breadcrumb-area {
    background-image: url('https://yoncasungur.com/tema/genel/uploads/logo/kids.webp');
    background-size: cover;
    background-position: center;
    padding: 140px 0;
    position: relative;
    color: #333;
}

/* Başlık */
.kids-title {
    font-size: 2.5em;
    color: #ff5722;
    position: relative;
    z-index: 2;
}

.kids-subtitle {
    font-size: 1.2em;
    color: #ff9800;
    position: relative;
    z-index: 2;
}

/* Çocuk Temalı Yuvarlak Balonlar */
.fun-animations {
    position: absolute;
    top: 50%; /* Görselin ortasında olacak şekilde ayarlandı */
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 20px;
    z-index: 3;
}

.animated-circle-left, .animated-circle-right {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    width: 50px;
    height: 50px;
    background-color: #ff9800;
    border-radius: 50%;
    animation: bounce 3s infinite; /* Hareketli animasyon */
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.animated-circle-left {
    transform: translateX(-50px);
}

.animated-circle-right {
    transform: translateX(50px);
}

/* Orta Alan Yazılar */
.about-area .content h2 {
    color: #ff9800;
}

.about-area .content p {
    color: #4caf50;
}
