/* 
   Diyabetle Yaşam Derneği - Çocuklar Teması
   Tüm site için eğlenceli ve çocuk dostu tasarım
*/

:root {
    /* Ana Renkler */
    --primary-color: #41b3d3;    /* Parlak mavi */
    --secondary-color: #ffc857;  /* Sarı */
    --tertiary-color: #f67280;   /* Pembe */
    --quaternary-color: #8fd14f; /* Yeşil */
    --accent-color: #9b5de5;     /* Mor */
    
    /* Arka Plan */
    --light-bg: #f0f9ff;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --light-gray: #e5e5e5;
    
    /* Border Radius */
    --border-radius-sm: 0.5rem;
    --border-radius-md: 1rem;
    --border-radius-lg: 1.5rem;
}

/* Genel Stiller */
html, body {
    height: 100%;
}

body {
    font-family: 'Comic Neue', 'Baloo 2', 'Poppins', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    background-color: var(--light-bg);
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2341b3d3' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

/* Carousel Düzenlemeleri */
#heroSlider .carousel-item {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    margin-bottom: 0;
}

#heroSlider .carousel-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#heroSlider .carousel-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#heroSlider .carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

#heroSlider .carousel-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
}

#heroSlider .text-panel {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    max-width: 550px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease-in-out;
    position: relative;
    margin: 0 auto;
}

#heroSlider .text-panel h2 {
    color: var(--primary-color);
    text-shadow: 1px 1px 0 rgba(0,0,0,0.05);
}

#heroSlider .text-panel p {
    color: var(--dark-gray);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

#heroSlider .carousel-control-prev,
#heroSlider .carousel-control-next {
    z-index: 5;
    width: 5%;
}

#heroSlider .carousel-indicators {
    z-index: 5;
}

@media (max-width: 768px) {
    #heroSlider .carousel-item {
        height: 400px;
    }
    
    #heroSlider .text-panel {
        max-width: 90%;
        padding: 1.5rem;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

main {
    flex: 1 0 auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Baloo 2', 'Comic Neue', sans-serif;
    color: var(--primary-color);
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #3a9ebe;
}

/* Resimli Liste Maklerleri */
ul.picture-list {
    list-style: none;
    padding-left: 5px;
}

ul.picture-list li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    margin-bottom: 0.5rem;
}

ul.picture-list li:before {
    content: "🍎";
    position: absolute;
    left: 0;
    top: 0.5rem;
}

ul.picture-list li:nth-child(2n):before {
    content: "🥦";
}

ul.picture-list li:nth-child(3n):before {
    content: "🥕";
}

ul.picture-list li:nth-child(4n):before {
    content: "🍇";
}

/* Metni Daha Okunaklı Yapma */
.bigger-text {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Erişilebilir Renk Kontrastları */
.high-contrast {
    color: #000;
    background-color: #fff;
    border: 2px solid #000;
}

/* Eğlenceli Vurgular */
.highlight-text {
    background: linear-gradient(120deg, rgba(255, 200, 87, 0.2) 0%, rgba(255, 200, 87, 0.2) 100%);
    padding: 0 5px;
    border-radius: 4px;
}

/* Yazı Boyutu Ayarlama Butonları */
.text-size-controls {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: white;
    border-radius: 50px;
    padding: 5px 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.text-size-controls button {
    border: none;
    background: none;
    font-size: 20px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    margin: 0 2px;
}

.text-size-controls button:hover {
    background-color: var(--light-gray);
}

/* Bootstrap Temel Renk Değişikliği */
.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 30px;
    padding: 10px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 0 rgba(0,0,0,0.1);
    transition: all 0.2s;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #3a9ebe;
    border-color: #3a9ebe;
    transform: translateY(-3px);
    box-shadow: 0 7px 0 rgba(0,0,0,0.1);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 0 rgba(0,0,0,0.1);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 30px;
    padding: 10px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 0 rgba(0,0,0,0.05);
    transition: all 0.2s;
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 7px 0 rgba(0,0,0,0.05);
}

.btn-outline-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 0 rgba(0,0,0,0.05);
}

