/* Footer Styles */

footer {
    background-color: #502f77;
    color: #ccc;
    font-family: 'Roboto', Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 60px 20px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1 1 200px;
    margin: 20px;
}

.footer-column h3 {
    color: #fff;
    font-size: 1.2em;
    margin-bottom: 20px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column h3::after {
    content: '';
    width: 50px;
    height: 2px;
    background-color: #5BC8FF;
    position: absolute;
    left: 0;
    bottom: -10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #5BC8FF;
}

.newsletter {
    max-width: 300px;
}

.newsletter p {
    color: #5BC8FF;
    margin-bottom: 20px;
    font-size: 0.95em;
}

.newsletter-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #fff; /* Button background color */
    color: #502f77; /* Text color inside button */
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.newsletter-button:hover {
    background-color: #5BC8FF; /* Hover background color */
    color: #fff; /* Hover text color */
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: #3c2561; /* Slightly darker shade for bottom */
    padding: 20px;
}

.footer-social {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-social a {
    margin: 10px;
    transition: transform 0.3s;
}

.footer-social a:hover {
    transform: translateY(-5px);
}

.footer-social img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.footer-links {
    text-align: center;
    font-size: 0.9em;
}

.footer-links a {
    margin: 0 15px;
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff5722;
}

/* Responsive Design */

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        margin: 20px 0;
    }

    .newsletter {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .footer-links a {
        display: block;
        margin: 10px 0;
    }

    .footer-social a {
        margin: 5px;
    }
}





