/* 
    MinoTV - Main Stylesheet
    Theme: Child-friendly, Vibrant, Animated
*/

:root {
    --primary-color: #FF6B6B; /* Soft Red/Pink */
    --secondary-color: #4ECDC4; /* Turquoise */
    --accent-color: #FFE66D; /* Yellow */
    --bg-light: #F7FFF7; /* Off White */
    --text-dark: #2F3E46;
    --text-light: #F7FFF7;
    --font-heading: 'Baloo 2', cursive;
    --font-body: 'Baloo 2', cursive;
    --transition: all 0.3s ease;
    --radius: 20px;
    --purple: #9b59b6;
    --orange: #e67e22;
    --header-height: 80px;
    --yellow: #FFD93D;
    --pink: #FF6B6B;
    --blue: #6BCBFF;
    --green: #6BCB77;
}

.bg-decor {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: 0.15;
}

.bg-cloud {
    width: 200px;
    height: 100px;
    background: white;
    border-radius: 100px;
    position: absolute;
}

.bg-cloud::after, .bg-cloud::before {
    content: '';
    position: absolute;
    background: white;
    border-radius: 50%;
}

.bg-cloud::after { width: 100px; height: 100px; top: -50px; left: 30px; }
.bg-cloud::before { width: 80px; height: 80px; top: -30px; right: 30px; }

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

html {
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.section-title span {
    color: var(--primary-color);
}

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

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    border: none;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(0);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-yt {
    background-color: #ff0000;
    color: white;
}

.w-full { width: 100%; }

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.7); /* Glassmorphism: Daha saydam */
    backdrop-filter: blur(15px); /* Daha güçlü blur */
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    height: var(--header-height); /* Sabit 80px */
    display: flex;
    align-items: center;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.85); /* Kaydırınca biraz daha belirgin glass */
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.navbar {
    width: 100%;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.logo-img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Lang Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 25px;
}

