:root {
    --primary-color: #e03426;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--light-gray);
    color: var(--dark-gray);
}

/* Custom Styles */

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: #c02d20;
    text-decoration: underline;
}

.top-bar {
    padding: 10px 0;
    background-color: var(--primary-color);
    color: #fff;
}

.header {
    padding: 20px 0;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.logo img {
    max-height: 60px;
}

.hero-section {
    background: url('../images/banner.jpg') no-repeat center center;
    background-size: cover;
    padding: 250px 0;
    color: #fff;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.hero-section p {
    font-size: 1.25rem;
}

.footer {
    padding: 50px 0;
    background-color: var(--dark-gray);
    color: #fff;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 24px;
    font-size: 1.1rem;
}

.btn-primary:hover {
    background-color: #c02d20;
    border-color: #c02d20;
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.footer a {
    color: #fff;
}

.footer a:hover {
    color: var(--primary-color);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

.jumbotron {
    padding: 4rem 2rem;
    margin-bottom: 2rem;
    border-radius: 0;
}

.navbar-nav .nav-item:hover .dropdown-menu {
    display: block;
}

@media (max-width: 768px) {
    .top-bar .col-md-6 {
        text-align: center !important;
    }

    .header {
        padding: 10px 0;
    }

    .logo {
        width: 80%;
    }

    .logo img {
        max-height: 40px;
    }

    .hero-section {
        padding: 150px 0;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .jumbotron {
        padding: 2rem 1rem;
    }

    .jumbotron h1 {
        font-size: 2rem;
    }

    .phone-numbers {
        display: block;
    }
}

.offcanvas-body .navbar-nav .nav-item .nav-link {
    padding: 10px 15px;
}

.offcanvas-body .navbar-nav .dropdown-menu {
    border: none;
    background-color: #f8f9fa;
}

.map-container {
    position: relative;
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.content-main strong {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    max-height: 300px; /* Adjust this value as needed */
    height: auto;
    object-fit: contain; /* Ensures the image is contained within the dimensions without cropping */
}

.facility-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}
