/* ============================================
   🎨 OKUTGEN ANAOKULU & KREŞ TEMASI
   Sıfırdan Tasarlanmış Modern & Eğlenceli Tasarım
   ============================================ */

/* Ana Tema Renkleri */
:root {
    /* Pastel Anaokulu Renk Paleti */
    --kg-pink: #FF6B9D;
    --kg-blue: #4FC3F7;
    --kg-yellow: #FFD93D;
    --kg-green: #6BCF7F;
    --kg-purple: #B39DDB;
    --kg-orange: #FFB347;
    --kg-mint: #A8E6CF;
    --kg-lavender: #E1BEE7;
    --kg-peach: #FFCCBC;
    --kg-sky: #81D4FA;
    
    /* Gradient Kombinasyonlar */
    --gradient-rainbow: linear-gradient(135deg, #FF6B9D 0%, #B39DDB 25%, #4FC3F7 50%, #6BCF7F 75%, #FFD93D 100%);
    --gradient-sunset: linear-gradient(135deg, #FFB347 0%, #FF6B9D 100%);
    --gradient-ocean: linear-gradient(135deg, #4FC3F7 0%, #B39DDB 100%);
    --gradient-meadow: linear-gradient(135deg, #6BCF7F 0%, #A8E6CF 100%);
    --gradient-sky: linear-gradient(135deg, #81D4FA 0%, #B39DDB 100%);
    
    /* Gölge Efektleri */
    --shadow-soft: 0 10px 30px rgba(255, 107, 157, 0.15);
    --shadow-medium: 0 15px 40px rgba(255, 107, 157, 0.25);
    --shadow-strong: 0 20px 50px rgba(255, 107, 157, 0.35);
    --shadow-float: 0 25px 60px rgba(79, 195, 247, 0.3);
    
    /* Spacing & Sizing */
    --border-radius-sm: 15px;
    --border-radius-md: 25px;
    --border-radius-lg: 35px;
    --border-radius-xl: 50px;
    
    /* Typography - Türkçe Karakterli Fontlar */
    --font-primary: 'Baloo 2', 'Comic Sans MS', cursive;
    --font-secondary: 'Nunito', 'Montserrat', sans-serif;
}

/* ============================================
   🌈 GENEL RESET & BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background: linear-gradient(135deg, #fff 0%, #f0f8ff 100%);
    background-attachment: fixed;
    color: #2D3436;
    overflow-x: hidden;
    line-height: 1.6;
    font-weight: 400;
    position: relative;
}

/* Arka Plan Animasyonu */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ============================================
   🎪 DEKORATİF ARKA PLAN ŞEKİLLERİ
   ============================================ */

body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 157, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(79, 195, 247, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(107, 207, 127, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 20%, rgba(255, 211, 61, 0.08) 0%, transparent 50%);
    animation: floatBackground 30s ease-in-out infinite;
    z-index: -2;
    pointer-events: none;
}

@keyframes floatBackground {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Yüzen Dekoratif Şekiller */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    opacity: 0.12;
    animation: floatShape 15s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
    width: 150px;
    height: 150px;
    background: var(--kg-pink);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-shape:nth-child(2) {
    width: 120px;
    height: 120px;
    background: var(--kg-blue);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    top: 60%;
    right: 8%;
    animation-delay: 3s;
}

.floating-shape:nth-child(3) {
    width: 180px;
    height: 180px;
    background: var(--kg-yellow);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: 15%;
    left: 10%;
    animation-delay: 6s;
}

.floating-shape:nth-child(4) {
    width: 100px;
    height: 100px;
    background: var(--kg-green);
    border-radius: 50%;
    top: 30%;
    right: 15%;
    animation-delay: 9s;
}

.floating-shape:nth-child(5) {
    width: 140px;
    height: 140px;
    background: var(--kg-purple);
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    bottom: 40%;
    left: 50%;
    animation-delay: 12s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    33% {
        transform: translateY(-30px) rotate(120deg) scale(1.1);
    }
    66% {
        transform: translateY(-15px) rotate(240deg) scale(0.9);
    }
}

/* ============================================
   🎯 MODERN BUTONLAR
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    background: var(--gradient-rainbow);
    background-size: 200% 200%;
    color: white;
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--border-radius-xl);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-soft);
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-strong);
    animation: buttonWiggle 0.5s ease;
}

@keyframes buttonWiggle {
    0%, 100% { transform: translateY(-5px) scale(1.05) rotate(0deg); }
    25% { transform: translateY(-5px) scale(1.05) rotate(-3deg); }
    75% { transform: translateY(-5px) scale(1.05) rotate(3deg); }
}

.btn:active {
    transform: translateY(-2px) scale(1.02);
}

/* Buton Varyasyonları */
.btn-outline {
    background: transparent;
    color: var(--kg-pink);
    border: 4px solid var(--kg-pink);
    font-weight: 700;
}

.btn-outline:hover {
    background: var(--gradient-sunset);
    color: white;
    border-color: transparent;
}

.btn-success {
    background: var(--gradient-meadow);
}

.btn-info {
    background: var(--gradient-ocean);
}

.btn-warning {
    background: var(--gradient-sunset);
}

/* ============================================
   🏠 HEADER & NAVIGATION
   ============================================ */

header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.15);
    border-bottom: 5px solid transparent;
    border-image: var(--gradient-rainbow) 1;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 15px 0;
    box-shadow: 0 15px 50px rgba(255, 107, 157, 0.25);
}

.logo img {
    max-height: 80px !important; /* Logo boyutu 80px sabit */
    transition: all 0.3s ease;
    filter: drop-shadow(0 5px 15px rgba(255, 107, 157, 0.3));
}

.logo img:hover {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 8px 20px rgba(255, 107, 157, 0.4));
}

/* Navigation Menu */
.main-nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav ul li a {
    color: #2D3436;
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    padding: 8px 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.main-nav ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-rainbow);
    transform: translateX(-50%);
    transition: width 0.3s ease;
    border-radius: 10px;
}

.main-nav ul li a:hover::before {
    width: 100%;
}

.main-nav ul li a:hover {
    color: var(--kg-pink);
    transform: translateY(-2px);
}

/* Dropdown Menü */
.dropdown {
    background: white;
    border-radius: var(--border-radius-md);
    padding: 20px;
    box-shadow: var(--shadow-medium);
    border: 3px solid rgba(255, 107, 157, 0.1);
    animation: dropdownSlide 0.3s ease;
}

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

.dropdown li a {
    padding: 12px 20px;
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
}

.dropdown li a:hover {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1) 0%, rgba(79, 195, 247, 0.1) 100%);
    padding-left: 30px;
    color: var(--kg-pink);
}

