/* Genel Stil */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
}

/* Menü barı */
.menu {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgb(217, 26, 73);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
}

/* Sosyal medya ikonları */
.social-media {
    display: flex;
    gap: 15px;
}

.social-media a img {
    width: 30px;
    height: auto;
}

/* Hamburger menü simgesi */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Menü */
.menu ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.menu ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

/* Sayfa içeriği */
.content {
    margin-top: 60px;
    padding: 20px;
}

/* Görsel Alanı */
.image-container {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

.responsive-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* İçerik Alanı */
.outer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.yazi {
    width: 1000px;
    background-color: white;
    padding: 20px;
    border: 0px solid #ccc;
    text-align: center;
    font-size: 24px;
}

/* Footer */
footer {
    position: relative;
    width: 100%;
    background: rgb(217, 26, 73);
    padding: 15px 0;
    text-align: center;
    color: white;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .menu ul {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 15px 0;
        background: rgb(217, 26, 73);
        position: absolute;
        top: 60px;
        left: 0;
    }

    .hamburger {
        display: block;
    }

    .menu.open ul {
        display: flex;
    }

    .image-container {
        height: 400px;
    }

    .outer-container {
        padding: 10px;
    }

    .yazi {
        width: 90%;
        font-size: 18px;
        padding: 15px;
    }
}
/* Yeni Ekleme: Özel sınıf kullanarak sadece bu bölümdeki düzeni etkileyelim */

/* Custom Container düzeni */
.custom-container {
    display: flex;
    flex-direction: column; /* Resmi yukarıya alıyoruz */
    justify-content: center; /* Yazıyı ortalar */
    align-items: center; /* Hem resim hem yazı ortalanır */
    gap: 20px;
    text-align: center; /* Yazıyı ortalar */
    padding: 20px;
    margin-top: 30px;
}

/* Resim Stili */
.custom-image {
    width: 400px; /* Resmin genişliği */
    height: 400px; /* Resmin yüksekliği */
    object-fit: cover; /* Resmin boyutları değiştirildiğinde düzgün görünmesi için */
    border-radius: 8px; /* Köşe yuvarlama */
    box-shadow: 0 0 15px rgba(0,0,0,0.2); /* Hafif gölge */
    margin-bottom: 20px; /* Resim ile yazı arasında boşluk */
}

/* Yazı Stili */
.custom-text {
    max-width: 800px; /* Yazının genişliği */
    font-size: 18px; /* Yazı boyutu */
    color: #333;
}

.custom-text h2 {
    font-size: 32px;
    font-weight: bold;
    color: #222;
    margin-bottom: 20px;
}

.custom-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px; /* Paragraflar arasında ekstra boşluk */
}

.custom-text strong {
    font-weight: bold;
    color: #333;
}