/* Basic footer styling */
footer {
    background-color: #ECBE07; /* White background for the footer */
    color: #000; /* Black text */
    padding: 20px;
    text-align: center;
    position: relative;
    border: 1px solid black; /* Black border */
    border-radius: 0 0 10px 10px; /* Rounded bottom corners */
    font-weight: bold; /* Make text bold */
    text-shadow: 4px 4px 8px rgba(255, 255, 255, 0.8); /* Add subtle white shadow */   box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Footer links */
.footer-links {
    margin-bottom: 10px;
}

.footer-links ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    display: inline;
    margin: 0 10px;
}

.footer-links ul li a {
    color: #000; /* Black text */
    text-decoration: none;
    font-size: 14px;
}

.footer-links ul li a:hover {
    text-decoration: underline;
}

/* Footer "Chat Now" button */
.chat-button-footer {
    position: fixed;
    bottom: 20px; /* Distance from the bottom of the page */
    right: 20px; /* Distance from the right edge of the page */
    padding: 12px 20px; /* Increased padding for a larger clickable area */
    background-color: #45ee24e2; /* Bright green color */
    color: black; /* Black text */
    text-decoration: none;
    border-radius: 50px; /* Circular button */
    font-size: 16px; /* Larger font size for readability */
    font-weight: bold; /* Bold text for emphasis */
    border: 1px solid black; /* Black border */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Slight shadow for depth */
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, font-size 0.3s ease;
    z-index: 1000; /* Ensure it's above other content */
}

/* Button hover effect */
.chat-button-footer:hover {
    background-color: #28a745; /* Green color */
    transform: scale(1.1); /* Slightly increase size */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Increased shadow on hover */
    color: black; /* Black text */
    font-weight: bold; /* Make text bold */
    text-shadow: 4px 4px 8px rgba(255, 255, 255, 0.8); /* Add subtle white shadow */
}

/* Button pressed effect */
.chat-button-footer:active {
    transform: scale(1.05); /* Slightly pressed effect */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); /* Reduced shadow when pressed */
}

/* General Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: #ECBE07; /* Black with opacity */
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* Centered in the viewport */
    padding: 20px;
    border: 1px solid rgb(2, 2, 2); /* Black border */
    width: 80%; /* Could be more or less, depending on screen size */
    max-width: 600px;
    border-radius: 8px;
    color: #000; /* Black text */
}

.modal-close {
    color: #000; /* Black text */
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.modal-close:hover,
.modal-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Fire flash animation for text box */
.fire-flash-textbox {
    animation: fireFlash 1s ease;
}

@keyframes fireFlash {
    0% { background-color: #000; color: #fff; }
    25% { background-color: #ff6f00; color: #000; }
    50% { background-color: #ffcc00; color: #000; }
    75% { background-color: #ff6f00; color: #000; }
    100% { background-color: #000; color: #fff; }
}
