/* handling gernal styles */

.container{
    padding-left: 15px;
    padding-right: 15px;
    margin: auto;
}
@media(min-width: 768px){
    .container{
        width: 750px;
    }
}
@media(min-width: 992px){
    .container{
        width: 970px;
    }
}
@media(min-width : 1200px){
    .container{
        width: 1170px;
    }
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Alegreya', serif;
}
:root{
    --main-color:#8e7754;
    --text-color:#969696;
}

/* start welcome page */
.welcome-page{
    width: 100%;
    height: 100vh;
    background: url(../Images/bg-home.jpg) no-repeat center center/cover;
}
.welcome-page nav{
    width: 100%;
    padding:  0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: all 0.3s ease-in-out;
}
.welcome-page nav .logo{
    height: 48px;
}
.welcome-page nav .logo img{
    height: 100%;
}

.welcome-page nav .nav-links{
    list-style: none;
    display: flex;
    gap: 30px;
    
}
.welcome-page nav .nav-links li{
    list-style: none;
    padding: 40px 0px ;
}
@media screen and (max-width:991px) {
    .welcome-page nav{
        flex-direction: column;
        align-items: flex-start;
        background-color: rgba(0, 0, 0, 0.8);
        overflow: hidden;
    }
    .welcome-page .container{
        width: 100%;
        margin: 0;
        padding: 0;
    }
    .welcome-page nav .logo{
        margin: 20px 0;
    }
    .welcome-page nav .nav-links{
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    .welcome-page nav .nav-links li{
        width: 100%;
        padding: 15px 0 5px;
        border-bottom: 1px solid rgb(76, 72, 72);
    }
    .welcome-page nav .nav-links li:last-child{
        border-bottom: none;
    }
}

@media screen and (max-width : 500px) {
    .welcome-page header{
        margin: 20px auto 0 auto;
        padding: 0 5px;
    }
    .welcome-page header h1{
        font-size: 20px;
        font-weight: 200px;
        margin: 0;
    }
    .welcome-page header .p2{
        font-size: 16px;
        line-height: normal;
    }
}
.welcome-page nav .nav-links li a{
    text-decoration: none;
    color: white;
    font-size: 18px;
    
}




.welcome-page header{
    text-align: center;
    color: white;
    margin: 80px auto 0 auto;
    max-width: 100%;
}

.welcome-page header h1{
    font-size: 76px;
    
    font-weight: 500;
    margin-bottom: 20px;
}
.welcome-page header p:nth-child(1){
    font-size: 22px;
    margin-bottom: 5px;
}
.welcome-page header .p2{
    font-size: 24px;
    margin: 10px 0 20px 0;
    line-height: 1.86em;
}
.welcome-page header .buttons{
    display: flex;
    justify-content: center;
    gap: 20px;
}
.welcome-page header .buttons button{
    padding: 15px 30px;
    font-size: 18px;
    border: 2px solid white;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 500;
    /* transition: all 0.3s ease-in-out; */
    background-color: transparent;
    color: white;
}
.welcome-page header .buttons .btn1{
    background-color: var(--main-color);
    border: none;
}
.welcome-page header .buttons button:hover{
    background-color: white;
    color:  black;
    transition: all 0.3s ease-in-out;
}


.who-we-are{
    margin: 90px 0 60px 0 ;

}
.who-we-are .container{
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
}
.who-we-are .container .div-imge{
    width: 130%;
}
.who-we-are .container .div-imge img{ 
    width: 100%;
}
.who-we-are .container .content{
    padding: 0 0 0 25px;
    margin: 0 0 0 15px;
}
.who-we-are .container .content h2{
    font-size: 32px ;
    margin: 0 0 025px;
    font-weight: normal;
}
.who-we-are .container .content p{ 
    color: var(--text-color);
    font-size: 17px;
    line-height: 1.8em;
}
.who-we-are .container .content ul{ 
    list-style: none;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.who-we-are .container .content ul li{
    display: flex;
    align-items: center;
    gap: 15px;
 }
.who-we-are .container .content ul li i{
    font-size: 19px;
    color: var(--main-color);
    border: 1px solid var(--main-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
 }
.who-we-are .container .content ul li span{
    color: var(--text-color);

 }
 @media screen and (max-width : 767px) {
    .who-we-are .container{
        flex-direction: column;
    }
    .who-we-are .container .div-imge{
        width: 100%;
        /* margin: 0 auto; */
    }
 }

/* end Who-We-Are page */
/* start our location */
.our-location{
    padding: 90px 0px;
    margin: 0 15px;
    background-color: #f8f8f8;
}
.our-location .container{
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
}
.our-location .container .content h2{
    font-size: 32px;
    margin: 0 0  25px;
    font-weight: normal;
}
.our-location .container .content .p1{
    color: var(--text-color);
    font-size: 17px;
    line-height: 1.8em;
    margin: 0 0 20px 0;
}
.our-location .container .content .p2{
    color: var(--text-color);
    font-size: 17px;
    line-height: 1.8em;
}
.our-location .container .div-imge{
    width: 130%;
}
.our-location .container .div-imge img{
    width: 100%;
}
@media screen and (max-width : 767px) {
    .our-location .container{
        flex-direction: column;
    }
    .our-location .container .div-imge{
        width: 100%;
        /* margin: 0 auto; */
    }
 }
/* End our location */
/* start our baking */
.our-baking{
    margin: 0 15px;
    padding: 70px 0 50px;
}
.our-baking .container .content{
    text-align: center;
    margin: 10px 0 60px ;
}
.our-baking .container .content h2{
    font-size: 30px;
    font-weight: normal;
}
.our-baking .container .content p{
    margin: 17px 0 0 0;
    color: var(--text-color);
    font-size: 17px;
    line-height: 1.8em;
}
.our-baking .container .boxs{
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
}
.our-baking .container .boxs .box{
    padding: 0 20px 0 15px;
    text-align: center;
}
.our-baking .container .boxs .box img{
    width: 100%;
}
.our-baking .container .boxs .box h4{
    font-size: 22px;
    margin: 30px 0 30px 0;
    font-weight: normal;
}
.our-baking .container .boxs .box p{
    color: var(--text-color);
    font-size: 17px;
    line-height: 1.8em;
}

@media screen and (max-width : 767px) {
    .our-baking .container .boxs{
        flex-direction: column;
    }
    
}
/* End our baking */
/* start contact info */
.contact-info{
    padding: 90px 0 ;
    background-color: #f8f8f8;
    margin: 0 15px;
}
.contact-info .container{
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
}
.contact-info .container .content{
    padding: 20px 15px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact-info .container .content h2{
    margin:  0 0 25px;
    color: #303030;
    font-size: 32px;
    font-weight: normal;
}
.contact-info .container .content p ,
.contact-info .container .content .contact-method li span{
    color: var(--text-color);
    font-size: 17px;
    line-height: 1.8em;
}

.contact-info .container .content .contact-method {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-info .container .content .contact-method li{
    padding: 15px 0 15px 0px;
    position: relative;
    display: flex;
    align-items: center;
    
}
.contact-info .container .content .contact-method li i{
    margin: 0 10px 0 0;
    background-color: #8e7754;
    width: 36px;
    height: 36px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}



.contact-info .container .iframe{
   width: 1200px;
  height: 600px;
  overflow: hidden;
}
.contact-info .container .iframe iframe {
    width: 100%;
    height: 100%;
    border: none;
 }

 @media screen and (max-width: 768px) {
    .contact-info .container{
        flex-direction: column;
    }
    .contact-info .container .iframe {
        height: 400px;
        width: 70%;
    }
 }

/* End contact info */
/* start  footer */
/* End footer */
footer  .top-footer{
    padding: 70px 0 50px;
    background-color: #403d38;
}
footer  .top-footer .container{
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}
footer  .top-footer .container .adout-us ,
footer .top-footer  .container .why-are,
footer  .top-footer .container .opening-house,
footer  .top-footer .container .contact-details{
    padding: 0 16px ; 
    width: 25%;
}
footer  .top-footer .container .adout-us h4,
footer .top-footer  .container .why-are h4,
footer  .top-footer .container .opening-house h4,
footer  .top-footer .container .contact-details h4{
    color: white;
    font-size: 18px;
    margin: 0 0 25px;
    font-weight: normal;
}
footer  .top-footer .container .adout-us p{
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.8em;
}
footer  .top-footer .container .adout-us .p1{
    margin: 0 0 20px 0;
}

footer .top-footer  .container .why-are .advantages ul,
footer  .top-footer .container .opening-house .times ul,
footer  .top-footer .container .contact-details ul{
    list-style: none;
    display: flex;
    flex-direction: column;
}
footer .top-footer  .container .why-are .advantages ul{
    gap: 15px;
}
footer .top-footer  .container .why-are .advantages ul li{
    margin:  0 0 6px;
    padding: 0 0 7px;
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.8em;
    border-bottom: 0.5px solid var(--text-color);
}
footer .top-footer  .container .why-are .advantages ul li:last-child,
footer  .top-footer .container .opening-house .times ul li:last-child,
footer  .top-footer .container .contact-details ul li:last-child
{
    border-bottom: none;
}
footer .top-footer  .container .why-are .advantages ul li::before,
footer  .top-footer .container .opening-house .times ul li::before{
    content: "> ";
    color: var(--main-color);
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}


footer  .top-footer .container .opening-house .times{
    padding: 0 16px ;
}
footer  .top-footer .container .opening-house .times ul{
    gap: 10px;
}
footer  .top-footer .container .opening-house .times ul li{
    margin:  0 0 6px;
    padding: 0 0 7px;
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.8em;
    border-bottom: 0.5px solid var(--text-color);
}
footer  .top-footer .container .contact-details ul li{
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 12px 0 12px;
    padding: 0 0 12px;
    border-bottom: 0.5px solid var(--text-color);
}
footer  .top-footer .container .contact-details ul li i{
    font-size: 16px;
    color: var(--main-color);

}
footer  .top-footer .container .contact-details ul li span{
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.8em;
}

@media screen and (max-width :991px ) {
    footer  .top-footer .container{
        flex-wrap: wrap;
    }
    footer  .top-footer .container .adout-us ,
    footer .top-footer  .container .why-are,
    footer  .top-footer .container .opening-house,
    footer  .top-footer .container .contact-details{
        width: 45%;
        margin-bottom: 5px;
    }
}
@media screen and (max-width :768px ) {
    footer  .top-footer .container{
        flex-direction: column;
        align-items: flex-start;
    }
    footer  .top-footer .container .adout-us ,
    footer .top-footer  .container .why-are,
    footer  .top-footer .container .opening-house,
    footer  .top-footer .container .contact-details{
        width: 100%;
        margin-right: 20px;
    }
    
}

footer  .bottom-footer{
    padding: 50px 0 40px ;
    background-color: #353330;
    text-align: center;
    color: #797979;
}
footer  .bottom-footer .container  .imge{
    margin: 10 auto 25px auto;
    /* width: 100%; */
}
footer  .bottom-footer .container  .imge img{
    height: 96px;
}
footer  .bottom-footer .container  p{
    margin: 5 0 0 0;
    font-size: 15px;
}
footer  .bottom-footer .container  .social-media{
    margin: 15px 0 0 0;
    padding: 8px 0 0 0 ;
    display: flex;
    justify-content: center;
    align-items: center;
}
footer  .bottom-footer .container  .social-media i{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #484540;
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
    margin: 0 8px 0 0 ;
    transition: all 0.3s ease-in-out;
}
footer  .bottom-footer .container  .social-media .fa-facebook:hover,
footer  .bottom-footer .container  .social-media .fa-twitter:hover,
footer  .bottom-footer .container  .social-media .fa-instagram:hover,
footer  .bottom-footer .container  .social-media .fa-linkedin:hover{
    background-color:rgb(12, 12, 205);
    color: white;
} 
