/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}



/* Floating Action Button (FAB) */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.fab-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #0d6efd;
    /* Blue color */
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    font-size: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fab-btn:hover {
    background-color: #0b5ed7;
    transform: scale(1.1);
    color: white;
}

/* Cephanelik Arka Planı */
.arsenal-showcase {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/cehpanelik.png') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

/* Öne Çıkanlar Resim Düzeni */
.featured-img {
    height: 220px;
    /* Sabit yükseklik */
    width: 100%;
    object-fit: cover;
    /* Resmi ezmeden kutuya doldur */
    object-position: center;
}