/* Google Fonts - Poppins fontunu dahil et */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* Genel Stil Ayarları */
body {
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #f0f2f5;
    margin: 0;
    padding: 0;
    text-align: left;
    color: #333;
}

header {
    background: linear-gradient(to right, #0d74ae, #0b5c88);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

header .logo {
    height: 60px;
}

header h1 {
    margin: 0;
    font-size: 2em;
    font-weight: 700;
}

header p {
    margin: 0;
    font-size: 1.1em;
    text-align: center;
    width: 100%;
    font-weight: 400;
}

nav {
    background: linear-gradient(to right, #0b5c88, #084966);
    padding: 12px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-weight: 600;
    transition: color 0.3s ease, transform 0.3s ease;
}

nav a:hover {
    color: #f7a01d;
    transform: translateY(-2px);
}

.container {
    max-width: 1100px;
    margin: 30px auto;
    padding: 30px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.iki-sutunlu-icerik {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.metin-bolumu {
    flex: 2;
}

.sosyal-medya-bolumu {
    flex: 1;
    text-align: center;
}

.kutu-tasarim {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.katil-butonu {
    display: block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #f7a01d;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.katil-butonu:hover {
    background-color: #d68e1c;
}

.ikonlar {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px; /* İkonlar ve başlık arasına biraz boşluk ekliyoruz */
}

.ikonlar a {
    text-decoration: none;
    transition: transform 0.3s ease;
}

.ikonlar a:hover {
    transform: scale(1.1);
}

.ikonlar img {
    width: 80px; /* İkonların boyutunu büyütüyoruz */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Dergi Arşivi Sayfası İçin CSS */
.dergi-arsivi {
    padding: 20px;
    text-align: left;
}

.dergi-arsivi h2 {
    font-size: 2.5em;
    color: #0b5c88;
    margin-bottom: 10px;
}

.arsiv-aciklama {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
}

.dergi-kutulari {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
}

.dergi-link {
    width: 250px;
    max-width: 250px;
    text-decoration: none;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dergi-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.dergi-kapak {
    width: 100%;
    height: auto;
    display: block;
}

.dergi-bilgi {
    padding: 15px 10px;
    background-color: #f9f9f9;
    text-align: center;
}

.dergi-bilgi h4 {
    margin: 0;
    font-size: 1.1em;
    color: #0b5c88;
}

/* Liseli Bülteni Sayfası İçin CSS */
.yazilar-icerik {
    padding: 20px;
    text-align: center;
}

.yazi-kutulari {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
}

.yazi-link {
    display: flex;
    flex-direction: column;
    width: calc(50% - 20px);
    max-width: 600px;
    text-decoration: none;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yazi-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.yazi-gorsel-kapsayici {
    position: relative;
    height: 150px; 
    overflow: hidden;
}

.yazi-gorsel {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.yazi-etiket {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #ff4500;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}
.yazi-ikonu {
    font-size: 14px;
}

.yazi-bilgi {
    padding: 10px;
    background-color: #f9f9f9;
    text-align: center;
}

.yazi-bilgi h4 {
    margin: 0;
    font-size: 1.1em;
    color: #0b5c88;
}

/* Mobil cihazlar için responsive ayarlar */
@media (max-width: 768px) {
    header {
        padding: 15px;
        flex-direction: column;
        gap: 5px;
    }
    header h1 {
        font-size: 1.5em;
    }
    header p {
        display: block;
        font-size: 0.9em;
    }
    nav {
        display: flex;
        justify-content: center;
        gap: 15px;
        padding: 10px;
    }
    nav a {
        margin: 0;
        font-size: 0.9em;
    }
    .container {
        padding: 15px;
        margin: 20px auto;
    }
    .dergi-kutulari, .yazi-kutulari {
        flex-direction: column;
        align-items: center;
    }
    .dergi-link {
        width: 80%;
        max-width: 250px;
    }
    .yazi-link {
        width: 80%;
        max-width: none;
    }

    .iki-sutunlu-icerik {
        flex-direction: column;
    }
    
    .sosyal-medya-bolumu .ikonlar img {
        width: 60px;
        height: auto;
    }
    
    .ikonlar {
        display: flex;
        justify-content: center;
        gap: 15px;
    }
    
    .sosyal-medya-bolumu {
        padding: 20px;
        text-align: center;
    }
    
    footer {
        width: 100%;
        text-align: center;
        padding: 10px 0;
        background-color: #0d74ae;
        color: white;
        font-size: 0.9em;
    }
}
