/* assets/anasayfa-hizli-menu.css */

.hizli-menu-wrapper {
    position: relative;
    /* GÜNCELLEME: Alt boşluk, yeni ok butonu için ayarlandı */
    margin: 0 1rem 0rem 1rem; 
}

.hizli-menu-container {
    background-image: linear-gradient(110deg, #1e293b, #06b6d4);
    color: #fff;
    padding: 1.25rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.hizli-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

@media (min-width: 480px) {
    .hizli-menu-inner {
        flex-direction: row;
        text-align: left;
    }
}

.hizli-menu-text {
    flex-grow: 1;
}

.hizli-menu-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.hizli-menu-text p {
    margin: 0.25rem 0 0 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

.hizli-menu-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.hizli-menu-btn {
    padding: 0.6rem 1rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    white-space: nowrap;
}

.hizli-menu-btn.giris {
    background-color: #fff;
    color: #4f46e5;
}

.hizli-menu-btn.giris:hover {
    background-color: #eef2ff;
}

.hizli-menu-btn.kayit {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.hizli-menu-btn.kayit:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* GÜNCELLEME: Aşağı Kaydırma Oku Stilleri */
.scroll-down-arrow {
    position: absolute;
    left: 50%;
    bottom: -3.0rem; /* Konteynerin altına sarkıt */
    transform: translateX(-50%);
    display: flex;
    flex-direction: column; /* İkon ve yazıyı alt alta sırala */
    align-items: center;
    text-decoration: none;
    color: #4f46e5;
    animation: bounce 2s infinite;
    z-index: 10;
    gap: 0.25rem; /* İkon ve yazı arası boşluk */
}

.scroll-down-arrow i {
    width: 45px;
    height: 45px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.scroll-down-arrow span {
    font-size: 0.7rem;
    font-weight: 600;
    color: #4b5563;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}
