/* =====================================================
   🥷 NINJA GENÇ - PREMIUM EĞİTİM PLATFORMU TASARIMI
   Modern, Profesyonel, Eğitim Odaklı UX/UI
   ===================================================== */

/* ============= ANA RENK PALETİ ============= */
:root {
    /* Marka Renkleri */
    --primary: #6366f1;          /* Modern İndigo */
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #14b8a6;        /* Teal - Başarı */
    --accent: #f59e0b;           /* Amber - Vurgu */
    
    /* Eğitim Renkleri */
    --success: #10b981;          /* Yeşil - Başarı */
    --warning: #f59e0b;          /* Turuncu - Dikkat */
    --info: #3b82f6;             /* Mavi - Bilgi */
    --danger: #ef4444;           /* Kırmızı - Uyarı */
    
    /* Nötr Renkler */
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    
    /* Gölgeler */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Animasyonlar */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
}

/* ============= GENEL YAPILAR ============= */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

/* ============= HEADER (NAVBAR) ============= */
.jobguru-header-area {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.jobguru-header-area.sticky {
    box-shadow: var(--shadow-lg);
}

.site-logo img {
    transition: var(--transition-fast);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Modern Menü */
#jobguru_navigation li {
    position: relative;
}

#jobguru_navigation li a {
    color: var(--text-primary) !important;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 16px;
    transition: var(--transition-fast);
    position: relative;
}

#jobguru_navigation li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: translateX(-50%);
    transition: var(--transition-fast);
}

#jobguru_navigation li a:hover::after {
    width: 80%;
}

#jobguru_navigation li a:hover {
    color: var(--primary) !important;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

/* Analiz Yap Butonu - Özel */
#jobguru_navigation li:has(a[href*="analiz"]) {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 25px;
    overflow: hidden;
    border: none !important;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    transition: var(--transition);
}

#jobguru_navigation li:has(a[href*="analiz"]):hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
}

#jobguru_navigation li:has(a[href*="analiz"]) a {
    color: #fff !important;
    font-weight: 600;
}

/* Header Sağ Menü */
.header-right-menu ul li a {
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition-fast);
}

.header-right-menu ul li a:hover {
    color: var(--primary);
}

.girisbutonu a {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white !important;
    padding: 10px 24px;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.girisbutonu a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

//* =====================================================
   🎨 HERO BANNER - MODERN UX TASARIMI
   Mavi-Yeşil Gradient + Karanlık Ton
   ===================================================== */

/* ============= HERO BANNER SECTION ============= */
.home-video-banner {
    position: relative;
    min-height: 750px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

/* Video Arka Plan */
#video-background {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    object-fit: cover;
    opacity: 0.3;
}

/* Modern Gradient Overlay */

.home-video-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.95) 0%,      /* Koyu Lacivert */
        rgba(30, 58, 138, 0.92) 25%,    /* Mavi */
        rgba(6, 78, 59, 0.90) 50%,      /* Yeşil-Mavi */
        rgba(5, 150, 105, 0.88) 75%,    /* Teal */
        rgba(16, 185, 129, 0.85) 100%   /* Açık Yeşil */
    );
    z-index: 1;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 20% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.5;
    }
}

/* Animasyonlu Partiküller */
.home-video-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    z-index: 1;
    animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

