@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
    box-sizing: border-box;
}

html {
    height: 100%;
    background-color: #2A2B2A;
}

body {
    background-color: #FFFFFF;
    width: min(100%, 1400px);
    min-height: 100%;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    font-size: clamp(1rem, 2.5vw, 2rem);
}

a {
    text-decoration: none;
    color: black;
}

#upperNavbar {
    display: flex;
    justify-content: space-between;
    background-color: black;
    padding: 1rem;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
    position: sticky;
    top: 0;
    max-width: 100%;
}

#upperNavbarModal {
    /* background-color: #5036f8; */
    background-color: #5036f8;
    position: sticky;
    display: flex;
    justify-content: center;
    top: 5.7rem;
    padding: 1rem;
}

#upperNavbarModal p {
    margin: 0;
    color: #FFFFFF;
    font-size: clamp(1.5rem, 2.5vw, 2.6rem);
    /* font-weight: 700; */
}

#rlServiceLogo {
    height: clamp(50px, 7vh, 70px);
}

#rightsideNavbar {
    display: flex;
    justify-content: right;
    align-items: center;
    width: 50%;
}

#callUsNavbar {
    color: #FFFFFF;
    text-align: right;
    white-space: pre;
    margin: 0;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

#mainContent {
    font-size: larger;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
}

.imageBannerCarousel {
    width: 100%;
    height: min(500px, 50vh);
    color: #FFFFFF;
    background-image: url("images/carousel1.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.4);
    background-blend-mode: darken;
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.imageBannerCarousel p {
    margin: 0;
    padding: 0;
    font-size: clamp(1rem, 2.5vw, 2.5rem);
}

.imageBannerCarousel h1 {
    margin: 0;
    padding: 0;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

mark {
    background-color: rgba(0, 0, 0, 0.5);
    color: #FFFFFF;
}

.textContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    text-align: justify;
    margin-left: 1rem;
    margin-right: 1rem;
}

#servicesOffered {
    background-color: #eaeaea;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-bottom: 2rem;
}

#servicesOfferedFlex {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    width: min(90%, 1000px);
}

.serviceBlock {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #CF2823;
    color: #FFFFFF;
    width: clamp(8rem, 20vw, 220px);
    height: clamp(4rem, 8vh, 6rem);
}

#callAndScheduleContainer {
    display: flex;
    justify-content: center;
    background-color: #eaeaea;
    text-align: center;
    width: 100%;
}

#hoursContainer {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0px;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;

    background-image: url("/images/hoursbackground.jpg");
    background-repeat: no-repeat;
    background-position: 0% 30%;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: darken;

    font-size: clamp(1.3rem, 2vw, 1.6rem);
    height: clamp(26rem, 20vh, 500px);
}

.dayAndHours {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: min(70%, 25rem);
    background-color: rgba(0, 0, 0, 0.5);
}

.dayAndHours p {
    margin: 0;
    padding: 0;
}

#reviewsContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 2rem;
    height: min(16vh, 10rem);
}

#leaveReviewButton {
    background-color: #CF2823;
    color: #FFFFFF;
    font-weight: 700;
    padding: 1rem;
}

#leaveReviewButton:hover {
    background-color: #f2312a;
}

#embeddedMap {
    width: 100%;
    height: clamp(26rem, 18vh, 500px);
}

#footer {
    width: 100%;
    background-color: #CF2823;
    color: #FFFFFF;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    font-size: clamp(0.7rem, 1.1vw, 1rem);
    padding: 1rem;
    height: auto;
}

#footer p {
    margin: 0;
}

.socialMediaButtons {
    display: flex;
    flex-direction: row;
}

#facebookIconImg {
    height: 30px;
}