/*!!!!!!! style-sheet default !!!!!!*/

/*! ##### import google fonts #### */
@import url("https://fonts.googleapis.com/css2?family=Handlee&family=Montserrat&family=Roboto&display=swap");

/*! ##### ...google fonts... #### */
/* font-family: 'Handlee', cursive; */
/* font-family: 'Montserrat', sans-serif; */
/* font-family: 'Roboto', sans-serif; */
/*! ##### ...google fonts... #### */

/*! ......... default styles ......... */
html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/*! .........default styles ......... */

/*! .............. container starts ...............  */
/* container style  */
.container {
  max-width: 1000px;
  margin: auto;
}

/*? ........... header styles ........ */
/* header  */
header {
  background-color: #24a19c;
  padding: 0% 1%;
  text-align: center;
}

/* logo  */
.logo {
  width: 70px;
  height: 70px;
  line-height: 70px;
  padding: 10px;
  text-align: center;
  color: white;
  border-radius: 50%;
  border: 2px solid white;
}

/* nav li (nav-menu) */
nav ul li {
  display: block;
}

/* nav menu link  */
nav ul li a {
  display: block;
  text-decoration: none;
  color: white;
  line-height: 70px;
  padding: 0 20px;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-family: "Roboto", sans-serif;
  transition: 0.4s;
}

/* nav menu link hover effect  */
nav ul li a:hover {
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.5);
}
/*? ........... header styles ........ */

/*? ........... main styles ........ */
/* banner starts  */
#banner-section {
  background-image: url(images/banner-4.jpg);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* banner contents  */
.banner-contents {
  padding: 50px 10px;
  text-align: center;
}

/* banner heading  */
.banner-contents h1 {
  width: 100%;
  margin: 15px auto;
  font-size: 3rem;
  background: rgba(255, 255, 0, 0.844);
  color: black;
  border-radius: 5px;
  padding: 10px;
  font-family: "Handlee", cursive;
}

/* banner texts  */
.banner-contents p {
  width: 300px;
  margin: 15px auto;
  background: rgb(0, 128, 0);
  padding: 10px;
  color: white;
  border-radius: 10px;
  font-size: 1.5rem;
}

/* banner order button  */
.btn {
  width: 160px;
  padding: 10px;
  font-size: 1.3rem;
  border: none;
  border-radius: 5px;
  background: rgb(0, 128, 0);
  transition: 0.4s;
  color: white;
  cursor: pointer;
}

/* banner order button hover effect  */
.btn:hover {
  transform: scale(1.2);
}
/* banner ends */

/* about us section starts  */
#about-us-section {
  padding: 1%;
  background-color: rgb(62, 92, 96);
}

/* about us contents div  */
.about-us-contents {
  text-align: center;
}

/* about us heading  */
.about-us-contents h3 {
  font-size: 2rem;
  font-weight: bolder;
  margin-bottom: 10px;
  color: white;
}

/* about us texts  */
.about-us-contents p {
  font-size: 0.8rem;
  margin-bottom: 10px;
  color: rgb(231, 223, 223);
}
/* about us section endss  */

/* food menu section starts  */
/* food menu section  */
#food-menu-section {
  padding: 1%;
  background-color: #1a5164;
}

/* card  */
.card {
  transition: 0.3s;
}

/* card hover effect  */
.card:hover {
  transform: scale(1.05);
}

/* card body  */
.card-body {
  text-align: center;
}

/* card image  */
.card-body img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* card item desc  */
.card-item-desc {
  background: rgb(165, 164, 164);
}

/* card item title  */
.card-item-title {
  background: green;
  color: white;
  padding: 10px;
}

/* card item desc texts  */
.card-item-desc > p {
  font-size: 0.8rem;
  padding: 10px;
  font-weight: bold;
}
/* food menu section endss  */

/* contact us section starts  */
/* contact us  */
#contact-us-section {
  padding: 1%;
  background: #595b83;
}

/* contact details  */
.contact-details {
  color: white;
  text-align: center;
  padding: 20px 0px;
}

/* map  */
.location-map {
  width: 100%;
  height: 250px;
}

/* contact details text */
.contact-details p,
address {
  font-size: 0.8rem;
}
/* contact us section ends  */
/*? ........... main styles ........ */

/*? ........... footer styles ........ */
/* footer  */
footer {
  padding: 1%;
  color: white;
  background-color: #060930;
}

/* footer paragraph  */
footer p {
  line-height: 32px;
  font-size: 0.8rem;
  text-align: center;
}

/* social links  */
.social-links {
  text-align: center;
}

/* social links style  */
.solcial-link-style {
  color: white;
  width: 32px;
  height: 32px;
  /* line-height: 32px; */
  border-radius: 50%;
  border: 1px solid white;
  padding: 7px 0 0 0;
  margin: 0 10px;
  transition: 0.4s;
  text-align: center;
}

/* social links hover effect  */
.solcial-link-style:hover {
  background-color: green;
  transform: scale(1.2);
}

/*? ........... footer styles ........ */

/*! .............. container ends ...............  */

/* row class style  */
.row {
  width: 100%;
}

/* row class after clear both  */
.row::after {
  content: "";
  display: block;
  clear: both;
}
