/* --- Değişkenler --- */
:root {
    --color-black: #111111;
    --color-white: #ffffff;
    --color-grey: #f4f4f4;      /* Paper Grey */
    --color-border: #e0e0e0;
    --color-accent: #800020;    /* Burgundy / Bordo */
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Source Sans Pro', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-sans);
    background-color: var(--color-white);
    color: var(--color-black);
    line-height: 1.7;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { width: 90%; max-width: 1100px; margin: 0 auto; }

/* --- Ticker --- */
.ticker-wrap { background-color: var(--color-black); color: var(--color-white); padding: 5px 0; overflow: hidden; white-space: nowrap; font-size: 0.8rem; letter-spacing: 1px; }
.ticker-item { display: inline-block; animation: ticker 20s linear infinite; padding-left: 100%; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

/* --- Header --- */
.mag-header { padding: 30px 0; border-bottom: 4px solid var(--color-black); margin-bottom: 30px; }
.header-flex { display: flex; justify-content: space-between; align-items: center; padding-bottom: 20px; border-bottom: 1px solid var(--color-border); }

.logo { font-family: var(--font-serif); font-size: 3rem; font-weight: 700; letter-spacing: -1px; color: var(--color-black); line-height: 1; }
.dot { color: var(--color-accent); }

.menu-btn, .search-icon { font-size: 1.5rem; cursor: pointer; background: none; border: none; }

.cat-nav { padding-top: 15px; }
.cat-nav ul { display: flex; justify-content: center; gap: 40px; }
.cat-nav a { font-family: var(--font-sans); font-weight: 600; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; color: #555; }
.cat-nav a:hover, .cat-nav a.active { color: var(--color-black); }

.btn-sub { background-color: var(--color-black); color: var(--color-white) !important; padding: 5px 15px; }
.btn-sub:hover { background-color: var(--color-accent); }

/* --- Mobile Menu --- */
.mobile-drawer {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--color-white); z-index: 2000;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    transform: translateY(-100%); transition: 0.4s ease;
}
.mobile-drawer.active { transform: translateY(0); }
.close-btn { position: absolute; top: 30px; right: 30px; font-size: 2rem; border: none; background: none; cursor: pointer; }
.mobile-drawer a { font-family: var(--font-serif); font-size: 2.5rem; margin: 15px 0; color: var(--color-black); font-weight: 700; }

/* --- Hero Article --- */
.hero-article { position: relative; height: 500px; display: flex; align-items: flex-end; background-size: cover; background-position: center; margin-bottom: 60px; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); }

.hero-content { position: relative; z-index: 1; color: var(--color-white); padding-bottom: 40px; }
.category-tag { background-color: var(--color-accent); padding: 5px 10px; font-size: 0.8rem; font-weight: bold; text-transform: uppercase; margin-bottom: 15px; display: inline-block; }
.hero-content h1 { font-family: var(--font-serif); font-size: 3.5rem; line-height: 1.1; margin-bottom: 15px; }
.excerpt { font-size: 1.2rem; margin-bottom: 20px; max-width: 600px; font-weight: 300; }
.read-more { font-weight: bold; border-bottom: 2px solid var(--color-white); padding-bottom: 3px; }

/* --- Magazine Layout --- */
.section-padding { padding: 0 0 80px 0; }
.mag-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; }

/* Articles */
.post-card { display: flex; gap: 30px; margin-bottom: 40px; border-bottom: 1px solid var(--color-border); padding-bottom: 40px; }
.post-card:last-child { border-bottom: none; }
.post-card img { width: 250px; height: 200px; object-fit: cover; }
.post-info { flex: 1; }
.cat { font-size: 0.8rem; color: var(--color-accent); font-weight: bold; text-transform: uppercase; }
.post-info h3 { font-family: var(--font-serif); font-size: 1.8rem; margin: 10px 0; line-height: 1.2; }
.post-info p { color: #555; margin-bottom: 15px; font-size: 1rem; }
.link-u { font-weight: bold; font-size: 0.9rem; text-decoration: underline; }

/* Sidebar */
.sidebar { border-left: 1px solid var(--color-border); padding-left: 40px; }
.widget { margin-bottom: 50px; }
.widget h4 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 20px; border-bottom: 2px solid var(--color-black); padding-bottom: 10px; }

