html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.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 #258cfb;
}

/* 1. ARKA PLAN AYARLARI (Senin Resimli Tasarımın) */
body {
    /* Resim yolunun doğruluğundan emin ol */
    background-image: url("../img/ArkaPlan/arapgir.png")
    background-position: center top;
    background-size: cover;
    background-attachment: fixed; /* Sayfa kayarken resim sabit kalsın diye açtım */
    background-repeat: no-repeat;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    /* Footer çakışmasını önlemek için margin sıfırlama */
    margin-bottom: 0;
}

/* 2. MENÜ BUTONLARI (Senin Eski Havalı Tasarımın) */
.navbar-nav .nav-link {
    font-weight: 500;
    padding: 10px 15px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-right: 5px;
}

    /* Fare ile üzerine gelince (Hover) */
    .navbar-nav .nav-link:hover {
        background-color: #2c3e50; /* Koyu lacivert */
        color: white !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

/* 3. WHATSAPP BUTONU (Sabit ve Görünür) */
#iletisimButonu {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s ease;
    display: block; /* Garanti olsun diye görünür yapıyoruz */
}

    #iletisimButonu:hover {
        background-color: #128C7E;
        transform: scale(1.05);
    }

/* 4. KART VE BAŞLIK EFEKTLERİ */
.hero-header {
    background: rgba(0, 0, 0, 0.6); /* Siyah Şeffaf */
    padding: 20px 40px;
    text-align: center;
    color: white;
    border-radius: 15px;
    width: fit-content;
    margin: 30px auto 50px auto;
    backdrop-filter: blur(5px); /* Buzlu cam efekti */
}

.card {
    background-color: rgba(255, 255, 255, 0.95) !important; /* Hafif şeffaf beyaz */
    border-radius: 15px;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

    .card:hover {
        transform: translateY(-5px);
    }

.fiyat-etiketi {
    font-weight: bold;
    color: #198754;
    font-size: 1.3rem;
}

/* Footer Link Rengi */
.footer a:hover {
    color: #fff !important;
    text-decoration: underline;
}
