/* Footer Styles */
/* Footer Styles */
#footer {
    position: relative;
    z-index: 1001;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: #fff;
    padding: 40px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 65, 0, 0.2);
    width: 100%;
    clear: both;
}

footer {
    background: transparent;
    color: #fff;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0px;
    text-align: left;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 0px;
}

.footer-section h3 {
    color: #ff4100;
    margin-bottom: 0px;
    font-size: 1.05em;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: flex;
    align-items: right;
    justify-content: left;
    margin-bottom: 0px;
}

.footer-section a:hover {
    color: #ff4100;
}




/* Social Media Icons */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: left;
}

.social-links a {
    display: inline-flex;
    align-items: left;
    justify-content: left;
    padding: 8px 12px;
    min-height: 36px;
    background: rgba(255, 65, 0, 0.08);
    border-radius: 14px;
    transition: all 0.18s ease;
    border: 1px solid rgba(255, 65, 0, 0.12);
    /* unified 1px border */
    position: relative;
    z-index: 2100;
    /* ensure anchors sit above any nearby overlays */
    pointer-events: auto;
    /* ensure anchors receive clicks */
}

/* Make social link pills consistent width and fully clickable */
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    box-sizing: border-box;
}

.social-links a:hover {
    background: rgba(255, 65, 0, 0.2);
    border-color: #ff4100;
    transform: translateY(-2px);
}

/* Ensure focus outlines and border thickness are consistent for accessibility */
.social-links a:focus {
    outline: 2px solid rgba(255, 65, 0, 0.15);
    outline-offset: 2px;
    border-width: 1px;
}



/* make icon elements non-interactive so clicks target the parent anchor reliably */
.social-links i {
    pointer-events: none;
    display: inline-block;
}





/* Booking Button */
.booking-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff4100, #ff6b35);
    color: white !important;
    padding: 10px 22px;
    min-height: 36px;
    border-radius: 22px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(255, 65, 0, 0.35);
    margin-top: 12px;
    /* move the button slightly down */
}

.booking-btn:hover {
    background: linear-gradient(135deg, #ff6b35, #ff4100);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 65, 0, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 0;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

/* Ensure footer is visible */
#footer {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 2000 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    footer {
        padding: 0px 0;
    }

    .social-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: left;
        gap: 8px;
    }

    .social-links
    /* social icon pseudo-elements removed; using image backgrounds below */

    .social-links a {
        width: calc(50% - 16px);
        max-width: 240px;
        padding: 0px 0px;
        border-radius: 12px;
        margin: 0px 0;
        box-sizing: border-box;
    }

    .footer-section p,
    .footer-section a {
        justify-content: flex-start;
        padding-left: 0px;
    }

    .booking-btn {
        display: block;
        width: calc(100% - 40px);
        margin: 12px auto 0;
        /* add top margin for spacing on small screens */
        text-align: left;
        padding: 10px 20px;
    }
}