/* BRS Mühendislik - Ana Stil Dosyası */

body { 
    font-family: 'Poppins', sans-serif; 
}

/* Logo Ayarları - Header */
.logo-img {
    height: 80px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    display: block;
}

/* Logo Ayarları - Footer */
.logo-img-footer {
    height: 100px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

/* Mobil için logo boyutu */
@media (max-width: 768px) {
    .logo-img {
        height: 60px;
        max-width: 220px;
    }
    
    .logo-img-footer {
        height: 70px;
        max-width: 150px;
    }
}

/* Çok küçük ekranlar için */
@media (max-width: 480px) {
    .logo-img {
        height: 50px;
        max-width: 180px;
    }
    
    .logo-img-footer {
        height: 60px;
        max-width: 130px;
    }
}

/* KVKK Modal Animasyonu */
#kvkk-modal {
    animation: fadeIn 0.3s ease-in-out;
}

#kvkk-modal > div {
    animation: slideUp 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Modal Scroll Styling */
#kvkk-modal .overflow-y-auto::-webkit-scrollbar {
    width: 8px;
}

#kvkk-modal .overflow-y-auto::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

#kvkk-modal .overflow-y-auto::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

#kvkk-modal .overflow-y-auto::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Hero Arka Planı - images/Slider1.jpeg kullanılıyor */
.hero-bg {
    background-image: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('images/Slider1.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Sabit WhatsApp Butonu */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    background-color: #1ebe57;
}
