* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: #f2f2f2;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: white;
    z-index: 100;
}

.header-container {  /* Might need to remove */
    margin-right: 250px;
}

.logo{
    margin-top: 5px;
    cursor: pointer;
    user-select: none;
}

.navbar{
    justify-content: space-between;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 70px;
    justify-content: center;
    font-size: 18px;
}

.nav-links li {
    position: relative;
}

#orderTxt {
    color: red;
    margin-left: 50px;
}

.phoneNum {
    color: red;
    margin-left: 50px;
    cursor: default;
}

.navbar a:not(.mainBtnLinks){
    display: inline-block;
    color: black;
    text-decoration: none;
    transition: 0.2s;
    font-family: "Ubuntu", sans-serif;
    font-weight: 900;
    font-style: normal;
    text-transform: uppercase;
    font-weight: bold;
    z-index: 1;
    font-size: 20px;
}

.navbar .underline::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: red;
    bottom: 20px;
    left: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}


.navbar a:hover::after {
    transform: scaleX(1);
}

.navbar a:hover{
    color: red;
}

#nav-home{
    color: red;
}

.nav__text {
    position: absolute;
    height: 50px;
    width: 100%;
    margin-bottom: 45px;;
    margin-left: 600px;
    z-index: 1;
}

.nav__call {
    font-size: 15px;
    font-weight: bold;
    color: red;
    z-index: 1;
    position: absolute;
    margin-left: 750px;
}

.nav__login {
    position: absolute;
    margin-left: 750px;
    bottom: 10px;
}

.top_options_wrapper{
    display: flex;
	flex-direction: column;
	gap: 2rem;
    font-size: 18px;
}

.top_options{
    height: 10px;
    width: 63.5%;
    bottom: 40px;
    display: flex;
    gap: 3rem;
    font-weight: bold;
    justify-content: right;
    user-select: none;
}

.top_options_call{
    margin-top: 1px;
    color: red;
}

.top_options_login{
    font-size: 18px !important;
}

/* Bootstarp css */

.navbar .navbar-nav {
    margin-left: auto;
    gap: 2rem;
    padding-right: 350px;
}

.navbar-brand{
    margin-left: 230px !important; /* Forces the margin */
    position: relative !important;
    transform: translateX(70px);
    display: flex;
    user-select: none;
}

.navbar-brand img{
    width: 250px;
    height: auto;
    max-height: 200px;
}


/* Footer Styling */
.footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

.footer-content {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: default;
    user-select: none;
}

/* Footer static */
.footer-nav {
    margin: 10px 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.footer-nav a:hover {
    color: #ddd;
}

/* Social media icons styling | For footing*/
.social-media {
    margin-top: 10px;
    display: flex;
    gap: 20px;
}

.social-media a img {
    width: 24px;
    height: 24px;
    filter: invert(100%);
}



/* Media querie for navbar & footer*/
@media (max-width: 1800px){
    .navbar-brand{
        right: 100px;
    }
}

@media (max-width: 1600px){
    .navbar-brand{
        right: 100px;
    }
}

@media (max-width: 1440px){
    .navbar-brand{
        right: 100px;
    }
}

@media (max-width: 1024px){
    .navbar-brand{
        right: 100px;
    }
}

@media (max-width: 1020px) { /* Changing min to max will fix the normal screen view, but will undo changes from mobile view, and vise-versa*/

    .top_options_wrapper{
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .top_options{
        height: 60px;
        width: 100%;
        bottom: 40px;
        display: flex;
        gap: 1rem;
        font-weight: bold;
    }
    
    .top_options_login{
        font-size: 15px !important;
        bottom: 43px;
        
    }

    .navbar-toggler-icon {
        height: 65px !important;
        width: 65px !important;
    }

    .navbar-nav {
        font-size: 30px;
        position: relative;
        right: 50px !important;
        padding-left: 90px;
    }

    .navbar-brand{
        margin-left: 75px !important; /* Forces the margin */
        position: relative !important;
    }

    .footer-content p {
        font-size: 35px;
    }

    .footer-nav a {
        font-size: 25px;
    }

}

@media (max-width: 992px) {
    .navbar-collapse.collapse{
        position: absolute;
        z-index: 100;
        top: 100%;
        background-color: rgb(248, 249, 250);
        /* width: 200px; */
        width: 100%;
        left: 50%;
        transform: translateX(-50%);
    }
}