@charset "utf-8";
/* CSS Document */
.bolum-basligi {
      opacity: 0;
    transform: translateY(40px);
    animation: bolumGiris 1.2s ease forwards;
    animation-delay: 0.2s;
     text-align: center; 
}
@keyframes bolumGiris {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bolum-basligi h1 {
    font-size: 48px;
    letter-spacing: 3px; 
    margin-bottom: 10px;
}


.astronot-liste-kapsayici {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 20px;
    color: #eaeaea;
}

.bolum-basligi p {
    color: #9aa4c7;
    font-size: 18px;
}

.kategori-baslik {
    margin: 60px 0 30px;
}

.kategori-baslik h2 {
    font-size: 28px;
    letter-spacing: 2px;
}

.ayirici-cizgi {
    width: 150px;
    height: 3px;
    background: linear-gradient(to right, transparent, #6c789d, transparent);
    margin: 15px auto;
}


.astronot-izgara {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
}

.astronot-kart {
	height:250px;
    background: rgba(12, 23, 53, 0.8);
    border-radius: 18px;
    padding: 25px 20px;
    text-decoration: none;
    color: inherit;
    text-align: center;
    transition: all 0.35s ease;
}

.astronot-kart img {
    width: 180px;
	height:180px;
    max-width: 100%;
    margin-bottom: 20px;
	border-radius: 18px;
    transition: transform 0.4s ease;
}

.astronot-kart:hover {
    transform: translateY(-8px) scale(1.05);/*öge yukarı 8 px kayar ve scale ile orjinal boyut %105 olur*/
    box-shadow: 0 20px 50px rgba(108, 121, 255, 0.25);
}

.astronot-kart:hover img {
    transform: scale(1.15);
}

.detay-kapsayici {
    padding: 50px 50px 50px 50px;
    max-width: 1400px;
    margin: 0 auto;
}


.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;
}

@keyframes sagdanGiris {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.baslik-alani h1 {
    font-size: 3rem;
    letter-spacing: 8px;
    color: #fff;
    text-shadow: 0 0 20px rgba(108, 120, 157, 0.5);
}

.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);
}

.icerik-esnek-yapi {
    display: flex; 
    gap: 40px; 
    align-items: flex-start;
}

.metin-icerik {
    flex: 2; /*diğer kısımların 2 katı genişlik*/
}

.metin-icerik h4 {
    line-height: 1.8;
    color: #e0e0e0;
    font-weight: 300;
}

.metin-icerik img {
    border-radius: 15px;
    width: 400px;
    height: 300px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.gorsel-sol {
    float: left;
    margin-right: 25px;
}

.gorsel-sag {
    float: right;
    margin-left: 25px;
}

.metin-icerik img:hover{
	box-shadow: 0 0 20px rgba(108, 121, 255, 0.8),
              0 0 40px rgba(0, 198, 255, 0.6);
}

