/* Resimler için özel stiller */
img {
    border-radius: var(--border-radius-md);
}

.img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    border: 3px solid var(--primary-color);
}

.img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(65, 179, 211, 0.8);
    color: white;
    padding: 10px;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s;
}

.img-wrapper:hover .img-caption {
    background-color: var(--secondary-color);
    color: var(--dark-gray);
}

/* İnteraktif Kartlar */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 200px;
    perspective: 1000px;
    margin-bottom: 30px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: var(--border-radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.flip-card-front {
    background-color: var(--primary-color);
    color: white;
}

.flip-card-back {
    background-color: var(--secondary-color);
    color: var(--dark-gray);
    transform: rotateY(180deg);
}

/* Kartlar */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: var(--border-radius-md);
    border: none;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    margin-bottom: 25px;
}

.card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.card .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.card .card-img-top {
    transition: all 0.3s;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.shadow-sm {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Özel Bileşenler */
.feature-icon {
    font-size: 1.5rem;
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.hero {
    padding: 2rem 0;
}

.hero h1 {
    font-weight: 700;
    color: var(--primary-color);
}

.hero .lead {
    color: var(--medium-gray);
    font-size: 1.25rem;
}

.bg-primary.bg-opacity-10 {
    background-color: rgba(65, 179, 211, 0.1) !important;
}

.badge {
    font-weight: 500;
    padding: 0.5em 0.75em;
    border-radius: 30px;
}

/* Footer stilleri */
footer {
    background-color: #fff;
    border-top: 2px solid var(--light-gray);
    padding: 2rem 0;
    margin-top: auto;
    flex-shrink: 0;
}

.sponsor-logos-container {
    margin: 0 auto;
}

.sponsor-logo {
    padding: 15px;
    margin: 0 10px;
}

.sponsor-logo img {
    max-height: 60px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.sponsor-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Footer linkleri */
.footer-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: var(--tertiary-color);
}

/* Navbar Stili - Modern Tasarım */
.navbar {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(65, 179, 211, 0.2);
    padding: 0;
    min-height: auto;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.navbar .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    padding: 1.2rem 0;
}

.navbar-brand {
    margin: 0;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    order: 1;
}

.navbar-brand img {
    height: 85px;
    max-height: 85px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-collapse {
    flex: 0 0 auto;
    order: 3;
}

.navbar-nav {
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.navbar-nav .nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #495057;
    text-transform: none;
    letter-spacing: 0;
    position: relative;
    margin: 0 0.2rem;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(65, 179, 211, 0.1);
    color: #41b3d3;
    transform: translateY(-1px);
}

.navbar-nav .nav-link.active {
    background-color: #41b3d3;
    color: white;
    box-shadow: 0 2px 8px rgba(65, 179, 211, 0.3);
}

.navbar-toggler {
    position: relative;
    top: auto;
    right: auto;
    z-index: auto;
    border: 2px solid #41b3d3;
    border-radius: 8px;
    padding: 0.4rem 0.6rem;
    order: 2;
    background-color: transparent;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(65, 179, 211, 0.25);
}

/* Dropdown menü stilleri */
.dropdown-menu {
    border: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 0.5rem;
    margin-top: 0.5rem;
    background: white;
    min-width: 200px;
}

.dropdown-item {
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    color: #495057;
}

.dropdown-item:hover {
    background-color: rgba(65, 179, 211, 0.1);
    color: #41b3d3;
    transform: none;
}

/* Mobil responsive */
@media (max-width: 991.98px) {
    .navbar .container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .navbar-brand {
        order: 1;
    }
    
    .navbar-toggler {
        order: 2;
    }
    
    .navbar-collapse {
        order: 3;
        width: 100%;
        margin-top: 1rem;
        background-color: white;
        border-radius: 12px;
        padding: 1rem;
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    .navbar-nav .nav-link {
        text-align: center;
        padding: 0.8rem 1rem;
        margin: 0;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        margin-top: 0.5rem;
        box-shadow: none;
        border: 1px solid rgba(0,0,0,0.1);
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        height: 65px;
        max-height: 65px;
    }
    
    .navbar .container {
        padding: 0.8rem 0;
    }
}

/* Desktop'ta navbar collapse'ı her zaman göster */
@media (min-width: 992px) {
    .navbar-collapse {
        display: flex;
        flex-basis: auto;
    }
    
    .navbar-toggler {
        display: none;
    }
}

/* Animasyonlar */
.bounce {
    /* animation: bounce 2s infinite; */
    transition: all 0.3s ease;
}

.bounce:hover {
    animation: bounce 1s ease;
}

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

.wobble {
    /* animasyonu devre dışı bırakıyorum */
    /* animation: wobble 3s infinite; */
    color: var(--primary-color);
    font-weight: bold;
    transition: all 0.3s ease;
}

.wobble:hover {
    /* animation: wobble 1s ease; */
    /* transform-origin: center; */
    /* Hover animasyonunu tamamen kaldırıyorum */
    transform: none;
}

.wobble-nav {
    /* animasyonu devre dışı bırakıyorum */
    /* animation: wobble 3s infinite; */
    transition: all 0.3s;
}

.wobble-nav:hover {
    transform: translateY(-3px);
}

@keyframes wobble {
    0%, 100% {
        transform: rotate(0);
    }
    25% {
        transform: rotate(5deg);
    }
    75% {
        transform: rotate(-5deg);
    }
}

/* Eğlenceli Listeler */
.fun-list {
    list-style: none;
    padding-left: 0;
}

.fun-list li {
    padding: 10px 0 10px 40px;
    position: relative;
    margin-bottom: 15px;
    transition: all 0.2s;
}

.fun-list li:before {
    content: "🍎";
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 1.5rem;
}

.fun-list li:nth-child(2n):before {
    content: "🥦";
}

.fun-list li:nth-child(3n):before {
    content: "🥕";
}

.fun-list li:nth-child(4n):before {
    content: "🍇";
}

.fun-list li:hover {
    transform: translateX(5px);
}

/* Çizgi Film Stil Kutular */
.comic-box {
    position: relative;
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1;
    border: 3px solid var(--primary-color);
    margin-bottom: 2rem;
}

.comic-box:before {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50px;
    width: 30px;
    height: 30px;
    background-color: white;
    border-right: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    transform: rotate(45deg);
    z-index: -1;
}

/* Konuşma Balonu */
.speech-bubble {
    position: relative;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 30px;
}

.speech-bubble:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30px;
    width: 0;
    height: 0;
    border: 20px solid transparent;
    border-top-color: var(--primary-color);
    border-bottom: 0;
    border-left: 0;
    margin-left: -10px;
    margin-bottom: -20px;
}

/* İlerleme Çubukları */
.progress-container {
    margin-bottom: 20px;
}

.progress-container .label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.progress-bar {
    background-color: var(--primary-color);
    border-radius: 30px;
    height: 20px;
}

.progress {
    height: 20px;
    border-radius: 30px;
    background-color: var(--light-gray);
}

/* Sayfa Başlıkları */
.page-header {
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 2rem;
    background-color: rgba(65, 179, 211, 0.1);
    border-radius: var(--border-radius-lg);
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
    position: relative;
    display: inline-block;
}

.page-header h1:before, .page-header h1:after {
    content: "★";
    color: var(--secondary-color);
    font-size: 1.5rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.page-header h1:before {
    left: -30px;
}

.page-header h1:after {
    right: -30px;
}

/* Form Elementleri */
.form-control {
    border-radius: var(--border-radius-md);
    border: 2px solid var(--light-gray);
    padding: 0.75rem 1rem;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(65, 179, 211, 0.25);
}

.form-select {
    border-radius: var(--border-radius-md);
    border: 2px solid var(--light-gray);
    padding: 0.75rem 1rem;
    transition: all 0.3s;
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(65, 179, 211, 0.25);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Küçük Cihazlar İçin Düzenlemeler */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: white;
        padding: 1rem;
        border-radius: var(--border-radius-md);
        margin-top: 0.5rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav .nav-item {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 2rem;
    }
    
    .page-header h1:before, .page-header h1:after {
        display: none;
    }
}

/* Çocuk Teması Özel Bileşenleri */
.kid-comic-box {
    position: relative;
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1;
    border: 3px solid var(--primary-color);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.kid-comic-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.kid-navbar {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: white;
    border-radius: 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.kid-navbar .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.8rem 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.kid-navbar .nav-link:hover {
    color: var(--primary-color);
    animation: wobble 0.8s ease;
}

.kid-navbar .nav-link.active {
    color: var(--primary-color);
    position: relative;
}

.kid-navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 5px;
}

.wobble-nav:hover {
    animation: wobble 0.8s ease;
}

.info-banner {
    background-color: var(--quaternary-color);
    color: white;
}

.info-banner a {
    color: white;
}

.btn-kid-primary {
    background-color: var(--secondary-color);
    color: var(--dark-gray);
    border-radius: 30px;
    padding: 10px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 0 rgba(0,0,0,0.1);
    transition: all 0.2s;
    text-decoration: none;
}

.btn-kid-primary:hover {
    background-color: #f0bb48;
    transform: translateY(-3px);
    box-shadow: 0 7px 0 rgba(0,0,0,0.1);
    color: var(--dark-gray);
}

.btn-kid-secondary {
    background-color: var(--primary-color);
    color: white;
    border-radius: 30px;
    padding: 10px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 0 rgba(0,0,0,0.1);
    transition: all 0.2s;
    text-decoration: none;
}

.btn-kid-secondary:hover {
    background-color: #3a9ebe;
    transform: translateY(-3px);
    box-shadow: 0 7px 0 rgba(0,0,0,0.1);
    color: white;
}

.btn-kid-social {
    background-color: var(--tertiary-color);
    color: white;
    border-radius: 30px;
    padding: 8px 15px;
    display: inline-block;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-kid-social:hover {
    background-color: #e5626f;
    transform: translateY(-3px);
    color: white;
}

.kid-badge {
    background-color: var(--tertiary-color);
    color: white;
    border-radius: 20px;
    padding: 5px 12px;
    font-weight: 600;
}

.kid-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: all 0.3s;
}

.kid-link:after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transition: all 0.3s;
}

.kid-link:hover {
    color: #3a9ebe;
}

.kid-link:hover:after {
    width: 100%;
}

.kid-cta {
    background-color: #fff5e6;
    border: 3px dashed var(--secondary-color);
}

.kid-dropdown {
    border: 2px solid var(--primary-color);
    border-radius: 15px;
}

.kid-header {
    background-color: #e6f7ff;
    border: 3px dashed var(--primary-color);
}

/* Form elementleri */
.kid-input, .kid-textarea, .kid-select {
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 10px 15px;
    transition: all 0.3s;
}

.kid-input:focus, .kid-textarea:focus, .kid-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 200, 87, 0.25);
}

.kid-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
}

/* Uyarı mesajları */
.kid-alert-success {
    background-color: rgba(143, 209, 79, 0.2);
    border: 2px solid var(--quaternary-color);
    color: var(--dark-gray);
    border-radius: 15px;
    padding: 15px;
}

.kid-alert-danger {
    background-color: rgba(246, 114, 128, 0.2);
    border: 2px solid var(--tertiary-color);
    color: var(--dark-gray);
    border-radius: 15px;
    padding: 15px;
}

/* Accordion */
.kid-accordion {
    border-radius: 15px;
    overflow: hidden;
}

.kid-accordion-item {
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
}

.kid-accordion-button {
    background-color: white;
    color: var(--dark-gray);
    font-weight: 600;
    padding: 15px 20px;
    position: relative;
    transition: all 0.3s;
    width: 100%;
    text-align: left;
    border: none;
}

.kid-accordion-button:not(.collapsed) {
    background-color: rgba(65, 179, 211, 0.1);
    color: var(--primary-color);
}

.kid-accordion-body {
    padding: 15px 20px;
    background-color: white;
}

/* Çerez bildirimi */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 320px;
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    border: 3px solid var(--primary-color);
    animation: bounce-in 0.5s ease;
}

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

.cookie-content p {
    margin-bottom: 10px;
    font-size: 1rem;
}

@keyframes bounce-in {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Slider (Carousel) Stilleri */
#heroSlider {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#heroSlider .carousel-inner {
    height: 100%;
}

/* Biz Kimiz? Bölümü İçin Yeni Stiller */
.hakkimizda-box {
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    transform-origin: center;
}

.hakkimizda-box:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-color: var(--tertiary-color);
}

