/* Footer Section */
footer {
    background-color: #000000;
    color: white;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.footer-section {
    width: 100%;
    padding: 10px 0;
    border-top: 1px solid #333333; /* Add separation between sections */
}

.footer-section:first-child {
    border-top: none; /* Remove border for the first section */
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-logo-description {
    font-size: 0.9rem;
    margin: 0 auto; /* Center the description */
    max-width: 400px; /* Limit width for better readability */
    line-height: 1.5;
    color: #d1d1d1;
}

.footer-contact-title,
.footer-newsletter-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #66CCFF;
}

.footer-contact p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 5px;
    color: #d1d1d1;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.footer-social a {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
    color: #66CCFF;
}

.footer-newsletter-description {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 15px auto; /* Center the description */
    max-width: 400px; /* Limit width for better readability */
    color: #d1d1d1;
}

.footer-newsletter-form {
    display: flex;
    margin: 0 auto; /* Center the description */
    max-width: 400px; /* Limit width for better readability */
    flex-direction: column;
    gap: 10px;
}

.footer-newsletter-input {
    padding: 12px 15px;
    width: 100%;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    background-color: #222222;
    color: white;
}

.footer-newsletter-input::placeholder {
    color: #888888;
}

.footer-newsletter-button {
    padding: 12px 15px;
    background-color: #66CCFF;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    font-size: 0.9rem;
}

.footer-newsletter-button:hover {
    background-color: #3399CC;
}

/* Responsive Styles for Footer */
@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        text-align: left;
    }

    .footer-section {
        flex: 1;
        padding: 0 20px;
        border-top: none;
        border-left: 1px solid #333333;
    }

    .footer-section:first-child {
        border-left: none;
        padding-left: 0;
    }

    .footer-section:last-child {
        padding-right: 0;
    }

    .footer-social {
        justify-content: flex-start;
    }
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 2rem 0;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.copyright-year {
    color: #66CCFF;
}

.opening-hours {
    margin-top: 1rem;
}

.hours-title {
    font-weight: 600;
    color: #66CCFF;
    margin-bottom: 0.5rem;
}

.opening-hours p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}