.pick-list li { display: flex; align-items: baseline; margin-bottom: 15px; font-family: var(--font-serif); font-size: 1.1rem; }
.pick-list span { font-weight: bold; color: var(--color-accent); margin-right: 15px; font-family: var(--font-sans); }
.pick-list a:hover { color: var(--color-accent); }

.newsletter-box { background-color: var(--color-grey); padding: 30px; text-align: center; }
.newsletter-box input { width: 100%; padding: 10px; margin: 15px 0; border: 1px solid #ccc; }
.newsletter-box button { width: 100%; background: var(--color-black); color: #fff; padding: 10px; border: none; cursor: pointer; font-weight: bold; }

/* --- Article Read (About) --- */
.article-header { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--color-border); }
.article-header .date { font-size: 0.9rem; color: #888; display: block; margin-bottom: 10px; letter-spacing: 1px; }
.article-header h1 { font-family: var(--font-serif); font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; }
.author { font-style: italic; color: #555; }

.article-body { max-width: 800px; margin: 0 auto; font-size: 1.2rem; }
.dropcap { float: left; font-family: var(--font-serif); font-size: 5rem; line-height: 0.8; margin-right: 10px; color: var(--color-accent); }
.article-body p { margin-bottom: 25px; }
blockquote { font-family: var(--font-serif); font-size: 2rem; text-align: center; margin: 40px 0; color: var(--color-accent); padding: 0 40px; }
.img-full img { width: 100%; margin: 30px 0 10px; }
.caption { display: block; text-align: center; font-size: 0.9rem; color: #888; font-style: italic; }

/* --- Review List --- */
.page-head { text-align: center; margin-bottom: 60px; }
.page-head h1 { font-family: var(--font-serif); font-size: 3rem; margin-bottom: 10px; }

.review-list { max-width: 800px; margin: 0 auto; }
.review-item { display: flex; gap: 30px; margin-bottom: 40px; border-bottom: 1px solid var(--color-border); padding-bottom: 40px; }
.review-score { font-family: var(--font-serif); font-size: 3rem; color: var(--color-accent); font-weight: bold; line-height: 1; }
.review-content h3 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 10px; }
.review-meta { font-size: 0.9rem; color: #888; margin-bottom: 15px; font-weight: bold; text-transform: uppercase; }

/* --- Contact --- */
.contact-box { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-left h2 { font-family: var(--font-serif); font-size: 2.5rem; margin-bottom: 20px; }
address { font-style: normal; margin: 30px 0; line-height: 1.8; }
.sub-info h4 { font-family: var(--font-serif); margin-bottom: 10px; }
.sub-info ul { list-style: square; padding-left: 20px; }

.mag-form .input-group { margin-bottom: 20px; }
.mag-form label { display: block; font-weight: bold; margin-bottom: 5px; font-size: 0.9rem; }
.mag-form input, .mag-form select, .mag-form textarea { width: 100%; padding: 12px; border: 1px solid #ccc; font-family: var(--font-sans); }
.btn-black { background-color: var(--color-black); color: #fff; padding: 15px 40px; border: none; cursor: pointer; font-weight: bold; }

/* --- Impressum --- */
.impressum { max-width: 700px; margin: 0 auto; text-align: center; }
.impressum h1 { font-family: var(--font-serif); font-size: 2.5rem; margin-bottom: 20px; }
.line-sep { width: 50px; height: 2px; background: var(--color-black); margin: 0 auto 40px; }
.imp-block { margin-bottom: 30px; }
.imp-block h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; color: #888; margin-bottom: 5px; }
.imp-block p { font-family: var(--font-serif); font-size: 1.2rem; }

/* --- Footer --- */
.mag-footer { border-top: 4px solid var(--color-black); padding: 60px 0; margin-top: auto; text-align: center; }
.f-brand { font-family: var(--font-serif); font-size: 2rem; font-weight: bold; margin-bottom: 20px; }
.f-social a { color: #555; margin: 0 15px; font-weight: bold; font-size: 0.9rem; }
.copyright { margin-top: 30px; font-size: 0.8rem; color: #999; }

@media (max-width: 992px) {
    .cat-nav { display: none; }
    .post-card { flex-direction: column; }
    .post-card img { width: 100%; height: auto; }
    .mag-layout, .contact-box { grid-template-columns: 1fr; }
    .sidebar { border-left: none; padding-left: 0; border-top: 1px solid var(--color-border); padding-top: 40px; }
    .review-item { flex-direction: column; gap: 10px; text-align: center; }
    .hero-content h1 { font-size: 2.5rem; }
}