/* Banner Area */
.banner-area {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Banner Caption */
.banner-caption {
    position: relative;
}

/* ============= BAŞLIK & İÇERİK ============= */
.banner-welcome h4 {
    font-size: 3.5rem;
    font-weight: 900;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out;
    letter-spacing: -1px;
}

.banner-welcome h4 span {
    background: linear-gradient(135deg, #60a5fa, #34d399, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientText 3s ease infinite;
    display: inline-block;
    text-shadow: none;
    filter: drop-shadow(0 2px 8px rgba(16, 185, 129, 0.4));
}

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

.banner-welcome h4 p {
    color: #f0fdf4 !important;
    font-weight: 700;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* ============= ARAMA KUTUSU - GLASSMORPHISM ============= */
.mansetform {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 35px;
    border-radius: 24px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.video-banner-input {
    position: relative;
    margin-bottom: 0;
}

.video-banner-input input {
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 20px 28px;
    font-size: 17px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.95);
    color: #1e293b;
    font-weight: 500;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-banner-input input::placeholder {
    color: #64748b;
    font-weight: 500;
}

.video-banner-input input:focus {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 
        0 0 0 4px rgba(59, 130, 246, 0.1),
        0 8px 24px rgba(59, 130, 246, 0.2);
    outline: none;
    background: #ffffff;
    transform: translateY(-2px);
}

/* Arama Butonu */
.video-banner-input button {
    background: linear-gradient(135deg, #3b82f6, #10b981);
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 14px rgba(59, 130, 246, 0.4),
        0 0 0 0 rgba(59, 130, 246, 0.4);
    position: relative;
    overflow: hidden;
}

.video-banner-input button::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;
}

.video-banner-input button:hover::before {
    width: 120%;
    height: 120%;
}

.video-banner-input button:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 
        0 8px 24px rgba(59, 130, 246, 0.6),
        0 0 0 8px rgba(59, 130, 246, 0.1);
}

.video-banner-input button i {
    position: relative;
    z-index: 1;
}

/* ============= POPÜLER ARAMALAR ============= */
.top-search-cat {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 20px 24px;
    border-radius: 20px;
    margin-top: 24px;
    animation: fadeInUp 1s ease-out 0.5s both;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.top-search-cat p {
    color: #f0fdf4;
    font-weight: 700;
    margin-bottom: 14px;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.top-search-cat a {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 50px;
    margin: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.top-search-cat a:hover {
    background: linear-gradient(135deg, #3b82f6, #10b981);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 
        0 6px 20px rgba(59, 130, 246, 0.4),
        0 0 0 4px rgba(59, 130, 246, 0.1);
}

/* ============= CTA BUTONU (ÜYE OL) ============= */
.hvbuton {
    animation: fadeInUp 1s ease-out 0.7s both;
    text-align: center;
}

.hvbuton .btn {
    padding: 18px 48px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    border: none;
    color: white !important;
    box-shadow: 
        0 8px 24px rgba(245, 158, 11, 0.4),
        0 0 0 0 rgba(245, 158, 11, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.hvbuton .btn::before {
    content: '🚀';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.hvbuton .btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 
        0 12px 32px rgba(245, 158, 11, 0.5),
        0 0 0 8px rgba(245, 158, 11, 0.1);
}

.hvbuton .btn:hover::before {
    left: 24px;
    animation: rocketShake 0.5s ease infinite;
}

@keyframes rocketShake {
    0%, 100% { transform: translateY(-50%) rotate(0deg); }
    25% { transform: translateY(-50%) rotate(-10deg); }
    75% { transform: translateY(-50%) rotate(10deg); }
}

/* ============= ANIMASYONLAR ============= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Animation */
.animate-float {
    animation: float 3s ease-in-out infinite;
}

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

/* ============= RESPONSIVE ============= */
@media (max-width: 768px) {
    .home-video-banner {
        min-height: 600px;
    }

    .banner-welcome h4 {
        font-size: 2.2rem;
    }

    .mansetform {
        padding: 24px;
    }

    .video-banner-input input {
        padding: 16px 20px;
        font-size: 15px;
    }

    .video-banner-input button {
        width: 50px;
        height: 50px;
    }

    .top-search-cat a {
        font-size: 0.85rem;
        padding: 8px 18px;
    }

    .hvbuton .btn {
        padding: 16px 36px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .banner-welcome h4 {
        font-size: 1.8rem;
    }

    .top-search-cat {
        padding: 16px;
    }

    .top-search-cat a {
        margin: 4px;
    }
}

/* ============= SCROLL İNDİKATÖRÜ (İsteğe Bağlı) ============= */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}
.btn-mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 18px;
    background: #22c55e; /* yeşil */
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(34,197,94,.35);
}

.btn-mobile-cta:active {
    transform: scale(0.97);
}
