body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background: #000;
    font-family: 'Arial Black', sans-serif;
    color: white;
}

.ana-cerceve { 
    min-height: 100vh;
    box-sizing: border-box;
    border: 10px solid #8b0000;
    background: #111;
    display: flex;
    flex-direction: column;
}

.ust-baslik { 
    background-color: #8b0000;
    background-image: url('https://tenor.com/tr/view/21savage-sheyaa-bin-abraham-joseph-rapper-gif-15034896'); 
    background-size: cover;
    background-position: center;
    color: black; 
    padding: 80px 20px; 
    text-align: center;
    border-bottom: 5px solid #8b0000;
}

.ust-baslik h1 {
    background: rgba(255, 255, 255, 0.9);
    display: inline-block;
    padding: 10px 30px;
    margin: 0;
    border: 3px solid #000;
}

.menu { 
    display: flex; 
    background: #222; 
    border-bottom: 2px solid #8b0000; 
}

.menu a { 
    flex: 1; 
    padding: 15px; 
    color: white; 
    text-decoration: none; 
    text-align: center; 
    font-weight: bold; 
    border-right: 1px solid #333; 
}

.menu a:hover { 
    background: #8b0000; 
    color: black; 
}

.album-cerceve { 
    display: grid; 
    grid-template-columns: 1fr 1fr 1fr; 
    gap: 20px; 
    padding: 30px; 
}

.album-foto-cerceve { 
    border: 2px solid #8b0000; 
    background: #000; 
    padding: 10px; 
    text-align: center; 
}

.album-foto-cerceve img { 
    width: 100%; 
    height: 280px; 
    object-fit: cover; 
    display: block;
}

.album-foto-cerceve h4 { 
    color: #8b0000; 
    margin: 15px 0 5px 0; 
}

.galeri-listesi { 
    padding: 40px; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 30px; 
}

.foto-kutu { 
    border: 2px solid #8b0000; 
    width: 65%; 
    background: #000; 
}

.foto-kutu img { 
    width: 100%; 
    height: auto; 
    display: block; 
}

.foto-kutu p { 
    display: none; 
} 

.iletisim-icerik { 
    display: flex; 
    gap: 40px; 
    padding: 40px; 
}

.form-tarafi { 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
}

.form-tarafi input, 
.form-tarafi textarea { 
    padding: 15px; 
    background: #222; 
    border: 2px solid #8b0000; 
    color: white; 
}

.form-tarafi button { 
    padding: 15px; 
    background: #8b0000; 
    color: black; 
    font-weight: bold; 
    border: none; 
}

@media screen and (max-width: 768px) {
    .menu { 
        flex-direction: column; 
    }
    
    .album-cerceve { 
        grid-template-columns: 1fr; 
    }
    
    .iletisim-icerik { 
        flex-direction: column; 
    }
    
    .foto-kutu { 
        width: 90%; 
    }
}

.alt-bilgi { 
    padding: 20px; 
    text-align: center; 
    color: #666; 
    margin-top: auto; 
}