/* =============================================== */
/* COMPONENTS / HERO.CSS
   Hero section stilleri - sadece index sayfasında
   GÜNCEL: Lexy görseli eklendi
/* =============================================== */

.hero-section {
    padding: 3rem 1rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    width: 100%;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}

/* =============================================== */
/* HERO CONTENT (SOL TARAF) */
/* =============================================== */

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.2rem;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

.lexy-highlight {
    color: #E56717;  /* Canlı bakır */
    position: relative;
    display: inline-block;
}


.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    max-width: 550px;
    line-height: 1.6;
}

/* =============================================== */
/* HERO CTA BUTONLARI */
/* =============================================== */

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.cta-primary {
    padding: 0.9rem 2rem;
    background: var(--accent-color);
    color: var(--text-dark);
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cta-primary:hover {
    background: #ffc107;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.cta-primary:active {
    transform: translateY(-1px);
}

.cta-secondary {
    padding: 0.9rem 2rem;
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.cta-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    transform: translateY(-3px);
}

.cta-secondary:active {
    transform: translateY(-1px);
}

/* =============================================== */
/* HERO STATS */
/* =============================================== */

.hero-stats {
    display: flex;
    gap: 2.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.3rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =============================================== */
/* HERO IMAGE (SAĞ TARAF) - GÜNCELLENDİ */
/* =============================================== */

.hero-image {
    flex: 0.9;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.lexy-showcase {
    position: relative;
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lexy-hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.3));
    z-index: 1;  /* Lexy altta */
    position: relative;
}

/* Uçan kitaplar animasyonu - LEXY'NİN ÖNÜNDE */
.floating-book {
    position: absolute;
    font-size: 2.5rem;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
    z-index: 10;  /* Lexy'nin önünde (10 > 1) */
}

.book-1 {
    top: 5%;
    left: 0%;
    animation-delay: 0s;
}

.book-2 {
    bottom: 10%;
    right: 0%;
    animation-delay: 1s;
}

.book-3 {
    top: 20%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* =============================================== */
/* RESPONSIVE - GÜNCELLENDİ */
/* =============================================== */

@media (max-width: 1024px) {
    .hero-container {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .lexy-showcase {
        max-width: 450px;
    }
    
    .floating-book {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .lexy-showcase {
        max-width: 350px;
    }
    
    .floating-book {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .lexy-showcase {
        max-width: 280px;
    }
    
    .floating-book {
        font-size: 1.5rem;
    }
}

/* =============================================== */
/* DARK MODE (hero zaten koyu, değişen bir şey yok) */
/* =============================================== */