/* ============================================
   🎪 HERO SECTION
   ============================================ */

.hero-banner {
    /* Background her slide'ın kendi bg_color değerinden gelir */
    padding: 0; /* Slide'ın kendi padding'i olacak */
    position: relative;
    overflow: hidden;
    border: none !important;
    background: transparent !important; /* Primary color ASLA kullanılmasın */
    background-color: transparent !important;
}

/* Slider Container - Tam transparent olmalı - Primary color ASLA kullanılmasın */
.slider-container {
    background: transparent !important;
    background-color: transparent !important;
}

/* Slider - Tam transparent olmalı - Primary color ASLA kullanılmasın */
.slider {
    background: transparent !important;
    background-color: transparent !important;
}

/* Her slide kendi arkaplan rengine sahip olacak (SADECE inline style) */
.slide {
    padding: 60px 0;
    width: 100% !important;
    position: relative;
    /* Background SADECE inline style'dan gelir (gradient) */
}

/* Slide içeriği pseudo-elementlerin üstünde */
.slide .container,
.slide .hero-content,
.slide .hero-image {
    position: relative;
    z-index: 1;
}

/* Dekoratif pseudo-elementler kaldırıldı - gradient tamamen görünsün */

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

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

.hero-content h1 {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 400;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    animation: bounceIn 1s ease;
    line-height: 1.3;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

.hero-text {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: var(--border-radius-md);
    margin-bottom: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: slideInLeft 1s ease 0.3s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-text p {
    color: white;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-image {
    position: relative;
    z-index: 2;
    animation: floatImage 6s ease-in-out infinite;
}

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

.hero-image img {
    max-width: 100%;
    max-height: 400px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-float);
    border: 5px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 30px 70px rgba(79, 195, 247, 0.4);
}

/* ============================================
   🎨 KARTLAR & BÖLÜMLER
   ============================================ */

.campus-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 0; /* Padding kaldırıldı - resim tam kaplar */
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 4px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.campus-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(255, 107, 157, 0.1),
        transparent,
        rgba(79, 195, 247, 0.1),
        transparent
    );
    transition: all 0.6s ease;
    opacity: 0;
}

