/* ======= font link ===== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}

/* ======== color ====== */

:root {
  --primary-color: #91060b;
  --secondary-color: #91060b;
  --text-color: #282b2e;
  --black: #000;
  --white: #fff;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Roboto Slab", serif;
}

h1 {
  font-size: 60px;

}

h2 {
  font-size: 45px;
  text-transform: capitalize;
}

h4 {
  font-size: 20px;
}

p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 26px;
}

.container {
  width: 100%;
  max-width: 1260px;
  padding: 0px 20px;
  margin: 0 auto;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
}

.primary-btn a {
  background-color: #91060b;
  padding: 10px 25px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  color: var(--white);
  border-radius: 4px;
  transition: all .2s ease-in;
  display: inline-block;
}

.primary-btn a:hover {
  background-color: var(--secondary-color);
}

.scondary-btn a {
  background-color: transparent;
  border: 1px solid #fff;
  padding: 10px 25px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  color: var(--white);
  border-radius: 4px;
  transition: all .2s ease-in;
  display: inline-block;
}

.scondary-btn a:hover {
  border: 1px solid var(--secondary-color);
  background-color: var(--secondary-color);
}

img {
  width: 100%;
}

.sticky {
  box-shadow: 0px 2px 20px 0px #d1d1d199;
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0px;
  z-index: 999;
  background-color: var(--white);
}

/* ========== header style ======== */

header {

  /* ======== top header ======== */

  .top-header {
    background-color: var(--secondary-color);
    padding: 8px 0px;

    .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    a {
      color: var(--white);
      font-size: 14px;
      font-family: "Poppins", sans-serif;
    }

    .top-deatils {
      display: flex;
      gap: 20px;

      a {
        display: flex;
        gap: 15px;
      }
    }

    .social-media {
      ul {
        display: flex;
        gap: 15px;
      }

      p {
        color: var(--white);
      }

    }
  }


  /* ========== bottom header ====== */

  .bottom-header {
    padding: 8px 0px;

    .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      display: flex;

      img {
        border-radius: 10px;
        width: 50%;
        margin: 0px auto -50px;
      }
    }

    /* .primary-menu {
      display: flex;
      gap: 30px; */

    nav {
      ul {
        display: flex;
        gap: 10px;
      }

      li {
        padding: 0px 10px;
      }

      a {
        text-transform: uppercase;
        font-weight: 600;
        color: var(--text-color);
      }

      a:hover {
        color: var(--secondary-color);
      }
    }

  }

  .phone-bottom-header {
    display: none;
  }
}



/* =========== hero section style ========= */

.banner {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../upload/banner.jpg);
  padding: 200px 0px 50px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: var(--white);
  text-align: center;

  .container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 150px;
  }

  .banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .group-btn {
    display: flex;
    gap: 20px;
  }

  p {
    width: 70%;
  }


}

.down-arrow {
  img {
    cursor: pointer;
    width: 50px;
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
  }

}

@keyframes floating {
  0% {
    transform: translate(0, 0px);
  }

  50% {
    transform: translate(0, 15px);
  }

  100% {
    transform: translate(0, -0px);
  }
}

/* =========== hero section style ========= */

/* ========= about us style ====== */

.about-us {
  padding: 80px 0px;
  background: url(../upload/shap03.png);
  background-repeat: no-repeat;
  background-position: bottom right;

  .container {
    display: flex;
    gap: 30px;
  }

  .about-content {
    display: flex;
    gap: 20px;
    flex-direction: column;
    width: 50%;
  }

  .about-img {
    position: relative;
    width: 50%;
    text-align: end;

    img {
      border-radius: 10px;
      width: 80%;
      box-shadow: 0px 0px 8px 4px #adadad4d;
    }

    .round-logo {
      img {
        width: 100%;
      }
    }

  }
}

.round-logo {
  position: absolute;
  /* top: 0; */
  left: 70px;
  bottom: -83px;

  img {
    width: 100%;
  }
}



.e-con-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.elementor-element-da18a2d {
  position: absolute;
}

.elementor-element-82832f2 {
  animation: rotate 12s linear infinite;
}

@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

path#e-path-82832f2 {
  fill: transparent;
}

.test-svg {
  width: 155px;
  color: #000;
  overflow: visible;
  word-spacing: 15px;
  font-size: 40px;
}

.dmInner a {
  vertical-align: inherit;
  outline: none;
  color: #000000;
  -webkit-font-smoothing: antialiased;
}

.text-slide {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #b7b7b7;
  /* -webkit-font-family: poppins; */
}


.text-slide .big {
  font-size: 100px;
  line-height: normal;
  font-family: "Poppins", sans-serif;
}

.background-img {
  position: relative;
  height: 285px;

  img {
    position: absolute;
    bottom: 0px;
    width: 100%;
  }
}

/* ======= gallery ======== */

.gallery {
  padding: 40px 0 80px;
  text-align: center;
  background: url(../upload/shap05.png);
  background-repeat: no-repeat;
  background-position: top left;

  p {
    width: 100%;
    max-width: 60%;
    margin: 15px auto 0px;
  }

  .album {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 10px;
    margin: 40px 0px;
  }

  .album img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .2s ease-in;
  }

  .gallery-wrap {
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
  }

  .gallery-wrap:hover img {
    transform: scale(1.1);
  }
}

/* < !--==================testimonials=============--> */

.testimonials {

  padding: 100px 0px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../upload/banner.jpg);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  color: var(--white);
  text-align: center;

  .item,
  .owl-carousel {
    transition: all .2s ease-in;
  }

  .testimonial-item {
    margin-top: 60px;
    padding: 40px;
    background: #ffffff2e;
    /* opacity: 0.2; */
    border-radius: 12px;
  }

  .testimonial-name {
    margin-top: 30px;
    display: inline-block;
  }

  .primary-btn {
    margin-top: 25px;
  }

  .google-review {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;

    img {
      width: 120px !important;
    }
  }
}

