@charset "utf-8";
/* CSS Document */

.detay-kapsayici {
    padding: 50px 50px 50px 50px;
    max-width: 1400px;
    margin: 0 auto;
}



.ayirici-cizgi {
    width: 150px;
    height: 3px;
    background: linear-gradient(to right, transparent, #6c789d, transparent);
    margin: 15px auto;
}

.icerik-esnek-yapi {
    display: flex; /*içindeki tüm öğeleri yan yaba dizer*/
    gap: 40px; /* flex içindeki ögelerin arasına boşluk bırakmaya yarar*/
    align-items: flex-start; /*öğelerin dikey eksende hizalanmasını sağlar*/
}

.yan-hizli-menu {
    flex: 0 0 200px; /*öğeyi tam 200 px tut*/
    background: rgba(12, 23, 53, 0.9);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #3a506b;
    position: sticky; /*vakti gelince sabit kalıyor ekranda*/
    top: 100px;
}

.menu-baslik {
    display: block;
    font-size: 0.8rem;
    color: #6c789d;
    margin-bottom: 15px;
    font-weight: bold;
    text-align: center;
}

.yan-hizli-menu a {
    display: block;
    color: #ddd;
    text-decoration: none;
    padding: 12px;
    margin-bottom: 8px;
    border-radius: 8px;
    background: rgba(255,255,255,0.03);
    transition: 0.3s;
    font-size: 0.9rem;
    text-align: center;
}

.yan-hizli-menu a:hover, .yan-hizli-menu a.aktif {
    background: #6c789d;
    color: #fff;
    transform: translateX(5px);
}

.bilgi-kart-grubu {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.istatistik-kart {
    flex: 1;
    background: rgba(108, 120, 157, 0.1);
    padding: 15px;
    border-radius: 12px;
    border-bottom: 3px solid #6c789d;
    text-align: center;
}

.istatistik-kart strong {
    display: block;
    font-size: 0.7rem;
    color: #6c789d;
    margin-bottom: 5px;
}

.istatistik-kart span {
    font-size: 1.1rem;
    color: #fff;
}

.metin-icerik {
    flex: 2;
}

.metin-icerik h4 {
    line-height: 1.8;
    color: #e0e0e0;
    font-weight: 300;
}

.metin-icerik h3 {
    margin-top: 40px;
    color: #6c789d;
    font-size: 1.5rem;
}
.bilgi-notu {
    margin-top: 20px;
    font-size: 0.8rem;
    font-style: italic;
    color: #6c789d;
}



.gorsel-panel {
    flex: 1.5;
    text-align: center;
}

.donen-asteroid-cerceve {
    position: relative;
    padding: 20px;
}

.ana-gorsel {
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(0 0 30px rgba(108, 120, 157, 0.4));
    animation: yavasDonus 60s linear infinite;
}

@keyframes sagdanGiris {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.gorev img{
	height:400px;
	width:400px;
	border-radius: 15px;
}

.baslik-alani {
    text-align: center;
    margin-bottom: 50px;
	 opacity: 0;
    transform: translateX(80px); /* SAĞDAN BAŞLASIN */
    animation: sagdanGiris 1s ease forwards;
    animation-delay: 0.3s;
}
.baslik-alani h1 {
    font-size: 3rem;
    letter-spacing: 8px;
    color: #fff;
    text-shadow: 0 0 20px rgba(108, 120, 157, 0.5);
}