/* Footer Styling */
#footer-section {
    background-color: #14304b;
    color: white;
    padding: 40px 20px;
    text-align: center;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo h2 {
    font-size: 1.8rem;
    color: yellow;
    margin-bottom: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1rem;
    font-weight: bold;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: yellow;
}

.footer-socials a img {
    width: 30px;
    height: 30px;
    margin: 0 10px;
    transition: transform 0.3s;
}

.footer-socials a:hover img {
    transform: scale(1.1);
}

.footer-credits p {
    font-size: 0.9rem;
    margin-top: 20px;
}

/* Back to Top Button */
#back-to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: yellow;
    color: #003366;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: none; /* Hidden by default */
}

#back-to-top-btn:hover {
    background-color: #ffc107;
    color: #001a33;
}
