/* GENEL AYARLAR */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Playfair Display', serif; /* Hukuk temalı şık font */
}

/* RENK PALETİ */
:root {
    --primary-color: #003366; /* Örnekteki Koyu Lacivert */
    --accent-color: #c5a059; /* Altın Sarısı / Gold */
    --light-bg: #f8f9fa;
}

/* YAZI RENKLERİNİ OVERRIDE ETME */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

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

.btn-primary:hover {
    background-color: #002244;
}

.btn-warning {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white !important;
}

.btn-warning:hover {
    background-color: #b08d4b;
}

/* TOP BAR */
.top-bar {
    background-color: var(--primary-color);
    font-size: 0.9rem;
}

/* NAVBAR */
.navbar-brand {
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    margin-right: 15px;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
}

/* HERO SECTION (MANŞET) */
.hero-section {
    background: url('img/arkaplan1.jpg') no-repeat center center/cover;
    height: 80vh; /* Ekranın %80'ini kaplar */
    position: relative;
}

.hero-section .overlay {
    background: rgba(0, 51, 102, 0.7); /* Lacivert şeffaf katman */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* SERVICE BOXES */
.service-box {
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.service-box:hover {
    border-bottom: 3px solid var(--accent-color);
    transform: translateY(-5px); /* Hafif yukarı kalkma efekti */
}

.divider {
    height: 3px;
    width: 60px;
    background-color: var(--accent-color);
}

/* FOOTER */
footer a:hover {
    color: var(--accent-color) !important;
    padding-left: 5px; /* Link üzerine gelince hafif sağa kayma */
    transition: all 0.3s;
}
/* HIZLI İLETİŞİM BUTONLARI */
.hizli-iletisim {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999; /* Her şeyin üstünde dursun */
    display: flex;
    flex-direction: column; /* Alt alta sırala */
    gap: 15px; /* Butonlar arası boşluk */
}

.btn-float {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.btn-float:hover {
    transform: scale(1.1); /* Üzerine gelince hafif büyüsün */
    color: white;
}

/* WhatsApp Rengi */
.whatsapp {
    background-color: #25d366;
}

/* Mail Rengi (Sitenin ana rengiyle uyumlu lacivert) */
.mail {
    background-color: #003366;
}