/* assets/css/style.css */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

body { 
    font-family: 'Inter', sans-serif; 
}

.hero-gradient {
  
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/photo-1557597774-9d273605dfa9.avif');
    background-size: cover;
    background-position: center;
}

.card-hover:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.fixed-whatsapp {
    position: fixed;
    bottom: 20px;     /* Alttan ne kadar yukarıda olsun */
    right: 20px;      /* Sağdan ne kadar içeride olsun */
    background-color: #25d366; /* WhatsApp yeşili */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%; /* Yuvarlak olması için */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;    /* İkon boyutu */
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3); /* Gölge efekti */
    z-index: 1000;      /* Diğer öğelerin üzerinde durması için */
    transition: all 0.3s ease; /* Yumuşak geçiş efekti */
}

.fixed-whatsapp:hover {
    transform: scale(1.1); /* Üzerine gelince %10 büyüsün */
    background-color: #128c7e; /* Üzerine gelince rengi koyulaşsın */
}

.fixed-scroll-btn {
    position: fixed;
    bottom: 90px;       /* WhatsApp butonunun (20px + 60px) hemen üstünde */
    right: 20px;
    background-color: #1f2937; /* Koyu gri (Footer rengi) */
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.fixed-scroll-btn:hover {
    background-color: #3b82f6; /* Hover olunca Mavi olsun */
    transform: translateY(-5px);
}

/* JS ile 'hidden' class'ı ekleyip çıkaracağız */
.hidden {
    display: none !important;
}