/* ==========================================
   PAGE HERO Z-INDEX FIX - TÜM SAYFALARDA KULLANILMALI
   Bu dosya hero section'ın içeriği kapatma sorununu çözer
========================================== */

/* Hero Section Ana Düzeltme */
.page-hero {
    position: relative;
    overflow: visible !important; /* hidden yerine visible */
    z-index: 1 !important;
    padding: 120px 0 80px;
    margin-bottom: 0;
    min-height: 300px;
    max-height: 350px;
}

/* Breed Hero Özel Düzeltme */
.page-hero.breed-hero {
    min-height: 400px !important;
    max-height: 450px !important;
    margin-bottom: 0 !important;
}

.page-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1 !important; /* Arka planda kalmalı */
    background-size: cover;
    background-position: center;
}

.page-hero .hero-content {
    position: relative;
    z-index: 2; /* İçerik en önde */
    text-align: center;
}

.page-hero .hero-content .page-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.page-hero .hero-content .breed-subtitle {
    font-size: 20px;
    color: white;
    margin-bottom: 25px;
    opacity: 0.95;
}

.page-hero .hero-content .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 15px;
}

.page-hero .hero-content .breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.page-hero .hero-content .breadcrumb a:hover {
    opacity: 0.8;
}

/* Tüm section'ları hero'nun üstüne çıkar */
.contact-cards-section,
.contact-main,
.products-section,
.product-categories,
.product-info-banner,
.shipping-info,
.gallery-section,
.breed-detail-section,
.breed-features,
.blog-section,
.faq-section,
.about-hero-section,
.about-content,
section {
    position: relative;
    z-index: 10 !important;
    background: white; /* Arka plan olsun */
}

/* Section başlıkları için özel düzeltme */
.section-header {
    position: relative;
    z-index: 11;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 60px;
    }
    
    .page-hero .hero-content .page-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 80px 0 50px;
    }
    
    .page-hero .hero-content .page-title {
        font-size: 28px;
    }
}
