/* Importing Font Style from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&family=Rubik:wght@400;500;600;700&family=Shadows+Into+Light&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rouge+Script&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Roboto, 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
body {
    background-color: white;
}
html {
    scroll-behavior: smooth;
}

/* Custom Scroll Bar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background-color: #F9F6F0;
}
::-webkit-scrollbar-thumb {
    background-color: #FF9D2E;
    border-radius: 4rem;
}

/* About Us Page */
section.abs-section {
    margin: 0;
}
.abs-section {
    position: relative;
    height: 100vh;
    background-image: url("../images/hero-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.abs-title {
    font-family: cursive, sans-serif;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    margin: 0;
    color: #FF9D2E;
    padding: 80px 0;
    text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white, 1px 1px 0 white;
    padding-right: 20%;
    margin-bottom: -10px;
}
.abs-image img {
    position: absolute;
    margin-left: 200px;
    right: 0;
    width: 40%;
}
.abs-section p {
    color: #F9F6F0;
    margin-right: 45%;
    margin-left: 4%;
    font-family: Roboto, sans-serif;
    font-size: 20px;
    padding: 6px;
    margin-bottom: 32px;
}
.abs-section p span a {
    text-decoration: none;
    color: #FF9D2E;
}
@media screen and (max-width: 1000px) {
    .abs-section {
        height: auto;
        padding: 80px 16px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .abs-title {
        text-align: center;
        padding: 8px 12px;
        font-size: 40px;
    }
    .abs-image img{
        position: relative;
        width: 100%;
    }
    .abs-image, .abs-title {
        width: 64%;
        padding: 16px;
    }
    .abs-section p {
        width: 100%;
        margin: 0;
        padding: 0;
    }
    .abs-section p:not(:last-child) {
        margin-bottom: 24px;
    }
    .abs-section p:last-child {
        padding-bottom: 40px;
    }
}
