/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #fff;
    --bg-secondary: #fafafa;
    --bg-tertiary: #f5f5f5;
    --text-primary: #000;
    --text-secondary: #333;
    --text-muted: #666;
    --text-light: #999;
    --border-color: #eee;
    --shadow: rgba(0, 0, 0, 0.1);
    --header-bg: #fff;
    --card-bg: #fff;
    --button-bg: #000;
    --button-text: #fff;
    --button-hover: #333;
    --link-color: #000;
    --link-hover: #333;
    --scrollbar-track: #f1f1f1;
    --scrollbar-thumb: #888;
    --scrollbar-thumb-hover: #555;
    --quote-bg: #f8f8f8;
}

[data-theme="dark"] {
    --bg-primary: #000;
    --bg-secondary: #000;
    --bg-tertiary: #1a1a1a;
    --text-primary: #fff;
    --text-secondary: #ccc;
    --text-muted: #999;
    --text-light: #666;
    --border-color: #333;
    --shadow: rgba(255, 255, 255, 0.1);
    --header-bg: #000;
    --card-bg: #111;
    --button-bg: #fff;
    --button-text: #000;
    --button-hover: #ccc;
    --link-color: #fff;
    --link-hover: #ccc;
    --scrollbar-track: #1a1a1a;
    --scrollbar-thumb: #666;
    --scrollbar-thumb-hover: #999;
    --quote-bg: #1a1a1a;
}

html {
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Container for centered content */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

a {
    text-decoration: none;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/*
Theme Name: Artkolik
Theme URI: https://example.com/artkolik
Author: metafora creative studio
Author URI: https://metafora.com.tr
Description: artkolik web sitesi için özel hazırlanmış tema.
Version: 1.0.0
License: Proprietary
Text Domain: artkolik
*/

/* Not: Asıl stiller `styles.css` ve `article-styles.css` dosyalarındadır. Bu dosya tema başlığı içindir. */


