/**
 * Theme Name: Default Theme
 * Theme URI: 
 * Description: Varsayılan Fit Reyon teması
 * Version: 1.0.0
 * Author: Fit Reyon
 */

/* Tema Özelleştirme Değişkenleri */
:root {
    --primary-color: #1f2937;
    --secondary-color: #f59e0b;
    --accent-color: #ef4444;
    --text-color: #374151;
    --bg-color: #ffffff;
    --header-bg: #ffffff;
    --footer-bg: #1f2937;
    --footer-text: #ffffff;
}

/* Özel Stiller */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
}

/* Header Özelleştirmeleri */
header {
    background-color: var(--header-bg);
}

/* Footer Özelleştirmeleri */
footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
}

/* Footer Link Stilleri */
footer a {
    color: #d1d5db; /* text-gray-300 */
    transition: color 0.2s ease;
}

footer a:hover {
    color: #ffffff; /* text-white */
}

/* Footer Başlıklar */
footer h3,
footer h4 {
    color: #ffffff;
}

/* Footer Sosyal Medya İkonları */
footer .text-gray-400 {
    color: #9ca3af;
}

footer .text-gray-400:hover {
    color: #ffffff;
}

/* Footer Metin Renkleri */
footer .text-gray-300 {
    color: #d1d5db;
}

footer .text-gray-500 {
    color: #6b7280;
}

footer .text-gray-400 {
    color: #9ca3af;
}

/* Buton Özelleştirmeleri */
.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

/* Link Özelleştirmeleri */
a {
    color: var(--primary-color);
}

a:hover {
    color: var(--secondary-color);
}

