/* assets/css/base.css (GÜNCEL - YENİ FONT DÜZELTMESİ EKLENDİ) */

:root {
    --color-primary: #b45309; /* Ana Renk (Amber-700) */
    --color-primary-light: #fef3c7; /* Açık Amber (Amber-100) */
    --color-text: #1f2937; /* Koyu Gri (Gray-800) */
    --color-text-light: #4b5563; /* Açık Gri (Gray-600) */
    --color-bg: #f9fafb; /* Arka plan (Gray-50) */
    --color-white: #ffffff;
    --color-border: #e5e7eb; /* gray-200 */
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

/* === FONT GÜNCELLEMESİ (Daha önce eklenmişti) === */
body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    background-color: var(--color-bg);
    color: var(--color-text);
    display: flex; /* Sticky Footer için */
    flex-direction: column;
    min-height: 100vh;
}
/* ======================== */


/* Ana içerik alanının büyümesini sağlar */
.main-content {
    flex-grow: 1;
    width: 100%;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Ortak container sınıfı */
.container {
    width: 90%;
    max-width: 1140px; 
    margin-left: auto;
    margin-right: auto;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover {
    color: var(--color-primary-light);
}

ul {
    list-style: none;
}

/* === ANİMASYON (Daha önce eklenmişti) === */
@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === YENİ: FORM FONT DÜZELTMESİ === */
/* Form elemanlarının body fontunu miras almasını sağla */
input,
textarea,
button,
select {
    font-family: inherit; /* body'den 'Inter' fontunu al */
    font-size: 100%; /* Varsayılan boyutları eşitle */
    margin: 0; /* Ekstra boşlukları sıfırla */
}
/* ================================ */