/* ======== menu ======== */

.menus {
  background: url(../upload/shap01.png);
  background-position: bottom left;
  padding: 80px 0;
  text-align: center;
  background-repeat: no-repeat;

  p {
    width: 100%;
    max-width: 60%;
    margin: 15px auto 0px;
  }

  .menu-items {
    margin-top: 50px;
    display: flex;
    gap: 40px;

    p {
      width: 100%;
      max-width: 100%;

    }

    .menu-item {
      display: flex;
      /* flex-direction: column; */
      gap: 20px;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .item {
      width: 45%;
      text-align: start;
      display: flex;
      justify-content: space-between;
      gap: 30px;
      padding: 20px 0px;
      border-bottom: 1px solid var(--secondary-color);
      border-bottom-style: dashed;
    }

    h4 {
      color: var(--primary-color);
    }

    .item-price {
      font-size: 20px;
      font-weight: 600;
      color: var(--secondary-color);
    }
  }

  .primary-btn {
    margin-top: 50px;
    /* display: inline-block; */
  }
}

/* .background-img {
  padding: 80px 0px;
  background: url(../upload/background01.png);
  background-position: center;
  background-size: cover;
  object-fit: cover;
} */


/* ========== CTA ====== */

.cta {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../upload/banner.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: var(--white);
  padding: 50px 0;
  background-attachment: fixed;

  .container {
    display: flex;
    align-items: center;
  }

  .cta-content {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .primary-btn {
    text-align: end;
    width: 30%;

  }

  .primary-btn a {
    background-color: var(--secondary-color);
  }

  .primary-btn a:hover {
    background-color: var(--primary-color);
  }
}

/* ====== footer ====== */

footer {
  background-color: #222222;
  color: var(--white);
  padding: 50px 0px 0px;

  p,
  a {
    font-size: 14px;
    color: var(--white);
  }

  h4 {
    margin-top: 30px;
  }

  span {
    font-family: "Poppins", sans-serif;
  }

  .main-footer {
    display: flex;
    gap: 30px;
  }

  nav,
  .hours,
  .footer-details {
    margin-top: 30px;
  }

  .col1 {
    width: 30%;

    .logo {
      img {
        width: 150px;
      }
    }
  }

  .col2 {
    width: 15%;
  }

  .col3 {
    width: 30%;

    .hours {
      span {
        margin-right: 20px;
        color: #ffffffbf;
        font-weight: 500;
        letter-spacing: 1px;
      }
    }
  }

  .col4 {
    width: 25%;

    ul {
      display: flex;
      gap: 15px;
      flex-direction: column;

      li a {
        display: flex;
        gap: 10px;
      }
    }
  }

  .copy-right {
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
    margin-top: 50px;
    padding: 6px 0;
    font-size: 14px;

    /* .container {
      flex-direction: column;
      gap: 2px;
    } */
    a {
      font-size: 14px;
    }

    img {
      margin-top: 10px;
      width: 100px;
    }
  }
}

.inner-banner {
  padding: 100px 0px;
  color: #fff;
}

/* ============= About page ========= */

#about-page {
  .inner-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../upload/inner-banner.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
  }
}

/* ============= gallery page ========= */

#gallery-page {
  .inner-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../upload/inner-banner.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
  }

  .gallery {
    .album {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
  }
}

/* ============= Menu page ========= */

#menu-page {
  .inner-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../upload/inner-banner.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
  }

  .menu-row1 {
    padding: 50px 0;
  }

  .menu-row2 {
    padding: 50px 0px;
    background-color: #f1f1f1;
  }

  .menus {
    padding: 0px;
    background-color: #ffffff;
  }
}

/* ============== Contact page ============ */

#contact-page {
  .inner-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../upload/inner-banner.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
  }


  .shop-details {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 70px 0px 50px;

    a {
      color: var(--text-color);
    }
  }

  .shop-details .box {
    text-align: center;
    width: 33.33%;
    padding: 20px;
    box-shadow: 0px 20px 60px 0px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .box a {
    word-break: break-all;
  }

  .shop-details .icon {
    img {
      width: 50px;
    }
  }

  .form-map {
    padding-bottom: 70px;

    .container {
      display: flex;
      justify-content: space-between;
      gap: 40px;
    }

    .map {
      width: 50%;

      iframe {
        width: 100%;
        height: 100%;
      }
    }

    .main-form {
      width: 50%;
      padding: 40px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 1px 1px 20px #cccccc61;
    }

    label {
      display: block;
    }

    form {
      display: flex;
      margin-top: 20px;
      flex-direction: column;
      gap: 10px;
    }

    input {
      border: 1px solid #ccc;
      width: 100%;
      border-radius: 5px;
      padding: 8px;
    }

    textarea {
      border: 1px solid #ccc;
      width: 100%;
      border-radius: 5px;
      padding: 8px;
      resize: none;
    }

    .submit-btn {
      width: 150px;
      padding: 15px 10;
      font-size: 16px;
      background-color: #91060b;
      color: #fff;
      border: none;
    }
  }


}

.footer-social {
  margin-top: 10px;
}

.footer-icon {
  font-size: 20px;
}

.pickup { padding:50px 0px;}
.about-content h3{ font-size:45px; }
.gallery h3{ font-size:45px; }
.testimonials h3{ font-size:45px; }
.menus h3{ font-size:45px; }
.cta h3{ font-size:45px; }
.seo-none{ display:none; }