/* --- MANIFESTO SECTION - PURE OVERLAY STYLE --- */
.manifesto-section {
    padding: 80px 0; /* Masaüstü için ideal boşluk */
    background: #0b0a0a; /* Yazıların ve ışıkların görünmesi için koyu zemin şart */
    position: relative;
    overflow: hidden;
    color: #F8F9FA;
}

/* Arka plana derinlik veren soft overlay dairesi */
.manifesto-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -10%;
    width: 70%;
    height: 200%;
    /* Sol taraftan vuran hafif lacivert ışık hüzmesi */
    background: radial-gradient(circle, rgba(16, 59, 123, 0.15) 0%, transparent 70%);
    z-index: 1;
}

.manifesto-section::after {
    content: "";
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    /* Sağ taraftan vuran hafif turuncu ışık hüzmesi */
    background: radial-gradient(circle, rgba(255, 107, 0, 0.12) 0%, transparent 70%);
    z-index: 1;
}

.manifesto-section .container {
    position: relative;
    z-index: 10; /* Yazıların ışık efektinin üstünde kalması için */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.manifesto-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

.mission-box, .vision-box {
    flex: 1;
    padding: 40px;
    /* Cam efekti (Glassmorphism) ama çok hafif ve karanlık */
    background: rgba(3, 3, 3, 0.317);
    border: 2px solid rgba(255, 255, 255, 0.37);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.mission-box:hover, .vision-box:hover {
    transform: translateY(-5px);
    border-color: rgba(236, 164, 7, 0.5); /* Hoverda amber parlaması */
}

/* --- TİPOGRAFİ --- */
.amber-text {
    color: #FFB000; /* Senin meşhur Amber rengin */
    font-family: 'Expletus Sans', cursive;
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.manifesto-section p {
    font-size: 1.15rem;
    line-height: 1.6;
    opacity: 0.9;
    font-weight: 300;
}

/* --- DİKEY AYIRICI --- */
.divider-vertical {
    width: 3px;
    height: 190px;
    background: linear-gradient(to bottom, transparent, rgba(255, 176, 0, 0.5), transparent);
}

/* --- ALT SLOGAN HATTI --- */
/* --- SLOGAN HATTI (SIKIŞTIRILMIŞ VERSİYON) --- */
/* --- SLOGAN HATTI VE ALT ÇİZGİ --- */
.slogan-line {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08); 
    padding: 25px 0 15px 0; /* Alt boşluğu biraz daralttık */
    margin-top: 20px;
    position: relative; /* Çizgiyi konumlandırmak için şart */
    display: inline-block; /* Çizginin yazı boyunda kalması için */
    width: 100%;
}

.slogan-line h4 {
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 400;
    color: #fdfeffec;
    opacity: 0.8;
    margin-bottom: 15px; /* Çizgiyle yazı arasındaki mesafe */
    display: inline-block;
    position: relative;
}

/* --- İŞTE O ŞIK ALT ÇİZGİ --- */
.slogan-line h4::after {
    content: "";
    position: absolute;
    bottom: -8px; /* Yazının 8px altında */
    left: 10%; /* Çizgi tam %100 değil, %80 genişlikte olsun ki zarif dursun */
    width: 80%;
    height: 1px;
    
    /* MERKEZDEN UÇLARA DOĞRU KAYBOLAN GEÇİŞ (AMBER TONUNDA) */
    background: linear-gradient(
        to right, 
        transparent, 
        rgba(255, 176, 0, 0.8), /* Amber rengi merkezde parlar */
        transparent
    );
    
    /* HAFİF BİR IŞIK YANSIMASI (GLOW) */
    box-shadow: 0px 0px 8px rgba(255, 176, 0, 0.4);
}

/* --- 1. BÜYÜK EKRANLAR (Desktop) --- */
@media screen and (min-width: 1025px) {
    .manifesto-grid {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 60px;
    }
    .mission-box, .vision-box {
        flex: 1;
    }
}

/* --- 2. TABLETLER (1024px ve altı) --- */
@media screen and (max-width: 1024px) {
    .manifesto-section {
        padding: 60px 0;
    }
    
    .manifesto-grid {
        gap: 30px;
    }

    .mission-box, .vision-box {
        padding: 30px;
    }

    .divider-vertical {
        height: 150px; /* Ayırıcıyı biraz kısalttık */
    }

    .amber-text {
        font-size: 1.3rem;
    }
}

/* --- 3. MOBİL (768px - Samsung, iPhone vb.) --- */
@media screen and (max-width: 768px) {
    .manifesto-section {
        padding: 50px 0;
    }

    .manifesto-grid {
        flex-direction: column; /* Kutular alt alta */
        text-align: center;
        gap: 0;
    }

    /* Dikey çizgiyi yatay çizgiye çeviriyoruz */
    .divider-vertical {
        width: 60%;
        height: 2px;
        margin: 40px auto;
        background: linear-gradient(to right, transparent, rgba(255, 176, 0, 0.5), transparent);
    }

    .mission-box, .vision-box {
        width: 100%;
        background: rgba(255, 255, 255, 0.05); /* Mobilde biraz daha belirgin yaptık */
        border-width: 1px; /* Mobilde daha zarif dursun */
    }

    .mission-box:hover, .vision-box:hover {
        transform: none; /* Mobilde hover efektini kapattık (UX için daha iyi) */
    }

    .manifesto-section p {
        font-size: 1rem;
    }

    .slogan-line h4 {
        font-size: 1rem;
        padding: 0 10px;
    }

    /* Alt çizgi mobilde daha dar olsun */
    .slogan-line h4::after {
        width: 60%;
        left: 20%;
    }
}

/* --- 4. ÇOK KÜÇÜK EKRANLAR (400px altı) --- */
@media screen and (max-width: 400px) {
    .amber-text {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .manifesto-section p {
        font-size: 0.9rem;
    }
}