/*
Theme Name: Şikayet Çözüm Merkezi
Version: 1.0
Author: Zencoder
Description: Şikayet çözüm merkezi teması
*/

:root {
    --color-primary: #13ecec;
    --color-background-light: #f6f8f8;
    --color-background-dark: #102222;
    --color-brand-turquoise: #40E0D0;
    --color-brand-pistachio: #93C572;
    --color-brand-dark-gray: #2F2F2F;
    --color-brand-light-gray: #F5F5F5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: var(--color-brand-turquoise);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-brand-pistachio);
}

/* Containers */
.layout-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.layout-content-container {
    width: 100%;
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="search"],
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

/* Buttons */
button,
.button {
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    border-radius: 0.5rem;
}

button:hover,
.button:hover {
    opacity: 0.9;
}

/* Status Classes */
.text-brand-pistachio {
    color: var(--color-brand-pistachio);
}

.text-orange-500 {
    color: #f97316;
}

.text-blue-500 {
    color: #3b82f6;
}

.text-red-500 {
    color: #ef4444;
}

/* Comments */
.comment-list {
    list-style: none;
    padding: 0;
}

.comment-list li {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 0.5rem;
}

.comment-list .children {
    margin-left: 2rem;
    margin-top: 1rem;
}

/* Pagination */
.posts-navigation,
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.page-numbers {
    display: inline-flex;
    gap: 0.25rem;
}

.page-numbers a,
.page-numbers span {
    padding: 0.5rem 0.75rem;
    border-radius: 0.25rem;
    background-color: #f0f0f0;
    color: var(--color-brand-dark-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-numbers a:hover,
.page-numbers .current {
    background-color: var(--color-brand-turquoise);
    color: white;
}

/* Dark Mode */
body.dark {
    background-color: var(--color-background-dark);
    color: #f0f0f0;
}

/* Responsive */
@media (max-width: 768px) {
    .hidden.md\:flex {
        display: none;
    }
    
    .layout-content-container {
        padding: 0 1rem;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 1.875rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .grid {
        grid-template-columns: 1fr !important;
    }
}

/* Material Symbols */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Prose */
.prose {
    max-width: 65ch;
    line-height: 1.75;
}

.prose p {
    margin-bottom: 1rem;
}

.prose strong {
    font-weight: 700;
}

.prose em {
    font-style: italic;
}

.prose blockquote {
    border-left: 4px solid var(--color-brand-turquoise);
    padding-left: 1rem;
    margin-left: 0;
    margin-bottom: 1rem;
    font-style: italic;
    color: #666;
}

.prose ul,
.prose ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.prose li {
    margin-bottom: 0.5rem;
}

.prose code {
    background-color: #f0f0f0;
    padding: 0.2em 0.4em;
    border-radius: 0.25rem;
    font-size: 0.9em;
    font-family: 'Monaco', 'Menlo', monospace;
}

/* Utilities */
.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
