/* 1. Temel Font ve Yapı Ayarları */
html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin-bottom: 60px;
    color: #212529;
    background-color: #ffffff;
}

/* 2. Global Renk Değişimleri (Zorunlu Override) */
:root {
    --bs-primary: #ffc107; 
    --bs-primary-rgb: 255, 193, 7;
    --bs-link-color: #212529;
    --bs-link-hover-color: #ffc107;
}

/* BOOTSTRAP MAVİSİNİ HER YERDE SARIYA ZORLA */
.btn-primary {
    background-color: #ffc107 !important;
    border-color: #ffc107 !important;
    color: #000 !important;
    font-weight: 600;
}

.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
    background-color: #e0a800 !important;
    border-color: #d39e00 !important;
    color: #000 !important;
}

.text-primary {
    color: #ffc107 !important;
}

.bg-primary {
    background-color: #ffc107 !important;
}

/* 3. Focus ve Form Düzenlemeleri */
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem rgba(255, 193, 7, 0.5) !important; 
    border-color: #ffc107 !important;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

/* 4. Linkler ve Navigasyon */
a {
    color: #212529;
    transition: 0.3s;
}

a:hover {
    color: #ffc107;
}

.nav-link.active {
    color: #ffc107 !important;
}

/* 5. Team / Avatar Kartları Revizyonu */
.avatar-circle {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 4px solid #ffc107;
    background-color: #f8f9fa;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease-in-out;
}

.avatar-circle i {
    line-height: 0;
    color: #212529; 
}

.member-card:hover .avatar-circle {
    transform: scale(1.08);
    background-color: #ffc107;
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

.member-card:hover .avatar-circle i {
    color: #000;
}

/* 6. Özel Sınıflar */
.bg-dark-custom {
    background-color: #1a1a1a !important;
    color: #ffffff;
}

.text-warning-custom {
    color: #ffc107 !important;
}

/* Kartların altına ince bir sarı çizgi (opsiyonel estetik) */
.service-card:hover {
    border-bottom: 3px solid #ffc107 !important;
}
/* Sadece Footer İçindeki Site Adını Hedefler */
.footer .navbar-brand, 
.footer .navbar-brand span {
    color: var(--main-yellow) !important; /* Veya projenizdeki primary renk: #ffc107 */
    
    opacity: 1 !important; /* Silikliği tamamen kaldırır */
}