/* hero-fixes.css - TÜM SORUNLARI ÇÖZEN CSS */

/* 1. HERO SLIDER DÜZENLEMELERİ */
.hero-media-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.hero-media.active {
    opacity: 1;
    z-index: 1;
}

.hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 2. MEDYA KONTROLLERİ */
.hero-media-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    gap: 12px;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
}

.media-control-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 16px;
}

.media-control-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
    border-color: white;
}

.media-control-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* 3. FLOATING BUTONLAR GÖRÜNÜRLÜĞÜ */
.floating-social-buttons {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 1000;
    display: flex !important;
    flex-direction: column;
    gap: 15px;
    opacity: 1 !important;
    visibility: visible !important;
    transition: all 0.3s ease;
}

.floating-social-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.floating-social-button.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.floating-social-button.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
}

.floating-social-button:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* 4. HERO İÇERİK GÖRÜNÜRLÜĞÜ */
.hero-content-overlay {
    position: relative;
    z-index: 2;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin: 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.5);
    color: white !important;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.4);
    color: rgba(255, 255, 255, 0.95) !important;
}

/* 5. RESPONSIVE DÜZENLEMELER */
@media (max-width: 768px) {
    .hero-media-controls {
        bottom: 20px;
        gap: 10px;
    }
    
    .media-control-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .floating-social-buttons {
        bottom: 80px;
        right: 20px;
    }
    
    .floating-social-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-media-controls {
        bottom: 15px;
        gap: 8px;
    }
    
    .media-control-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .floating-social-buttons {
        bottom: 70px;
        right: 15px;
    }
    
    .floating-social-button {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* 6. İLETİŞİM FORM METİNLERİ */
.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

.form-control {
    color: white !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* 7. METİN GÖRÜNÜRLÜĞÜ İÇİN */
.text-visible {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    color: white !important;
}

/* 8. PRODUCTS HORIZONTAL SCROLLER DÜZENLEMESİ */
.products-horizontal-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.scroll-item .card {
    background: rgba(255, 255, 255, 0.95);
}