.lang-switcher a {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.lang-switcher img {
    width: 24px !important;
    height: 16px !important;
    min-width: 24px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.lang-switcher a.active {
    color: var(--primary-color);
}

.lang-switcher .sep {
    opacity: 0.3;
}

@media (max-width: 992px) {
    .lang-switcher {
        display: none; /* Mobilde navbar içindekini gizle (menüdekini kullanacağız) */
    }
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    width: 35px;
    height: 35px;
    z-index: 1001;
    transition: var(--transition);
    flex-shrink: 0; /* Sıkışmasını engelle */
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #2F3E46 !important; /* Koyu renk garanti */
    border-radius: 5px;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* Open State Animation */
.mobile-menu-btn.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-btn.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #FFF9C4 0%, #E3F2FD 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-title span {
    color: var(--purple);
    display: inline-block;
    animation: bounce 2s infinite;
}

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

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: #444;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.character-main {
    animation: floating 3s ease-in-out infinite;
}

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

.wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* About Section */
.about {
    padding: 120px 0;
    background-color: #f9f1ff; /* Hafif morumsu/pembe arka plan */
    position: relative;
    z-index: 5;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    text-align: center;
}

.character-about {
    border-radius: var(--radius);
    z-index: 2;
    position: relative;
    max-width: 45%; /* Görsel küçültüldü */
}

.about-text p {
    font-size: 1.35rem; /* Boyut biraz daha büyütüldü */
    margin-bottom: 30px; /* Paragraflar arası boşluk arttırıldı */
    color: #444;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.floating-bubbles .bubble {
    position: absolute;
    background: var(--secondary-color);
    border-radius: 50%;
    opacity: 0.2;
    z-index: 1;
}

.bubble.b1 { width: 100px; height: 100px; top: 3px; left: 0; background: var(--primary-color); }
.bubble.b2 { width: 150px; height: 150px; bottom: -30px; right: 0; background: var(--accent-color); }
.bubble.b3 { width: 60px; height: 60px; top: 50%; right: -20px; background: var(--purple); }

/* Videos Section */
.videos {
    padding: 100px 0;
    background-color: #f0f9ff;
    position: relative;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.video-card {
    background: #fff;
    padding: 15px;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-10px);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 15px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-card h3 {
    text-align: center;
    font-size: 1.2rem;
}

.youtube-cta {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.yt-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.youtube-cta h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Songs Section */
.songs {
    padding: 100px 0;
    background: #fff;
}

.spotify-full-width {
    margin-bottom: 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-radius: 24px;
    overflow: hidden;
}

.songs-platforms-below {
    width: 100%;
    margin-top: 50px;
}

.primary-streaming-btns {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.streaming-btn {
    display: flex;
    align-items: center;
    padding: 15px 35px;
    border-radius: 20px;
    color: white;
    font-weight: 700;
    gap: 15px;
    font-size: 1.1rem;
}

.streaming-btn img {
    width: 35px;
}

.btn-ytmusic { background: #FF0000; box-shadow: 0 5px 15px rgba(255,0,0,0.3); }
.btn-amazon { background: #00a8e1; box-shadow: 0 5px 15px rgba(0,168,225,0.3); }

.streaming-cloud {
    background: #fdfdfd;
    padding: 60px 40px;
    border-radius: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
    text-align: center;
    border: 2px solid #f0f0f0;
    width: 100%;
}

.cloud-header {
    margin-bottom: 40px;
}

.cloud-header h3 { font-size: 2rem; margin-bottom: 10px; }

.icons-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.platform-icon {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 30px; /* Talebe göre 30px radius */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.platform-icon img {
    border-radius: 20px; /* Görselin kendisine de biraz radius verelim */
    width: 100%;
    filter: grayscale(0.2);
}

.platform-icon:hover {
    transform: scale(1.1) rotate(5deg);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.platform-icon:hover img {
    filter: grayscale(0);
}

/* Social Section */
.social {
    padding: 80px 0;
}

.social-box {
    background: #fff;
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.social-card {
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    font-weight: 700;
}

.social-card img {
    width: 60px;
    transition: var(--transition);
}

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

.social-card span {
    color: var(--text-dark);
    font-size: 1.2rem;
}

.tiktok, .instagram, .facebook, .x { 
    background: transparent !important; 
    color: var(--text-dark) !important; 
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: #f7fff7;
}

.contact-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-desc {
    font-size: 1.3rem;
    margin-bottom: 50px;
    color: #555;
}

.big-email-box {
    background: white;
    padding: 50px;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border: 3px solid var(--secondary-color);
}

.big-email-box i {
    font-size: 4rem;
    color: var(--primary-color);
}

.email-link {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

.email-link:hover {
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: #2F3E46;
    color: white;
    padding: 80px 0;
}

.footer-center {
    text-align: center;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 25px;
}

.footer-slogan {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    margin-bottom: 40px;
    opacity: 0.9;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.6;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .section-title { font-size: 2.2rem; }
    .hero-title { font-size: 3rem; }
    .hero-content, .about-grid, .songs-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .hero-image { order: -1; }
    .hero-text { text-align: center; }
    .hero-btns { justify-content: center; }
    .about-image { order: -1; }
    
    .header-right {
        gap: 0;
    }
}

@media (max-width: 992px) {
    .container {
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden;
    }

    .hero {
        padding: 150px 0 60px; /* Üstten boşluk artırıldı */
    }

    .hero-content {
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-image {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
        order: -1;
    }

    .character-main {
        max-width: 85% !important;
        margin: 0 auto;
        display: block;
    }

    .mobile-lang-switcher {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .mobile-lang-switcher a {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--text-dark);
        padding: 8px 15px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        gap: 8px;
        border: 1px solid #eee;
    }

    .mobile-lang-switcher img {
        width: 24px;
        border-radius: 3px;
    }

    .mobile-lang-switcher a.active {
        background: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
    }

    .nav-links { 
        display: none !important; 
        flex-direction: column;
        position: fixed; /* Fixed daha güvenli */
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: auto;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        padding: 40px 20px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        text-align: center;
        gap: 20px;
        transform: translateY(-100%); /* Yukarıdan gelsin */
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        pointer-events: none;
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex !important;
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .mobile-menu-btn { 
        display: flex !important; 
        visibility: visible !important;
        opacity: 1 !important;
        margin-left: auto; /* Sağa yasla */
    }
    
    .logo {
        flex-shrink: 0;
        max-width: 180px; /* Logo boyutunu sabitle */
    }

    .logo-img {
        height: 40px; /* Mobilde biraz daha küçük logo */
    }
    .email-link { font-size: 1.5rem; }
    .big-email-box { padding: 30px; }
    .footer-logo img { height: 60px; }
    .footer-slogan { font-size: 1.2rem; }
    .streaming-btn { 
        padding: 12px 20px; 
        font-size: 0.9rem; 
        gap: 10px;
        width: 100%;
        justify-content: center;
    }
    .streaming-btn img { width: 25px; }
    .primary-streaming-btns {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .icons-grid { grid-template-columns: repeat(3, 1fr); }
    .social-links { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.2rem; }
    .btn { width: 100%; }
    .hero-btns { flex-direction: column; }
}
