/* Genel Ayarlar */
body {
    margin: 0;
    padding: 0;
    background-color: #000000; /* Tam Siyah */
    color: #e0e0e0; /* Soğuk gri */
    font-family: 'Lato', sans-serif; /* Okunabilir, modern font */
}

h1, h2, h3, nav a {
    font-family: 'Cinzel', serif; /* Başlıklar için keskin Gotik font */
}

/* Header ve Görsel */
.hero-image {
    position: relative;
    height: 350px;
    /* Arka plan resmini buraya eklemeyi unutma */
    background-image: url('radiohead_bg.jpg'); 
    background-size: cover;
    background-position: center;
    filter: grayscale(100%); /* Siyah beyaz yap */
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #333;
}

.overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Biraz daha karanlık */
}

h1 {
    position: relative;
    font-size: 6rem;
    color: #fff;
    letter-spacing: 15px; /* Harf aralarını açarak daha "epik" hava verelim */
    z-index: 2;
    margin: 0;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Menü Tasarımı */
nav {
    display: flex;
    justify-content: center;
    background-color: #0a0a0a;
    padding: 20px;
    border-bottom: 1px solid #222;
}

nav a {
    color: #888;
    text-decoration: none;
    margin: 0 30px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.4s;
}

nav a:hover {
    color: #fff;
    text-shadow: 0 0 8px #fff; /* Beyaz parıltı (Radiohead 'In Rainbows' tarzı) */
}

/* İçerik Düzeni */
main {
    max-width: 900px;
    margin: 60px auto;
    padding: 20px;
}

.album-showcase {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 30px;
    margin: 30px;
    background: linear-gradient(145deg, #0a0a0a, #000); /* Hafif degrade */
    border: 1px solid #1a1a1a;
}

.album-cover img {
    width: 250px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    filter: grayscale(50%); /* Hafif soluk */
    transition: 0.5s;
}

.album-cover img:hover {
    filter: grayscale(0%); /* Üzerine gelince renkler geri gelsin */
}

.album-info h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-top: 0;
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
    display: inline-block;
}

.year {
    display: block;
    margin-top: 5px;
    font-size: 0.9rem;
    color: #666;
    letter-spacing: 3px;
}

.album-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #bbb;
    margin-top: 20px;
}

/* Müzik Çalar Tasarımı */
.music-player-container {
    text-align: center;
    margin: 50px auto;
    width: 300px;
    padding: 20px;
    background: #0a0a0a;
    border: 1px solid #222;
}

.song-title {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #888;
}

/* Varsayılan oynatıcıyı biraz karanlık temaya uydurmak zordur ama 
   CSS filter ile renkleri ters çevirip uydurabiliriz */
audio {
    width: 100%;
    filter: invert(100%); 
}

/* Footer */
footer {
    text-align: center;
    padding: 50px 0;
    margin-top: 50px;
    border-top: 1px solid #111;
}

.social-links a {
    color: #444;
    font-size: 1.5rem;
    margin: 0 20px;
    transition: 0.3s;
}

.social-links a:hover {
    color: #fff;
    transform: scale(1.2);
}

.copyright {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #333;
}

.divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #333, transparent);
    margin: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    letter-spacing: 5px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

/* Grid Yapısı: Kartları otomatik yan yana dizer */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

/* Kartın Kendisi */
.project-card {
    background-color: #050505; /* Çok koyu gri */
    border: 1px solid #222;
    text-decoration: none;
    transition: all 0.4s ease; /* Yumuşak geçiş */
    display: block;
    overflow: hidden; /* Resim taşarsa gizle */
    position: relative;
}

/* Hover Efekti: Kartın üzerine gelince ne olsun? */
.project-card:hover {
    border-color: #fff; /* Kenarlık beyaz olsun */
    transform: translateY(-5px); /* Hafif yukarı kalksın */
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1); /* Beyaz hafif parıltı */
}

/* Kart Resmi */
.card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-bottom: 1px solid #222;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmi kutuya sığdır */
    filter: grayscale(100%); /* Başlangıçta siyah-beyaz */
    transition: 0.5s;
}

/* Hoverda Resim Efekti */
.project-card:hover .card-image img {
    filter: grayscale(0%); /* Renkler geri gelsin */
    transform: scale(1.1); /* Resim hafif zoom yapsın */
}

/* Kart Yazıları */
.card-content {
    padding: 20px;
    text-align: center;
}

.card-content h3 {
    margin: 0 0 10px 0;
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.card-content p {
    font-family: 'Lato', sans-serif;
    color: #888;
    font-size: 0.9rem;
    margin: 0;
    transition: 0.3s;
}

.project-card:hover .card-content p {
    color: #ccc; /* Yazı rengi açılsın */
}
.projects-section {
    padding: 100px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.project-box {
    position: relative;
    height: 300px;
    background-color: #000;
    border: 1px solid #1a1a1a;
    overflow: hidden;
    display: block;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(40%);
    transition: 0.6s ease;
}

/* Kutu üzerindeki yazı ve karartma katmanı */
.box-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background: rgba(0, 0, 0, 0.2);
}

.box-overlay span {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #555; /* Başta sönük gri */
    letter-spacing: 10px;
    transition: 0.5s;
}

/* Hover (Üzerine Gelince) Efektleri */
.project-box:hover {
    border-color: #fff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.project-box:hover img {
    filter: grayscale(0%) brightness(80%);
    transform: scale(1.05);
}

.project-box:hover .box-overlay span {
    color: #fff;
    letter-spacing: 15px; /* Yazı hafifçe genişlesin */
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}