/* =================================
    Floating Discord Button
    ================================= */
.discord-floating-button {
    position: fixed; /* Keeps it fixed on the screen, even with scrolling */
    bottom: 25px;    /* 25px from the bottom */
    left: 25px;      /* 25px from the left */
    z-index: 1050;   /* Ensures it is above other elements (like Tawk.to chat) */

    /* Button design */
    background-color: #5865F2; /* Official Discord color (Blurple) */
    color: #ffffff;             /* Icon color (white) */
    width: 60px;                 /* Button width */
    height: 60px;                /* Button height */
    border-radius: 50%;          /* Makes it perfectly round */

    /* Icon centering */
    display: flex;
    justify-content: center;
    align-items: center;

    /* Shadow and transition for a smooth effect */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    /* Font size for Font Awesome icon */
    font-size: 28px;
    text-decoration: none; /* Removes underline from link */
}

/* Hover effect */
.discord-floating-button:hover {
    transform: translateY(-5px); /* Slightly lifts the button */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); /* Increases shadow for depth */
    color: #ffffff; /* Keeps icon color white */
}

/* Adjustments for smaller screens (mobile) */
@media (max-width: 768px) {
    .discord-floating-button {
        width: 50px;
        height: 50px;
        left: 15px;
        bottom: 15px;
        font-size: 24px;
    }
}
