/* General Footer Styles */
.site-footer {
    background-color: #000;
    color: #b1a089;
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

/* Container for the Footer Sections */
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px; /* Adds space between columns */
}

/* Footer Sections */
.footer-section {
    flex: 1 1 18%; /* Ensures five columns on larger screens */
    min-width: 200px; /* Prevents columns from getting too narrow */
    margin-bottom: 20px;
}

.footer-section h4 {
    color: #d8b37b;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0; /* Removes default margin */
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #b1a089;
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: #d8b37b;
}

.logo-section img {
    max-width: 100%;
    margin-bottom: 10px;
}

.newsletter-section form {
    display: flex;
    flex-direction: column;
}

.newsletter-section input {
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    background-color: #2a2a2a;
    color: #fff;
}

.newsletter-section button {
    background-color: #d8b37b;
    color: #000;
    padding: 10px;
    border: none;
    cursor: pointer;
}

.newsletter-section button:hover {
    background-color: #b18d64;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    color: #b1a089;
    font-size: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #484848;
    border: 1px solid #b1a089;
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
}

.social-links a:hover{
    background: #fff;
    border: 1px solid #fff;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    display: flex;
    justify-content:  space-between;
}

.footer-bottom p {
    margin: 0;
    color: #b1a089;
}

/* Large Screens (1024px and above) */
@media (min-width: 1024px) {
    .footer-section {
        flex: 1 1 18%;
    }
}

/* Medium Screens (768px to 1024px) */
@media (max-width: 1024px) {
    .footer-container {
        justify-content: space-around; /* Centers the columns */
    }

    .footer-section {
        flex: 1 1 45%;
    }
}

/* Small Screens (less than 768px) */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Stacks the columns */
        align-items: center; /* Centers the columns */
    }

    .footer-section {
        width: 100%;
        flex: 1;
    }

    .newsletter-section form {
        width: 100%;
    }

    .newsletter-section input, .newsletter-section button {
        width: 100%;
    }

    .footer-bottom{
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 20px;
    }
}
