/* ============================================================
   HERO SECTION - PARS MASTER DESIGN
   ============================================================ */
main .hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: var(--primary-black);
}

/* --- BACKGROUND & OVERLAY --- */
main .hero-container .hero-image-wrapper,
main .hero-container .hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0; /* JS Loaded ile açılacak */
    transition: opacity 1.2s ease-in;
    animation: parsHeroZoom 15s infinite alternate ease-in-out;
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(17, 17, 17, 0.95) 20%, rgba(17, 17, 17, 0.4) 70%, transparent 100%);
    z-index: 2;
}

/* --- LOGO SQUAD (Sabit @20%) --- */
.logo-wrapper {
    position: absolute;
    top: 20%;
    left: 8%;
    z-index: 10;
}

.logo-wrapper a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    white-space: nowrap;
}

.logo-wrapper .p-square {
    background-color: var(--primary-orange);
    color: var(--primary-white);
    width: 3rem; height: 3rem;
    display: flex; justify-content: center; align-items: center;
    border-radius: 0.4rem;
    font-weight: 900;
    font-size: 1.5rem;
}

.logo-wrapper .brand-text {
    color: var(--primary-white);
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- CONTENT LAYER --- */
.hero-content-layer {
    position: absolute;
    inset: 0;
    z-index: 3;
    padding: 15vh 8% 0 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 2.5rem;
    opacity: 0; /* JS Loaded ile açılacak */
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.main-slogan {
    font-size: 4.5rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.main-slogan .highlight { color: var(--primary-orange); }

main .hero-container .hero-content-layer .main-slogan-box .sub-slogan {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    border-left: 3px solid var(--primary-orange);
    padding-left: 1.5rem;
    max-width: 40rem;
    margin-top: 1rem;
}

/* --- CONTACT & BUTTONS --- */
main .hero-container .hero-content-layer .hero-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

main .hero-container .hero-content-layer .hero-contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: 0.3s;
}

main .hero-container .hero-content-layer .hero-contact-info .contact-item i { color: var(--primary-orange); width: 20px; }

main .hero-container .hero-content-layer .btn-outline-wrapper {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

main .hero-container .hero-content-layer .btn-outline-wrapper .btn-outline {
    padding: 1rem 2.2rem;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border: 2px solid;
    transition: 0.4s ease;
}
/* Mevcut stiline geçiş efekti (transition) ekleyelim ki hover yumuşak olsun */
main .hero-container .hero-content-layer .hero-contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    /* --- GEÇİŞ EFEKTİ --- */
    transition: transform 0.3s ease, color 0.3s ease;
}

/* --- HOVER DURUMU --- */
main .hero-container .hero-content-layer .hero-contact-info .contact-item:hover {
    color: var(--primary-orange); /* Yazı rengi turuncuya döner */
    transform: translateX(8px);    /* Hafifçe sağa kayma (Footer stili) */
}

/* İkon İçin Hover Ayarı */
main .hero-container .hero-content-layer .hero-contact-info .contact-item i {
    color: var(--primary-orange);
    width: 20px;
    transition: transform 0.3s ease; /* İkonun kendi hareketi için */
}

/* İsteğe bağlı: Hover yapınca sadece ikonun biraz daha oynamasını istersen */
main .hero-container .hero-content-layer .hero-contact-info .contact-item:hover i {
    transform: scale(1.1); /* İkon hafifçe büyür */
}

main .hero-container .hero-content-layer .btn-outline-wrapper .btn-o1 { border-color: var(--primary-orange); color: white; }
main .hero-container .hero-content-layer .btn-outline-wrapper .btn-o1:hover { background: var(--primary-orange); transform: translateY(-3px); }

main .hero-container .hero-content-layer .btn-outline-wrapper .btn-o2 { border-color: white; color: white; }
main .hero-container .hero-content-layer .btn-outline-wrapper .btn-o2:hover { background: white; color: black; transform: translateY(-3px); }

/* --- SCROLL INDICATOR --- */
.scroll-indicator-wrapper {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.book-link-scroll-1 {
    position: relative;
    width: 50px; height: 50px;
    display: flex; justify-content: center; align-items: center;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.pulse-ring {
    position: absolute;
    inset: 0;
    border: 2px solid var(--primary-orange);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

/* --- ANIMATIONS --- */
@keyframes parsHeroZoom { from { transform: scale(1); } to { transform: scale(1.1); } }
@keyframes pulse-ring { 
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* JS Trigger */
.is-loaded .hero-content-layer { opacity: 1; transform: translateY(0); }
.is-loaded .hero-image-wrapper img { opacity: 1; }

/* --- RESPONSIVE --- */
/* ============================================================
   HERO SECTION - MASTER RESPONSIVE SYSTEM
   ============================================================ */

/* --- 1. TABLET & KÜÇÜK LAPTOP (1024px ve altı) --- */
@media (max-width: 1024px) {
    .main-slogan {
        font-size: 3.5rem; /* 4.5rem'den düştük */
        letter-spacing: -1px;
    }
    
    .hero-content-layer {
        padding: 10vh 8% 0 8%;
    }
}

/* --- 2. STANDART MOBİL (992px ve altı) --- */
@media (max-width: 992px) {
    main .hero-container {
        height: auto !important; /* Çiviyi söktük */
        min-height: 100vh;      /* İçerik azsa ekranı kaplasın */
        display: flex;
        flex-direction: column;
    }

    .hero-content-layer {
        position: relative;     /* Absolute'tan çıkarıp doğal akışa sokuyoruz */
        padding: 120px 8% 60px 8%; /* Header'dan kurtulmak için üst boşluk */
        justify-content: flex-start;
        height: auto;
        transform: none !important; /* Mobilde transform çakışmasını önle */
    }

    .logo-wrapper {
        position: absolute;
        top: 4.5rem; /* Header yüksekliği kadar aşağıda */
        left: 8%;
    }

    .main-slogan {
        font-size: 2.8rem;
        line-height: 1.1;
    }

    .hero-image-wrapper {
        position: fixed; /* Arka plan resmi biz kaysak da arkada sabit kalsın */
        z-index: 1;
    }

    .scroll-indicator-wrapper {
        display: none; /* Mobilde genelde kafa karıştırır, temizlik iyidir */
    }
}

/* --- 3. TELEFONLAR (560px ve altı - A51 ve iPhone'lar) --- */
@media (max-width: 560px) {
    .main-slogan {
        font-size: 2.2rem; /* Okunabilir en ideal büyük boy */
    }

    main .hero-container .hero-content-layer .main-slogan-box .sub-slogan {
        font-size: 1rem;
        padding-left: 1rem;
        max-width: 100%;
    }

    .btn-outline-wrapper {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn-outline-wrapper .btn-outline {
        width: 100%;
        text-align: center;
        padding: 1.2rem; /* Parmakla basmak kolay olsun */
    }

    .hero-contact-info {
        width: 100%;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 1.5rem;
    }
}

/* --- 4. EKSTRA DAR TELEFONLAR (380px ve altı) --- */
@media (max-width: 380px) {
    .main-slogan {
        font-size: 1.8rem;
    }
    
    .logo-wrapper .brand-text {
        font-size: 1rem;
    }
}