/* @import ile HBR/Economist makale fontu (Merriweather) ve Vogue başlık fontunu (Playfair) Google'dan çekiyoruz */
@import url('https://googleapis.com');

body {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    font-family: 'Merriweather', serif; /* HBR / Economist uzun okuma fontu */
    color: #111111;
}

/* Üst Bar ve Tescilli Logo Alanı */
header {
    background-color: #111111; /* Seçtiğimiz koyu antrasit/siyah zemin */
    padding: 30px 20px;
    text-align: center;
}

.main-logo {
    max-width: 400px;
    height: auto;
}

/* Vogue Tarzı 7'li Navigasyon Menüsü */
nav {
    border-bottom: 1px solid #e5e5e5;
    padding: 15px 0;
    text-align: center;
    background: #ffffff;
}

nav a {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #555555;
    text-decoration: none;
    margin: 0 15px;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav a:hover {
    color: #00C2CB; /* İmza turkuaz renginiz */
}

/* Makale Düzeni ve Çekici Vurgu Alanları */
.vogue-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

h1.article-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.pull-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 26px;
    color: #00C2CB;
    text-align: center;
    margin: 40px auto;
    border-left: 3px solid #111111;
    padding-left: 20px;
}
