/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
/* --- SETAF2018 Kurumsal Kimlik Ayarları --- */

:root {
    /* Renk Paleti */
    --setaf-blue: #002D5A;
    --setaf-orange: #FF6600;
    --setaf-dark-orange: #E65C00;
    --setaf-charcoal: #333333;
    --setaf-white: #FFFFFF;

    /* Font Tanımı */
    --setaf-font-family: 'Inter', sans-serif;
}

/* Genel Tipografi Uygulaması */
body {
    font-family: var(--setaf-font-family);
    font-weight: 400; /* Regular */
    color: var(--setaf-charcoal);
    background-color: var(--setaf-white);
    line-height: 1.6;
}

/* Başlıklar (H1 - H4) */
h1, h2, h3, h4 {
    font-family: var(--setaf-font-family);
    font-weight: 800; /* Extra Bold */
    color: var(--setaf-blue);
    line-height: 1.2;
}

/* Butonlar ve Navigasyon */
.elementor-button, 
.main-navigation a,
.nav-menu-item {
    font-family: var(--setaf-font-family) !important;
    font-weight: 500 !important; /* Medium */
    text-transform: uppercase; /* All Caps */
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

/* Elementor Buton Renkleri (Varsayılan Override) */
.elementor-button {
    background-color: var(--setaf-orange) !important;
    color: var(--setaf-white) !important;
}

.elementor-button:hover {
    background-color: var(--setaf-dark-orange) !important;
}

/* Link Renkleri */
a {
    color: var(--setaf-orange);
    text-decoration: none;
}

a:hover {
    color: var(--setaf-blue);
}