/* HeadPart */

.nav-box{
    display: flex;
    justify-content: center;


}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
header{
    display: flex;
    justify-content: space-between;
    padding: 22px 22px 22px 85px;
    align-items: center;
}

.nav-list{
    display: flex;
    justify-content:space-around;
    align-items: center;
    gap: 72px;
     
}
.nav-link{
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 450;
    font-family: "Poppins";
}
.nav-item:hover{
    transform: translateY(-3px);
    transition:  0.3s ease;
}

li{
    list-style: none;
}

.reg-link{
    background-color: #A0583c;
    color: white;
    text-decoration: none ;
    border-radius: 10px;
    font-family: "Poppins";
    padding: 10px 11px;
    display: flex;       
    align-items: center;        
    gap: 5px; 
    box-shadow: 0 3px 22px 1px rgba(0, 0, 0, 0.5);
}
.reg-link:hover{
    box-shadow: 0 3px 22px 1px rgba(0, 0, 0, 0.5);
    transform: translateY(-3px);
    background: linear-gradient( to bottom, rgba(160, 88, 60, 1) 40%, rgba(192, 130, 103, 1) );
    transition:  0.3s ease;
}

.login-btn {
    display: flex;
    gap: 11px;
    border-radius: 5px;

}

.main-img{
    max-width: 100%;
    width: 100%;
}



.hero-section {
    background-image:
    linear-gradient(rgba(33, 33, 35, 1) , rgba(192, 130, 103, 0.15) 9%),
    url("../img/Bg\ Image.png");
    background-size: cover;
    background-position: center;
    width: 100%;
    background-repeat: no-repeat;
    
}

.hero-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-bottom: 117px;
}
.banner{
    margin: 0 auto;

}
.banner-title-box{
    text-align: center;
    font-family: "Roboto";
    margin:150px auto 75px auto;
}
.banner-title{
    color:#FFFADA;
    font-size: 70px;
    margin-bottom: 25px;
}
.bunner-subtitle{
    color:#FFFADA;
    width: 100%;
    font-size: 24px;
    font-weight: 400;
}

.btn1{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    border-radius: 18px;
    width: 250px;
    background: linear-gradient( to right, rgba(160, 88, 60, 1) 40%, rgba(192, 130, 103, 1) );
    box-shadow: 3px 3px 10px rgba(160, 88, 60, .71);
    padding: 10px;
    color: #ffffff;
    text-decoration: none;
    font-family: "Poppins";
   
}

.btn1:hover{
    background: linear-gradient( to left, rgba(160, 88, 60, 1) 40%, rgba(192, 130, 103, 1) );
}
   

.btn-box{
    width: 30%;
    gap: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0 auto;
}



/* FOOTER PART */
.foot{
    display: flex;
    background-color: rgba(192, 130, 103, 1);
    align-items: center;
    justify-content: center;
    font-family: "Poppins";
    color: #ffffff;
    gap: 15px;
    
}

.icn{
    background: none;
    max-width: 30px; 
}
.footer-text{
    font-size: 21px;
    font-weight: 500;
}

.footer{
    height: auto;
}


.divider{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 57px;
    gap: 11px;
}

.divider-line{
    width: 100%;
    height: 3px;
    background-color: rgba(160, 88, 60, 1);
}

.divider-title{
    white-space: nowrap;
    font-family: "Poppins";
    color: rgba(192, 130, 103, 1);
    font-size: 23px;
}

.sct{
    padding: 37px;
}

.sct-lt{
    background-color: #FFFADA;
}


.card-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: 100%;
    width: 100%;
}

.card{
    background-color: rgba(192, 130, 103, 1);
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    gap: 30px;
    max-width: 100%;
    box-shadow: 0 3px 22px 1px rgba(0, 0, 0, 0.5);
}

.card-img{
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}
.card-description{
    font-family: "Poppins";
    color: rgba(255, 250, 218, 1);
    font-size: 18px;
    font-weight: 400;
}
.card-title{
    font-family: "Poppins";
    color: rgb(255, 255, 255);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
}
.coffee-btn{
    display: flex;
    justify-content: center;
    align-items: space-around;
    background-color: rgba(160, 88, 60, 1);
    font-size: 20px;
    border-radius: 18px;
    width: 150px;
    box-shadow: 3px 3px 10px rgba(160, 88, 60, .71);
    padding: 10px;
    color: #ffffff;
    text-decoration: none;
    font-family: "Poppins";
}

.coffee-btn:hover{
    background-color: rgba(160, 88, 60, 1);
    transform: translateY(-3px);
    transition:  0.3s ease;
}
.card-price{
    font-family: "Poppins";
    color: rgb(255, 255, 255);
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
}
.order-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}
.brands-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin: 50px 0px 70px 0px;
}

.divider1{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 57px;
    gap: 11px;

}

.divider-line1{
    width: 100%;
    height: 3px;
    background-color: rgba(255, 250, 218, 1);
}

.divider-title1{
    white-space: nowrap;
    font-family: "Poppins";
    color: rgba(255, 250, 218, 1);
    font-size: 23px;
}
.sct-lt1{
    background-color: rgba(192, 130, 103, 1);

}

.box3{
    display: flex;
    justify-content: space-around;
    align-items: flex-start;

    gap: 70px;
    max-width: 100%;
    height: auto;
    padding: 100px 40px 100px 40px;
    font-family: "Poppins";
    color: rgba(255, 255, 255, 1);
}

.icons-foot{
    display: flex;
    gap: 15px;
}

.contact-link{
    color: rgba(255, 250, 218, 1);
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    display: block;
    margin-bottom: 10px;
    white-space: nowrap;
}

.links-foot3{
    display: flex;
    flex-direction: column;
    gap: 1px;
    line-height: 0.75;
}
.contact-title{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.franchise-merch-link{
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    display: block;
    white-space: nowrap;
    line-height: 1.5;
}

.list{
    list-style: none;
    display: flex;
    flex-direction: column;
}

.list1{
    list-style: none;
    display: flex;
    gap: 15px;
}
