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 #ffc107;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    background-color: #f2f2f2 !important;
}

/* Menü Hover Efekti */
.hover-glow {
    color: #fff;
    transition: color 0.3s ease;
    position: relative;
}

    .hover-glow::after {
        content: '';
        position: absolute;
        width: 0;
        height: 3px;
        left: 0;
        bottom: 0;
        background: linear-gradient(90deg, #ffc107, #ff5722);
        transition: width 0.3s ease;
    }

    .hover-glow:hover::after {
        width: 100%;
    }

    .hover-glow:hover {
        color: #ffc107;
    }

/* Responsive Slider Image */
.slider-img {
    height: 450px;
    object-fit: cover;
}

/* Kart veya bölümlere hover efekti */
.hover-shadow:hover {
    transform: scale(1.03);
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}


html {
    scroll-behavior: smooth;
}

.nav-link {
    font-size: 0.75rem; /* Dilerseniz 0.85rem, 13px gibi daha küçük de yapabilirsiniz */
}

body {
    padding-top: 70px; /* Navbar yüksekliğine göre 60-80px arası ayarlanabilir */
}





@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    /* Buraya animasyonu ekledik */
    animation: bounce 2.5s infinite;
}

    .whatsapp-float:hover {
        background-color: #1ebe5b;
    }

.whatsapp-icon {
    font-size: 32px;
}

