/* --- EDITORIAL DESIGN VARIABLES --- */
:root {
    --bg-paper: #f9f7f2;       /* Dergi Kağıdı Rengi */
    --text-black: #111111;     /* Mürekkep Siyahı */
    --accent-gold: #c5a059;    /* Lüks Altın */
    --line-color: #111111;     /* İnce Çizgiler */
    --font-head: 'Playfair Display', serif; /* Başlıklar (Serif) */
    --font-body: 'Lato', sans-serif;        /* Metinler (Sans) */
    --max-width: 1200px;
    --padding-side: 40px;
}

/* --- RESET --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-paper);
    color: var(--text-black);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.8;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-size: 16px;
}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { width: 100%; height: auto; display: block; object-fit: cover; }

/* --- TYPOGRAPHY (EDITORIAL) --- */
h1, h2, h3 {
    font-family: var(--font-head);
    color: var(--text-black);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 { font-size: 4.5rem; letter-spacing: -1px; }
h2 { font-size: 3rem; font-style: italic; border-top: 1px solid var(--line-color); padding-top: 20px; display: inline-block; }
h3 { font-size: 1.5rem; text-transform: uppercase; letter-spacing: 2px; }
p { margin-bottom: 20px; max-width: 60ch; color: #333; }

/* Drop Cap (Baş Harf Büyütme) */
.drop-cap::first-letter {
    float: left;
    font-family: var(--font-head);
    font-size: 4.5rem;
    line-height: 0.8;
    margin-right: 10px;
    color: var(--text-black);
}

/* --- LAYOUTS --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--padding-side);
    flex: 1;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }

/* --- HEADER --- */
header {
    padding: 40px 0;
    border-bottom: 1px solid var(--line-color);
    margin-bottom: 60px;
    position: sticky;
    top: 0;
    background: var(--bg-paper);
    z-index: 1000;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--padding-side);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.nav-links { display: flex; gap: 40px; }

.nav-links a {
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 700;
    border-bottom: 1px solid transparent;
}

.nav-links a:hover, .nav-links a.active { border-bottom: 1px solid var(--text-black); }

.burger { display: none; cursor: pointer; font-size: 1.5rem; }

/* --- COMPONENTS --- */
.editorial-card {
    border-right: 1px solid var(--line-color);
    padding-right: 30px;
}
.editorial-card:last-child { border-right: none; }

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--text-black);
    color: var(--bg-paper);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    border: 1px solid var(--text-black);
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: transparent;
    color: var(--text-black);
}

.hero-img {
    height: 600px;
    width: 100%;
    filter: grayscale(20%);
    transition: 0.5s;
}
.hero-img:hover { filter: grayscale(0%); }

/* --- FORMS --- */
.form-group { margin-bottom: 30px; border-bottom: 1px solid #ccc; }
label { display: block; margin-bottom: 5px; font-family: var(--font-head); font-style: italic; font-size: 1.2rem; }
input, textarea, select {
    width: 100%;
    padding: 15px 0;
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-black);
    outline: none;
}
input:focus, textarea:focus { border-bottom: 1px solid var(--text-black); }

/* --- FOOTER --- */
footer {
    border-top: 4px double var(--text-black);
    padding: 80px 0 40px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--padding-side);
}

.footer-col h4 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 20px; font-style: italic; }
.footer-col a { display: block; margin-bottom: 10px; font-size: 0.9rem; }
.footer-col a:hover { text-decoration: underline; }

.tr-phone {
    font-family: var(--font-head);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.2rem; }
    
    .nav-links {
        display: none;
        position: fixed; top: 95px; left: 0; width: 100%; height: 100vh;
        background: var(--bg-paper);
        flex-direction: column; padding: 40px; text-align: center;
        border-top: 1px solid var(--line-color);
    }
    .nav-links.active { display: flex; }
    .burger { display: block; }
    
    .grid-2, .grid-3, .footer-content { grid-template-columns: 1fr; gap: 40px; }
    .editorial-card { border-right: none; border-bottom: 1px solid var(--line-color); padding-bottom: 30px; padding-right: 0; }
    .editorial-card:last-child { border-bottom: none; }
    .hero-img { height: 400px; }
}