:root{
    --white: #f0eeee;
    --orange:#EB6A28;
    --lightgrey:#8A8C99;
    --darkgrey:#383838;
    --black: #151515;
}
html{
    overflow: scroll;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins;
    background-color: var(--white);
}
#main{
    width: 100dvw;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(rgba(33, 33, 33, 0.5)rgba(33, 33, 33, 0.5)), url(Images/bp-banner-min-667c233703088.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.header{
    width: 100%;
    position: relative;
    display: flex;
    height: fit-content;
}
.navbar{
    width: 100%;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo h1{
    font-size: 1.2rem;
    line-height: 3rem;
}
span{
    color: #EB6A28;
}
.links {
    display: flex;
    gap: 2rem;
    list-style: none;
    border: 1.5px solid var(--orange);
    border-radius: 30px;
    padding: 15px 20px;
}
.links a{
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    color: var(--black);
    transition: 0.2s ease-in-out;
}
.links a:hover{
    color: var(--orange);
}
.sm{
    display: flex;
}
.sm a{
    padding: 15px;
    font-size: 1.1rem;
    text-decoration: none;
    color: var(--black);
    transition: 0.2s ease-out;
}
.sm a:hover{
    color: var(--orange);
}
.toggle_btn {
    color: var(--black);
    font-size: 2rem;
    cursor: pointer;
    display: none;
}

/* Dropdown Menu */
.dropdown_menu{
    display: none;
    position: absolute;
    top: 4.5rem;
    height: 0;
    width: 100dvw;
    background-color: rgba(240, 238, 238, 0.6);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: 0.5s cubic-bezier(0.24, 1.25, 0.66, 1.18);
}

.dropdown_menu.open {
    height: 300px;
}

.dropdown_menu li {
    width: 100%;
    background-color:rgba(240, 238, 238, 0.5);
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.dropdown_menu li a{
    width: 100%;
    text-decoration: none;
    color: var(--black);
    transition: 0.2s ease-in-out;
}
.dropdown_menu li a:hover{
    color: var(--orange);

}
.dropdown_menu .sm {
    width: 50%;
    min-width: 350px;
    margin-bottom: 2rem;
    background-color: rgba(240, 238, 238);
    border: 1.5px solid var(--darkgrey);
    border-radius: 30px;
    display: flex;
    justify-content: center;

}
@media(max-width: 1200px){
    .links,
    .sm {
        display: none;
    }

    .toggle_btn{
        display: block;
    }

    .dropdown_menu{
        display: block;
    }
}


#main{
    width: 100dvw;
    height: fit-content;
    display: flex;
}

.contact-container{
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 30px 30px;
}

.contact-left{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 2rem;
}

.contact-left-title h2{
    color: var(--orange);
    font-size: 2rem;
    font-weight: 600;
}

.contact-left-title hr{
    border: none;
    height: 2px;
    background-color: var(--orange);
    border-radius: 30px;
    margin-bottom: 20px;
}

.contact-inputs{
    width: 400px;
    min-width: 350px;
    height: 50px;
    outline: none;
    border: 1.5px solid var(--darkgrey);
    border-radius: 3px;
    padding-left: 20px;
    color: var(--black);
    transition: 0.2s ease-in-out;
}
.contact-inputs:focus{
    border: 1.5px solid #0000ff;
}

.contact-inputs::placeholder{
    color: var(--lightgrey);
}
.contact-left textarea{
    height: 120px;
    padding-top: 15px;
}
.contact-left button{
    font-weight: 500;
    margin-top: 20px;
    padding: 15px 25px;
    cursor: pointer;
    background-color: var(--orange);
    border: 2px solid var(--orange);
    border-radius: 30px;
    color: var(--white);
    transition: 0.2s ease-in-out;
}

.contact-left button:hover{
    background-color: transparent;
    border: 2px solid var(--orange);
    border-radius: 10px;
    color: var(--orange);
    transform: translateY(-5px);
}

.contact-right{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    border: 1.5px solid var(--darkgrey);
    padding: 30px;
    border-radius: 3px;
}
.contact-right h4{
    color: var(--orange);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
}
.contact-right p{
    margin-bottom: 30px;
}
.contact-right a{
    text-decoration: none;
    color: var(--black);
    transition: 0.2s ease-in-out;
}
.contact-right a:hover{
    color: var(--orange);
}
.privacy-policy{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.privacy-policy a{
    text-decoration: none;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 15px 25px;
    cursor: pointer;
    background-color: var(--orange);
    border: 2px solid var(--orange);
    border-radius: 30px;
    color: var(--white);
    transition: 0.2s ease-in-out;
}
.privacy-policy a:hover{
    background-color: transparent;
    border: 2px solid var(--orange);
    border-radius: 10px;
    color: var(--orange);
    transform: translateY(-5px);
}


@media(max-width: 1000px){
    main{
        min-height: 100dvh;
    }
    .contact-container{
        flex-direction: column;
    }
    .contact-right{
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .contact-left, .contact-right{
        width: 90dvw;
    }
    .contact-inputs{
        width: 90dvw;
        min-width: fit-content;
    }
    .contact-left-title h2, .contact-right h4{
        font-size: 1.5rem;
    }
}


/* Footer Start */
footer{
    display: flex;
    flex-direction: column;
    width: 100dvw;
    padding-bottom: 80px;
    background-color: var(--darkgrey);
}
footer span{
    background: transparent;
}
.footer-info{
    display: flex;
    width: 100%;
    padding: 80px;
    background-color: var(--darkgrey);
    align-items: flex-start;
    justify-content: space-between;
}
.footer-info h4{
    background: transparent;
    color: var(--white);
    margin-bottom: 30px;
    font-size: 1.2rem;
    font-weight: 600;
}
.footer-info p{
    background: transparent;
    font-size: 0.9rem;
    line-height: 1.5rem;
}
.menu, .menu a, .contact, .contact a, .hours, .legal, .legal a{
    background: transparent;
    color: var(--white);
    display: flex;
    flex-direction: column;
}
.menu a, .legal a{
    background: transparent;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.5rem;
    transition: 0.3s ease-in-out;
}
.menu a:hover, .legal a:hover{
    color: var(--orange);
}
.contact a{
    background: transparent;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.5rem;
    transition: 0.3s ease-in-out;
}
.contact a:hover{
    color: var(--orange);
}
.footer-copyright{
    width: 100%;
    font-size: 0.8rem;
    font-weight: 300;
    text-align: center;
    padding: 20px;
    border-top: 1px solid var(--lightgrey);
    border-bottom: 1px solid var(--lightgrey);
    background:transparent;
    color: var(--white);
}
@media(max-width: 1000px){
    footer{
        margin-top: 50px;
    }
    .footer-info{
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.menu, .contact, .hours{
    margin-bottom: 30px;
}
.footer-info h4{
    margin-bottom: 15px;
}
}
@media(max-width: 600px){
    footer{
        margin-top: 0;
    }
}
/* Footer End */