.campus-card:hover::before {
    opacity: 1;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.campus-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: var(--shadow-strong);
    border-color: var(--kg-pink);
}

.card-logo {
    width: 100% !important;
    height: 500px !important;
    margin: 0; /* Margin kaldırıldı - resim tam üstte */
    padding: 0; /* Padding kaldırıldı */
    background: transparent;
    border-radius: 35px 35px 0 0; /* Sadece üst köşelerde border-radius */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.card-logo img {
    width: 100% !important;
    height: 500px !important;
    object-fit: cover !important;
    border-radius: 35px 35px 0 0 !important; /* Sadece üst köşelerde border-radius */
    max-width: none !important;
    max-height: none !important;
}

.campus-card:hover .card-logo {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.campus-name {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--kg-pink);
    margin: 15px 0;
    text-shadow: 1px 1px 2px rgba(255, 107, 157, 0.2);
}

/* ============================================
   📝 ABOUT & FEATURES SECTIONS
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 400;
    background: var(--gradient-rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: textShine 3s ease-in-out infinite;
    background-size: 200% 200%;
    display: inline-block;
    position: relative;
}

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

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 6px;
    background: var(--gradient-rainbow);
    border-radius: 10px;
    animation: expandWidth 2s ease-in-out infinite;
}

@keyframes expandWidth {
    0%, 100% {
        width: 150px;
    }
    50% {
        width: 200px;
    }
}

.feature-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 4px solid transparent;
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-15px) rotate(-2deg);
    box-shadow: var(--shadow-strong);
    border-color: var(--kg-blue);
}

.feature-img {
    overflow: hidden;
    height: 250px;
    position: relative;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feature-card:hover .feature-img img {
    transform: scale(1.2) rotate(5deg);
}

.feature-content {
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.feature-content h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--kg-pink);
    margin-bottom: 10px;
}

/* ============================================
   🌟 BLOG & TEAM SECTIONS
   ============================================ */

.blog-item,
.team-member {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 4px solid transparent;
}

.blog-item::after,
.team-member::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 60px 60px 0;
    border-color: transparent var(--kg-yellow) transparent transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-item:hover::after,
.team-member:hover::after {
    opacity: 1;
}

.blog-item:hover,
.team-member:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--shadow-strong);
    border-color: var(--kg-purple);
}

.blog-img,
.team-img,
.member-img {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-img img,
.team-img img,
.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.blog-item:hover .blog-img img,
.team-member:hover .team-img img,
.team-member:hover .member-img img {
    transform: scale(1.15);
}

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-sunset);
    color: white;
    padding: 12px 18px;
    border-radius: var(--border-radius-md);
    font-family: var(--font-primary);
    font-size: 18px;
    box-shadow: var(--shadow-soft);
    z-index: 2;
    animation: bounceIn 1s ease;
}

.blog-content,
.team-info,
.member-content {
    padding: 30px;
}

.blog-content h3,
.team-info h3,
.member-content h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--kg-pink);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.blog-item:hover .blog-content h3,
.team-member:hover .team-info h3,
.team-member:hover .member-content h3 {
    background: var(--gradient-ocean);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   🎠 GALLERY SECTION
   ============================================ */

.gallery-item {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-soft);
    border: 5px solid white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.gallery-item::before {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 3rem;
    z-index: 2;
    transition: transform 0.3s ease;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.8) 0%, rgba(79, 195, 247, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover {
    transform: scale(1.05) rotate(3deg);
    box-shadow: var(--shadow-strong);
    border-color: var(--kg-yellow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.2);
}

/* ============================================
   👶 KIDS SECTION
   ============================================ */

.kids-section {
    background: var(--gradient-rainbow);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.kids-section::before {
    content: '⭐';
    position: absolute;
    font-size: 10rem;
    opacity: 0.1;
    top: 10%;
    left: 5%;
    animation: twinkle 3s ease-in-out infinite;
}

.kids-section::after {
    content: '🌈';
    position: absolute;
    font-size: 8rem;
    opacity: 0.1;
    bottom: 10%;
    right: 5%;
    animation: twinkle 4s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.1;
        transform: scale(1);
    }
    50% {
        opacity: 0.2;
        transform: scale(1.1);
    }
}

.kids-content h2 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 400;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.kids-content p {
    color: white;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

.kids-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-float);
    border: 6px solid rgba(255, 255, 255, 0.4);
    animation: floatImage 6s ease-in-out infinite;
}

.kids-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.kids-image:hover img {
    transform: scale(1.1);
}

/* ============================================
   🎯 SLIDER CONTROLS
   ============================================ */

.prev-slide,
.next-slide,
.blog-prev-slide,
.blog-next-slide,
.team-prev-slide,
.team-next-slide,
.gallery-prev-slide,
.gallery-next-slide {
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kg-pink);
    font-size: 24px;
    border: 4px solid var(--kg-pink);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: absolute;
    z-index: 10;
}

