* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial;
    background: gray;
}

/* MENU */
.menu {
        font-family: 'Poppins', Arial, sans-serif;
    background: #222;
}

.menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

.menu a {
    color: white;
    padding: 15px 20px;
    display: block;
    text-decoration: none;
    transition: background 0.8s;
}

.menu a:hover {
    background: #8B0000
;
}

/* GENEL ALAN */
.container {
    width: 90%;
    margin: 20px auto;
}

/* BANNER */
.banner {
    display: flex;
    align-items: center;
    background: #ccc;
    text-align: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.banner img{
    width: 700px;
    height: auto;
    display: block;
}
.banneryazi{
    font-family: 'Poppins', Arial, sans-serif;
    width: 300px;
}

/* ANA KISIM */
.main {
    display: flex;
    gap: 10px;
}

/* SOL TARAF */
.content {
    gap: 10px;
    align-items: center;
    display: flex;

}

.iframe-box {
    width: 500px;
}
.iframe-box iframe{
    width: 500px;
    height: 280px;
}

.text-box {
    width: 400px;
    padding: 0px 15px;
}
.gallery {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

/* RESMİN KENDİSİNE DEĞİL, KAPSAYICIYA BOY VER */
.galeri-item {
    width: 200px;
    height: 120px;
    overflow: hidden;   /* 🔥 taşanı kes */
}

/* RESİM ARTIK KAÇAMAZ */
.galeri-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


