/* Base Footer */
footer {
    background-color: #001F3F !important;
    /* blue background */
    padding: 2rem 0;
    /* Top and bottom padding */
    font-family: 'Lora', sans-serif;
    /* Default font for footer */
    color: #F6F4EB !important;
    /* Default text color */
}

bg-container {
    background-color: #001F3F !important;
}

.footer-p {
    color: #F6F4EB !important;

}

.footer-a {
    color: #F6F4EB !important;

}

/* Resort Name */
footer .resort-name {
    font-family: 'Lora', sans-serif;
    font-weight: bold;
    font-size: 2.5rem;
    /* Similar to fs-1 */
    margin-bottom: 1rem;
    color: red;
    /* Dark blue for resort name */
    border-bottom: 3px solid #ffc107;
    /* Bootstrap warning color */
    display: inline-block;
    padding-bottom: 0.5rem;
}

/* Footer Headings */
footer h2 {
    font-size: 1.75rem;
    /* fs-3 equivalent */
    font-weight: bold;
    margin-bottom: 1rem;
    color: #F6F4EB !important;
}


/* Contact Info */
footer .contact-info h5 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
    color: #F6F4EB;
}

footer .contact-info p {
    margin: 0.25rem 0;
    font-size: 1rem;
    color: #F6F4EB !important;
}

/* Social Media */
footer .social-media a img {
    width: 35px;
    transition: transform 0.3s ease;
}

footer .social-media a img:hover {
    transform: scale(1.1);
}

/* Copyright */
footer .copyright {
    border-top: 3px solid #ffc107;
    /* Bootstrap warning */
    text-align: center;
    padding-top: 1rem;
    margin-top: 2rem;
    font-size: 1rem;
    /* fs-5 equivalent */
    color: #F6F4EB;
}

.custom-underline {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.custom-underline:hover {}

/* Responsive Adjustments */
@media (max-width: 767px) {
    footer .social-media {
        justify-content: start !important;
        margin-top: 1rem;
    }

    footer .contact-info h5 {
        font-size: 1rem;
    }

    footer .contact-info p {
        font-size: 0.95rem;
    }
}