.prev-slide:hover,
.next-slide:hover,
.blog-prev-slide:hover,
.blog-next-slide:hover,
.team-prev-slide:hover,
.team-next-slide:hover,
.gallery-prev-slide:hover,
.gallery-next-slide:hover {
    background: var(--gradient-sunset);
    color: white;
    border-color: transparent;
    transform: scale(1.2);
    box-shadow: var(--shadow-medium);
    animation: wiggleButton 0.5s ease;
}

@keyframes wiggleButton {
    0%, 100% { transform: scale(1.2) rotate(0deg); }
    25% { transform: scale(1.2) rotate(-10deg); }
    75% { transform: scale(1.2) rotate(10deg); }
}

/* ============================================
   🌟 NAVIGATION DOTS
   ============================================ */

.blog-dot,
.team-dot,
.gallery-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--kg-pink);
    border: 3px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.4;
    box-shadow: 0 3px 10px rgba(255, 107, 157, 0.3);
}

.blog-dot.active,
.team-dot.active,
.gallery-dot.active {
    opacity: 1;
    background: var(--gradient-sunset);
    transform: scale(1.4);
    animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% {
        box-shadow: 0 3px 10px rgba(255, 107, 157, 0.3), 0 0 0 0 rgba(255, 107, 157, 0.7);
    }
    50% {
        box-shadow: 0 3px 10px rgba(255, 107, 157, 0.3), 0 0 0 10px rgba(255, 107, 157, 0);
    }
}

.blog-dot:hover,
.team-dot:hover,
.gallery-dot:hover {
    opacity: 0.8;
    transform: scale(1.2);
}

/* ============================================
   🏢 FOOTER
   ============================================ */

footer {
    background: linear-gradient(135deg, #FFF5F8 0%, #F0F8FF 100%);
    position: relative;
}

.footer-top {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-top: 6px solid transparent;
    border-image: var(--gradient-rainbow) 1;
    padding: 80px 0 60px;
}

.footer-col h4 {
    font-family: var(--font-primary);
    color: var(--kg-pink);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-sunset);
    border-radius: 10px;
}

.footer-col ul li a {
    color: #2D3436;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.footer-col ul li a::before {
    content: '🌟';
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-col ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-col ul li a:hover {
    color: var(--kg-pink);
    padding-left: 30px;
}

.footer-social-icons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-rainbow);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-soft);
}

.footer-social-icons a:hover {
    transform: translateY(-5px) rotate(360deg) scale(1.2);
    box-shadow: var(--shadow-medium);
}

.footer-bottom {
    background: var(--gradient-rainbow);
    padding: 30px 0;
    text-align: center;
}

.footer-bottom p {
    color: white;
    font-size: 1rem;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.footer-bottom a {
    color: white;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* ============================================
   📱 RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
    .hero-banner {
        background: transparent !important;
    }
    
    .slide {
        padding: 50px 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .floating-shape {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        background: transparent !important;
    }
    
    .slide {
        padding: 40px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-text {
        padding: 15px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .prev-slide,
    .next-slide,
    .blog-prev-slide,
    .blog-next-slide,
    .team-prev-slide,
    .team-next-slide,
    .gallery-prev-slide,
    .gallery-next-slide {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        background: transparent !important;
    }
    
    .slide {
        padding: 30px 0;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .kids-content h2 {
        font-size: 1.8rem;
    }
    
    .campus-name {
        font-size: 1.3rem;
    }
}

/* ============================================
   ✨ EKSTRA ANIMASYONLAR & EFEKTLER
   ============================================ */

/* Scroll Reveal Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Confetti Effect */
@keyframes confetti-fall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
    }
}

/* Loading Animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Sparkle Effect */
@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

