﻿
.footer-section {
    background: #000000;
    color: white;
    padding: 50px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: left;
}

.footer-title {
    font-size: 20px;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
    margin-left: 30px;
}

    .footer-title span {
        color: #8F2766;
    }

.footer-links li {
    list-style: none;
    margin-bottom: 15px;
}

.footer-links a {
    color: white !important;
    text-decoration: none;
    transition: 0.3s;
}



.opening-hours li,
.footer-column p {
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    border: 1px solid white;
    border-radius: 5px;
    overflow: hidden;
}

    .newsletter-form input {
        flex: 1;
        padding: 10px;
        border: none;
        outline: none;
    }

    .newsletter-form button {
        background: red;
        border: none;
        padding: 10px 15px;
        cursor: pointer;
    }

.social-icons a {
    color: white !important;
    margin-right: 10px;
    font-size: 20px;
    transition: 0.3s;
    background-color: #8F2766;
    padding: 10px 15px;
    border-radius: 30px;
}

    .social-icons a:hover {
        color: red;
    }

@media (max-width: 768px) {
    .footer-content {
        /* grid-template-columns: 1fr;*/
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        text-align: center;
    }

    .newsletter-form {
        justify-content: center;
    }
}


ul, li {
    list-style: none;
    text-decoration: none;
    color:white;
}
