/* Floating Action Buttons Container */
.floating-buttons {
    position: fixed;
    bottom: 3rem;
    right: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

/* Scroll to Top Button */
.scroll-to-top {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.15);
    color: #3E8B1C;  
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(20px);
}

.scroll-to-top.visible {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: #3E8B1C;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(62, 139, 28, 0.3);
}

/* Social Media Buttons */
.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border-radius: 50%;
    border: none;
    box-shadow: rgba(36, 36, 36, 0.15) 0px 20px 30px 0px;
    overflow: hidden;
}

.social-button.facebook {
    background-color: #1877F2;
}

.social-button.line {
    background-color: #00C300;
}


@media (max-width: 768px) {
    .floating-buttons {
        bottom: 1rem;
        right: 1rem;
    }
    
    .scroll-to-top {
        width: 45px;
        height: 45px;
    }
}
