@import url('https://fonts.googleapis.com/css2?family=Julius+Sans+One&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background-color: #6C2B25;
}

hr {
    width: 15%;
    border: none;
    background-color: #F6E28B;
    height: 2px;
}

/* paragraph */
.title {
    color: #F6E28B;
    font-family: 'Julius Sans One', sans-serif;
    font-style: normal;
    font-size: 2.5rem;
}

.sub_title {
    color: #F6E28B;
    font-family: 'Julius Sans One', sans-serif;
    font-style: normal;
    font-size: 1.5rem;
}

p {
    margin-top: 200px;
    margin-bottom: 200px;
    margin-left: 40px;
    margin-right: 40px;
    color: #F6E28B;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1rem;
}

/* navbar */

#nav {
    text-transform: uppercase;
    font-family: 'Lato', sans-serif;
    position: fixed;
    font-weight: 300;
    font-style: normal;
    font-size: 1em;
    list-style-type: none;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #56241f;
    text-align: center;
    z-index: 2;

    & li a {
        transition: background-color 0.2s;

        &:hover {
            background-color: #50211b;
        }
    }
}


/* navbar telephone */
#tele {
    position: fixed;
    color: white;
    top: 25px;
    right: 10%;

    & i {
        margin-right: 10px;
    }
}

/* navbar logo */
#logo {
    position: fixed;
    background-color: transparent;
    padding: 10px;
    left: 1%;
    width: 10%;
    min-width: 80px;
}

#logo_bg {
    position: fixed;
    padding: 0;
    width: 10%;
    left: 1%;
    height: 0;
    min-width: 80px;
    background-color: #50211b;
}

/* navbar btns */

#nav li {
    float: none;
    display: inline-block;

    & a {
        display: block;
        color: white;
        padding: 25px 18px;
        text-decoration: none;
    }
}

#mobile_nav_btn {
    color: white;
    float: right;
    padding: 18px 18px;
    font-size: 2em;
    font-weight: 200;
    display: none;

    &:hover {
        color: #CCC;
    }
}

/* side navbar */

#side_nav {
    height: 100%;
    width: 250px;
    position: fixed;
    z-index: 3;
    top: 0;
    right: -250px;
    background-color: #56241f;
    overflow-x: hidden;
    padding-top: 60px;
    transition: 0.5s;

    & a {
        padding: 30px 8px 30px 32px;
        text-decoration: none;
        font-weight: 300;
        font-style: normal;
        font-size: 1.5em;
        list-style-type: none;
        font-family: 'Lato', sans-serif;
        color: white;
        display: block;
        transition: 0.3s;

        &:hover {
            background-color: #50211b;
        }
    }

    & .close_btn {
        position: absolute;
        top: 0;
        left: 0;
        padding: 16px 8px 8px 32px;
        font-size: 36px;

        &:hover {
            background-color: transparent;
            color: #CCC;
        }
    }

    & hr {
        margin: 0;
        width: 85%;
        height: 1px;
        margin-left: auto;
        margin-right: auto;
        background-color: white;
    }
}

@media screen and (max-height: 450px) {
    #side_nav {
        padding-top: 15px;

        & a {
            font-size: 18px;
        }
    }
}

#opacity_overlay {
    position: fixed;
    top: 0;
    height: 150%;
    width: 150%;
    background-color: black;
    opacity: 0;
    z-index: 2;
    display: none;
}

.stop-scrolling {
    height: 100%;
    overflow: hidden;
}

/* responsive */

@media screen and (max-width: 1085px) {
    #tele {
        display: none;
    }
}

@media screen and (max-width: 670px) {
    #mobile_nav_btn {
        display: block;
    }

    #nav li {
        display: none;
    }

    #tele {
        display: block;
        right: 0;
        left: 50%;
        transform: translate(-50%, 0);
    }

    #logo {
        left: 2%;
    }

    #logo_bg {
        left: 2%;
    }
}

@media screen and (max-width: 430px) {
    #tele {
        padding-left: 5%;
    }
}

@media screen and (max-width: 379px) {
    #tele {
        display: none;
    }
}

/* footer */

footer {
    color: #F6E28B;
    background-color: #4A1C18;
    width: 100%;
    padding-top: 40px;
}

#footer_contact {
    float: left;
    padding-left: 20%;
}

#footer_time {
    padding-right: 20%;
    float: right;
}

.footer_title {
    font-family: 'Julius Sans One', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1.5rem;
    padding-bottom: 10px;
}

.footer_sub {
    color: #F6E28B;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1rem;

    & i {
        padding-right: 5px;
    }
}

#footer_inf {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer_btn {
    text-decoration: none;
    color: #F6E28B;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1rem;

    &:hover {
        color: #A68B3C;
        transition: 0.2s ease;
    }
}

#social_media {
    padding-top: 30px;
    padding-bottom: 10px;
    display: flex;
    justify-content: center;
    align-content: center;

    & a {
        color: #F6E28B;
    }

    & i {
        font-size: 1.3em;

        &:hover {
            color: #A68B3C;
            transition: 0.2s ease;
        }
    }
}

#fb {
    padding-right: 10px;
}

#ig {
    padding-left: 10px;
}

#footer_bottom {
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
    text-align: center;
    background-color: #35100E;
}

#footer_links {
    display: flex;
    justify-content: center;
    align-content: center;
    left: 50%;
    padding-bottom: 5px;
}

#ln {
    padding-right: calc(5px);
}

#dp {
    padding-left: 5px;
}

@media screen and (max-width: 439px) {
    #footer_inf {
        flex-direction: column;

        & hr {
            display: none;
        }

        & div {
            padding-left: 0;
            padding-right: 0;
        }
    }

    #footer_time {
        max-width: 217px;
    }

    #footer_contact {
        width: 217px;
        padding-bottom: 8%;
    }

    #social_media {
        padding-top: 0;
    }
}