:root {
    --main-bg-color: #FFA15E;
    --logo-text: #FEEB3B;
    --logo-shadow: #612734;
}

html {
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
}

body {
    display: flex;
    flex-direction: column;
    height: 100%;

    margin-left: 10%;
    margin-right: 10%;
    background-color: var(--main-bg-color);
}

a {
    color: inherit;
}

.logo {
    width: 100%;
}

.services {}

.testimonials {}

.contact-info {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: -10%;
}

.contact-img {
    width: 100%;
    object-fit: scale-down;
    margin-left: -20%;
    margin-right: -20%;
}

.contact-text {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    margin-left: 5%;
    margin-right: -5%;
    margin-top: 10%;
    color: var(--logo-shadow);
}

.contact-text-location {
    grid-row: 1;
    grid-column-start: 1;
    grid-column-end: span 2;
}

.contact-text-social {
    grid-row: 3;
    grid-column: 1;
    justify-content: center;
    align-content: center;

}

.contact-text-hours {
    grid-row: 2;
    grid-column: 1;
    margin-top: 12%;
}


.links {
    margin-top: 15%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}


.text-link {}

/* Define the scrollbar styles for webkit browsers */
::-webkit-scrollbar {
    width: 14px;
    /* Set the width of the scrollbar */
}

::-webkit-scrollbar-thumb {
    opacity: .9;
    background-color: black;
    /* Set the color of the thumb (the draggable part) */
    border-radius: 6px;
    /* Set the border radius of the thumb */
    margin-right: 20px;
    /* Shift the scrollbar to the left by 2 pixels */
}

::-webkit-scrollbar-track {
    background-color: transparent;
    /* Set the color of the track (the area behind the thumb) */
}

/* Optional: Add some additional styling */
::-webkit-scrollbar-button {
    display: none;
    /* Hide the scrollbar buttons (arrow buttons) */
}

/* Optional: Add hover effect to the thumb */
::-webkit-scrollbar-thumb:hover {
    background-color: var(--logo-text);
    /* Change the color on hover */
}