/* Global Font Settings */
body { font-family: 'Inter', 'sans-serif'; background-color: #FAF9F6; }

/* Backgrounds */
.hero-bg {
    background-image: linear-gradient(rgba(25, 42, 86, 0.7), rgba(25, 42, 86, 0.7)), url('/lobby_hero.jpg');
    background-size: cover;
    background-position: center;
}

/* Buttons */
.btn-gold {
    background-color: #B8860B;
    color: white;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(184, 134, 11, 0.4);
}
.btn-gold:hover {
    background-color: #DAA520;
    transform: translateY(-1px);
}

/* UI Elements */
.service-card {
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}
.active-nav {
    color: #B8860B; /* Highlight active page */
}
.blog-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

/* Contact Modal */
.modal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.7); display: none; align-items: center;
    justify-content: center; z-index: 1000;
}
.modal-content {
    background-color: #FAF9F6; padding: 2rem; border-radius: 1rem;
    max-width: 90%; width: 500px; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    position: relative;
}
#contact-modal-btn { position: fixed; bottom: 2rem; right: 2rem; z-index: 900; }

/* Video Container */
.video-container {
    position: relative; width: 100%; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%;
}
.video-container iframe {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}

/* Testimonials */
.testimonial-quote {
    quotes: "\201C" "\201D" "\2018" "\2019";
}
.testimonial-quote p {
    font-style: italic;
}
.testimonial-quote p::before {
    content: open-quote;
    font-size: 3rem;
    line-height: 0.1;
    margin-right: 0.5rem;
    vertical-align: -0.4rem;
    color: #B8860B;
}
