/* ========================================
   ONLINE BOOKING BANNER
   ======================================== */
.online-booking-banner {
    background: var(--color-dark);
    padding: var(--spacing-xl) var(--spacing-lg);
    border-top: 2px solid var(--color-bronze);
}

.booking-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: var(--spacing-lg);
}

.booking-banner-text {
    flex: 1;
}

.booking-banner-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-cream);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.booking-banner-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--color-cream);
    opacity: 0.9;
    font-weight: 300;
}

.booking-banner-button {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
    white-space: nowrap;
}

.booking-banner-button:hover {
    background: white;
    color: var(--color-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #000000;
    color: var(--color-cream);
    padding: var(--spacing-xl) var(--spacing-lg);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Brand Column */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: var(--spacing-sm);
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--color-bronze);
    color: white;
    transform: translateY(-3px);
}

.footer-email {
    color: var(--color-cream);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.footer-email i {
    color: var(--color-bronze);
}

.footer-app-badges {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.app-badge {
    display: inline-block;
    transition: transform 0.3s, opacity 0.3s;
}

.app-badge img {
    height: 40px;
    width: auto;
}

.app-badge:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-size: 1rem;
    color: var(--color-cream);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    letter-spacing: 1px;
}

.footer-links,
.footer-stores {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer-links li a {
    color: var(--color-cream);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s, padding-left 0.3s;
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--color-bronze);
    padding-left: 5px;
}

/* Store Information */
.footer-stores li {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.store-name {
    color: var(--color-cream);
    font-size: 0.95rem;
    font-weight: 500;
}

.store-phone {
    color: var(--color-bronze);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.store-phone:hover {
    color: var(--color-bronze-light);
    text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: var(--spacing-lg);
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-languages {
    display: flex;
    gap: var(--spacing-sm);
}

.language-flag {
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.language-flag:hover {
    transform: scale(1.2);
}

/* ========================================
   RESPONSIVE FOOTER
   ======================================== */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand {
        grid-column: span 2;
        align-items: center;
        text-align: center;
    }

    .footer-logo-img {
        margin: 0 auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-email {
        justify-content: center;
    }

    .footer-app-badges {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .booking-banner-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-lg);
    }

    .booking-banner-button {
        width: 100%;
        max-width: 300px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .footer-brand {
        grid-column: 1;
        padding-bottom: var(--spacing-lg);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-column {
        text-align: center;
    }

    .footer-links li a {
        display: block;
    }

    .footer-links li a:hover {
        padding-left: 0;
    }

    .footer-stores li {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .booking-banner-title {
        font-size: 1.8rem;
    }

    .booking-banner-subtitle {
        font-size: 1rem;
    }

    .footer-app-badges {
        width: 100%;
    }

    .app-badge {
        width: 100%;
    }

    .app-badge img {
        width: 100%;
        max-width: 200px;
        height: auto;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}
