@font-face{
    font-family: lexend;
    src: url(/src/assets/fonts/lexend/Lexend-VariableFont_wght.ttf);
}

:root{
    --site-color-01: white;
    --site-color-01-hover: rgb(180, 180, 180);
}

body{
    background-color: #ffffff;
}

body:after{
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    z-index: -1;
    content: url(/src/assets/social/fb_color.png) url(/src/assets/social/ig_color.png) url(/src/assets/social/yt_color.png)
}

h1{
    font-size: 20px;
    line-height: 30px;
    color:#6c0b0b;
    font-family: lexend;
}

h3{
    font-size: 20px;
    line-height: 30px;
    color:#6c0b0b;
    font-family: lexend;
}

p{
    font-size: 14px;
    line-height: 16px;
    color:#000000;
    font-family: lexend;
}

a {
    font-size: 14px;
    line-height: 8px;
    color:#ffffff;
    font-family: lexend;
    cursor: pointer;
}

.header-main{
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    background-color: #6c0b0b;
    display: flex;
    justify-content: space-between;
    z-index: 1000;
}

.logo{
    width: fit-content;
    height: 100%;
    padding-left: 40px;
    display: flex;
    align-items: center;

}

.logo img{
    height: 50px;
}

.wrapper{ 
    width: 1100px;
    margin: 0 auto;
}

.main-nav{
    width: fit-content;
    height: 100%;
}

.main-nav ul{
    list-style: none;
    margin-left: 5px;
}

.main-nav ul li{
    display: inline;
    float: left;
}

.main-nav ul li a{
    padding: 0 10px;
    font-family: lexend;
    line-height: 60px;
    color: #ffffff;
    display: block;
    height: 100%;
    text-decoration: none;
}

.main-nav ul li a:hover{
    color: #bfa364;
}


.social{
    width: fit-content;
    height: 100%;
    padding-right: 60px;
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.social-fb{
    width: 20px;
    height: 20px;
    background-image: url(/src/assets/social/fb_bw.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.social-fb:hover{
    background-image: url(/src/assets/social/fb_color.png);
}

.social-ig{
    width: 20px;
    height: 20px;
    background-image: url(/src/assets/social/ig_bw.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.social-ig:hover{
    background-image: url(/src/assets/social/ig_color.png);
}

.social-yt{
    width: 20px;
    height: 20px;
    background-image: url(/src/assets/social/yt_bw.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.social-yt:hover{
    background-image: url(/src/assets/social/yt_color.png);
}

/* footer */

.footer-main{
    position: relative;
    bottom: 0;
    width: 100%;
    height: 200px;
    background-color: #000;
    display: flex;
    justify-content: space-between;
    z-index: 1000;
    color: #fff;
    padding: 15px;
}

.footer-main h2{
    color:#6c0b0b;
}

.footer-main p{
    color:#fff;
}

.burger-menu, .burger-menu-button{
    display: none;
}

@media (max-width: 1200px) {
   
  }
  
  @media (max-width: 1000px) {
   
  }
  
  @media (max-width: 600px) {

    .burger-menu-button{
        display: block;
        margin-left: 10px;
        width: 35px;
        height: 35px;
        background-image: url(/src/assets/social/burger-menu.png), url(/src/assets/social/close.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center, center left 35px;
    }

    .burger-menu{
        display: none;
        position: fixed;
        width: 100%;
        height: 100vh;
        z-index: 900;
        background-color: rgba(1,1,1,0.8);
    }

    .burger-menu ul{
        width: 100%;
        height: calc(100vh - 60px);
        display: flex;
        flex-wrap: wrap;
        align-content: flex-start;
    }

    .burger-menu ul li{
       flex-basis: 100%;
    }

    .burger-menu ul li:last-child{
        flex-basis: 100%;
     }
 

    .burger-menu ul li a{
        display: block;
        height: 100%;
        font-size: 2rem;
        padding: 30px 0;
        flex-basis: 100%;
        text-align: center;
        font-family: lexend;
        color: #ffffff;
        text-decoration: none;
     }
    .wrapper{ 
        width: calc(100% - 20px);
    }
 
    
    .logo{
        padding-left: 20px;
    }

    .main-nav{
        display:none;
    }

    .social{
        padding-right: 20px;
       
    }

    .footer-main{
        justify-content: center;
        display: block;
        height: auto;
        padding-bottom: 20px;
        flex-basis: 100%;
        text-align: center;
    }
  }
  
  @media (max-width: 400px) {
    .footer-main{
        justify-content: center;
        display: block;
        height: auto;
        padding-bottom: 20px;
        flex-basis: 100%;
        text-align: center;
    }
  }