.animated-bg {
    background: linear-gradient(120deg, rgba(65, 179, 211, 0.15) 0%, rgba(155, 93, 229, 0.15) 100%);
    position: relative;
    overflow: hidden;
}

.animated-bg:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    animation: pulse 5s ease-in-out infinite;
    pointer-events: none;
}

.icon-container {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--secondary-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
    overflow: hidden;
}

.icon-container:hover {
    transform: rotate(15deg);
}

.animated-icon {
    font-size: 5rem;
    color: var(--tertiary-color);
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.icon-container:hover .animated-icon {
    transform: scale(1.2);
    color: var(--quaternary-color);
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0; }
    50% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(0.95); opacity: 0; }
}

.wobble-text {
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.wobble-text:hover {
    animation: wobbleText 1s ease;
    color: var(--tertiary-color);
}

@keyframes wobbleText {
    0% { transform: translateX(0); }
    15% { transform: translateX(-10px) rotate(-5deg); }
    30% { transform: translateX(8px) rotate(4deg); }
    45% { transform: translateX(-6px) rotate(-2deg); }
    60% { transform: translateX(4px) rotate(1deg); }
    75% { transform: translateX(-2px) rotate(-1deg); }
    100% { transform: translateX(0); }
}

.rainbow-text {
    background: linear-gradient(90deg, var(--primary-color), var(--tertiary-color), var(--quaternary-color), var(--secondary-color));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbowAnimation 6s ease infinite;
}

.rainbow-text-2 {
    background: linear-gradient(90deg, var(--secondary-color), var(--quaternary-color), var(--tertiary-color), var(--primary-color));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbowAnimation 6s ease infinite;
}

@keyframes rainbowAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.speech-bubble-animated {
    position: relative;
    background: linear-gradient(45deg, var(--primary-color), #4da9e4);
    color: white;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    animation: pulse 3s infinite;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.speech-bubble-animated:hover {
    transform: scale(1.03);
}

.speech-bubble-animated:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30px;
    width: 0;
    height: 0;
    border: 20px solid transparent;
    border-top-color: #4da9e4;
    border-bottom: 0;
    border-left: 0;
    margin-left: -10px;
    margin-bottom: -20px;
    transition: all 0.3s ease;
}

.fun-animated-list {
    list-style: none;
    padding-left: 5px;
}

.animated-list-item {
    padding: 0.5rem 0 0.5rem 2.5rem;
    position: relative;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    border-left: 4px solid var(--primary-color);
    transform-origin: left;
}

.animated-list-item:hover {
    padding-left: 3rem;
    background-color: white;
    border-left-color: var(--tertiary-color);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.animated-list-item:before {
    content: "🍎";
    position: absolute;
    left: 10px;
    top: 0.6rem;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.animated-list-item:nth-child(2n):before {
    content: "🥦";
}

.animated-list-item:nth-child(3n):before {
    content: "🥕";
}

.animated-list-item:nth-child(4n):before {
    content: "🍇";
}

.animated-list-item:hover:before {
    transform: scale(1.5) rotate(10deg);
}

/* Temizle */ 