/*1. GENEL AYARLAR VE TEMA RENKLERİ*/
body {
    background-color: #d7ccc8; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #3e2723;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/*2. NAVİGASYON (MENÜ) - GÖRÜNÜRLÜK GARANTİLİ*/
#ana-menu {
    background-color: #5d4037 !important; 
    z-index: 9999 !important; 
    border-bottom: 4px solid #8d948d;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    padding: 12px 0;
}

.navbar-brand {
    color: #e6d5b8 !important;
    font-weight: bold;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: #e6d5b8 !important;
}

/*3. SLIDER (ANA SAYFA) AYARLARI*/
.slider-img {
    height: 350px !important;
    object-fit: cover;
}

/* Slider üzerindeki yazı kutusu */
.slider-kart-div {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
}

.slider-kart {
    background-color: rgba(62, 39, 35, 0.9);
    color: #e6d5b8;
    padding: 20px 40px;
    border-radius: 15px;
    border: 1px solid #8d948d;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    max-width: 80%;
}

.slider-kart h3 {
    font-weight: bold;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

/*4. KARTLAR VE İÇERİK YAPISI (HAKKIMDA & ÇALIŞMALARIM)*/
.icerik-karti, .baslik-karti {
    background-color: #efebe9 !important;
    border-radius: 20px;
    border: 1px solid #8d948d !important;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.baslik-karti {
    background-color: #5d4037 !important;
    color: #e6d5b8 !important;
}

.renkli-baslik {
    color: #5d4037;
    border-left: 7px solid #8d948d;
    padding-left: 15px;
    font-weight: bold;
    margin-bottom: 20px;
}

.soluk-kutu {
    background-color: #efebe9;
    border: 1px solid #8d948d;
    border-radius: 12px;
}

/* Yetenek Kutuları (Hakkımda Sayfası) */
.yetenek-kutu {
    background-color: #d7ccc8;
    border: 1px solid #8d948d;
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s ease;
}

.yetenek-kutu:hover {
    transform: translateY(-5px);
    background-color: #8d948d;
    color: white;
}

/*5. BUTONLAR VE DİĞER BİLEŞENLER*/
.btn-yesil {
    background-color: #8d948d; 
    color: white;
    border: none;
}

.btn-yesil:hover {
    background-color: #6d756d;
    color: white;
}

.btn-sari {
    background-color: #e6d5b8; 
    color: #3e2723;
    border: none;
    font-weight: bold;
}

.btn-sari:hover {
    background-color: #d7c19e;
}

.bg-kahve {
    background-color: #5d4037 !important;
}

.text-sari {
    color: #e6d5b8 !important;
}

.text-kahve {
    color: #5d4037 !important;
}

/*6. ALT BİLGİ (FOOTER)*/
footer {
    background-color: #5d4037;
    border-top: 5px solid #e6d5b8;
    color: white;
    padding: 30px 0;
    margin-top: auto;
}

/*7. MOBİL UYUMLULUK (RESPONSIVE)*/
@media (max-width: 768px) {
    .slider-img {
        height: 250px !important;
    }

    .slider-kart {
        padding: 10px 20px;
        max-width: 90%;
    }

    .slider-kart h3 {
        font-size: 1.1rem;
    }

    .display-4 {
        font-size: 2.2rem;
    }
}