@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&family=Teachers:ital,wght@0,400..800;1,400..800&display=swap');

@font-face {
  font-family: Quesha;
  src: url('../fonts/Quesha.ttf');
}

:root {
  --colorPrimary: #394E7A;
  --colorPrimaryBlue: #232E4C;
  --colorPrimaryDark: #040430;
  --colorPrimaryTrans: rgba(23, 67, 150, 0.2);

  --colorRed: #802E00;
  --colorGolden: #E6C053;
  --colorPink: #DB9A9E;
  --colorGreyLight: #ADA2A3;
  --colorGrey: #666666;
  --colorGreyDarker: #353432;
  --colorCream: #FBF3E9;
  --colorWhite: #ffffff;
  --colorBlack: #000000;

  --gradientWhite: linear-gradient(to right, #FFFFFF80, #F7E6FF80);
  --gradientGray: linear-gradient(to right, #CED9F1, #E9EEF8);
  --gradientFormBG: linear-gradient(135deg, #E8CFF4, #EFF1F1);
  --gradientCoachesBG: linear-gradient(90deg, #5C7ECC, #5c7ecc20);

  --gradientPrimary: linear-gradient(131deg, #b73646 0%, #272a5b 83.9%);
  --gradientSecondry: linear-gradient(131deg, #272A5B 0%, #174396 83.9%);

  --primaryFont: "Tajawal", sans-serif;
  --secondryFont: "Teachers", sans-serif;
  --queshaFont: "Quesha", sans-serif;
}

/* Css Reset */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  color-scheme: dark light;
  hanging-punctuation: first last;
}

body {
  font-family: var(--primaryFont);
  background-color: #f1f1f1;
  min-height: 100svh;
  width: 100%;
  overflow-x: hidden;
}

img,
picture,
svg,
video {
  display: block;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

p {
  max-width: 75ch;
  text-wrap: pretty;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

@media (prefers-reduced-motion: no-preference) {
  :has(:target) {
    scroll-behavior: smooth;
    scroll-padding-top: 3rem;
  }
}

::-webkit-scrollbar {
  width: 0.5em;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
  background-color: var(--colorGreyDarker);
  border-radius: 100vw;
  outline: 1px solid var(--colorGreyLight);
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* Reset Ends here  */


/* Header */
.wrapper {
  width: 100%;
  min-height: 100vh;
  overflow-x: clip;
  background: #FEF6F7;
}

/* Header */
.custom-header {
  background: transparent !important;
  padding: 2rem 8rem;
}

.custom-header .nav-link {
  color: #939393;
  font-size: 18px;
  font-weight: 600;
}

.custom-header .nav-link.active,
.nav-link:hover {
  color: var(--colorGolden);
}

.custom-header .navbar-nav {
  gap: 2rem;
}

/* Header ends */

.landing-section {
  position: relative;
  width: 100%;
  min-height: 170vh;
  background: url('../images/landing-bg.svg');
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
}

.landing-inner {
  position: relative;
  width: 100%;
  min-height: 170vh;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0));
}

.story-box {
  position: absolute;
  width: min(400px, 100%);
  min-height: 200px;
  top: 20%;
  right: 10%;
}

.golden-para {
  font-size: 2rem;
  font-weight: 600;
  color: var(--colorGolden);
}

.story-title {
  margin-top: 3rem;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--colorGolden);
}

.story-para {
  position: relative;
  font-size: 1.25rem;
  color: var(--colorWhite);
}

.story-img {
  width: 100px;
  margin-left: -116px;
  margin-top: 0;
}

.common-section {
  position: relative;
  width: 100%;
  min-height: 50vh;
  padding: 8rem 13rem;
  background: #FEF6F7;
}

.common-section.rp-none {
  padding-inline: 0;
}

/* Bakes Section */
.section-title {
  font-family: var(--queshaFont);
  font-size: 8rem;
  color: var(--colorPink);
  text-transform: uppercase;
  text-align: center;
}

.bakes-section {
  width: 100%;
  margin-top: 2rem;
  overflow-x: clip;
}

.common-section.rp-none .bakes-section {
  padding-left: 12rem;
}

.bakes-wrapper {
  width: 110%;
  min-height: 300px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.5rem;
}

.slick-slider .slick-track {
  display: flex !important;
}

.slick-slide {
  height: inherit !important;
}

.bakes-wrapper .slick-prev,
.bakes-wrapper .slick-next {
  top: 106%;
  width: 40px;
  height: 40px;
  border-radius: 100vw;
  border: 2px solid var(--colorPink);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 2px;
}

.bakes-wrapper .slick-prev {
  left: 74%;
}

.bakes-wrapper .slick-next {
  right: 20%;
}

.bakes-wrapper .slick-prev:before,
.bakes-wrapper .slick-next:before {
  font-size: 16px;
  font-weight: 700;
  line-height: .5;
  opacity: 1;
  color: var(--colorPink);
}

.bakes-item {
  margin: 0.75em;
  height: 100%;
}

.bakes-inner {
  width: 100%;
}

.bakes-img-wrapper {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.bakes-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bakes-item-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--colorGrey);
  text-wrap: pretty;
}

.bakes-btn-group {
  width: 100%;
  min-height: 30px;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: .5rem;
}

.cust-btn {
  font-size: 1rem;
  font-weight: 700;
  padding: 0.625rem 1.5rem;
  border-radius: 100vw;
  color: var(--colorPink);
  background: var(--colorWhite);
  border: 1px solid var(--colorPink);
  transition: 300ms all ease-in-out;
}

.cust-btn:hover {
  color: var(--colorWhite);
  background: var(--colorPink);
}

.cust-btn.btn-fill {
  color: var(--colorWhite);
  background: var(--colorPink);
}

.cust-btn.btn-fill:hover {
  color: var(--colorPink);
  background: var(--colorWhite);
}

/* Alergy Section */
.alergy-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--colorGreyLight);
  text-align: center;
}

.alergy-title span {
  color: var(--colorPink);
}

.alergy-wrapper {
  width: 100%;
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 5rem;
  margin-top: 4rem;
}

.alergy-item {
  width: 130px;
  padding-inline: 10px;
}

.alergy-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 100vh;
  background-color: #E8E2E3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.alergy-img {
  max-height: 60px;
  max-width: 60%;
}

.alergy-item-title {
  color: var(--colorPink);
  text-align: center;
}

/* Fssai Section */
.fssai-section {
  width: 100%;
  background: var(--colorWhite);
  padding: 1.5rem;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.fssai-section img {
  width: 80px;
}

.fssai-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--colorPink);
  margin-bottom: 0;
}

/* Ingredient Section */
.ingred-title {
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
  color: var(--colorPink);
}

.ingred-img-wrap {
  position: relative;
  width: 100%;
}

.ingred-img {
  width: 100%;
}


/* About Section */
.about-section {
  width: 100%;
  aspect-ratio: 1440 / 510;
  margin-block: 8rem;
  background: url('../images/abour-bg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.about-para {
  width: 30%;
  font-weight: 600;
  font-size: 2rem;
  color: var(--colorGolden);
  text-align: center;
}

/* Best Seller */
.bakes-wrapper.bs {
  width: 100%;
}

.bakes-wrapper.bs .slick-prev,
.bakes-wrapper.bs .slick-next {
  display: none !important;
}

.bs-item {
  margin: 1rem;
  height: 100%;
}

.bakes-item-title.bs {
  text-wrap: unset;
  font-size: 1.625rem;
}

/* Footer section */
.footer-section {
  position: relative;
  width: 100%;
  min-height: 100px;
  background: var(--colorCream);
  padding: 4rem 8rem;
  margin-top: 16rem;
  border-bottom: 1px solid var(--colorPink);
}

.footer-section.pb-100 {
  padding-bottom: 6rem;
}

.testomonials-sec {
  position: relative;
  width: 100%;
  min-height: 300px;
  margin-top: -16rem;
  background: var(--colorPink);
  transform: rotate(0.5deg);
}

.testo-inner {
  width: calc(100% - 6px);
  min-height: 300px;
  margin-inline: auto;
  background: #F6F3EE;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding: 4.5rem;
  transform: rotate(-0.5deg);
}

.testo-left {
  width: 30%;
}

.testo-right {
  width: calc(100% - 30% - 1.25rem);
  min-height: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.testo-item {
  margin: 1rem;
  height: 100%;
}

.testo-header {
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--colorRed);
  padding-right: 2rem;
}


.testo-para {
  font-size: 1.5rem;
}

.testo-footer {
  width: 100%;
  min-height: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rating-list {
  display: inline-flex;
  list-style: none;
  padding-inline-start: 0;
}

.footer-bottom {
  width: 100%;
  min-height: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-right>a {
  display: block;
  font-weight: 500;
  color: var(--colorBlack);
  text-align: right;
}

.copyright-text {
  font-size: 1.125rem;
}

/* Media Section */
.media-section {
  width: 100%;
  min-height: 10rem;
  padding: 5rem 13rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--colorCream);
}

.media-ul {
  display: inline-flex;
  list-style: none;
  padding-inline-start: 0;
  gap: 4rem;
}

.media-link {
  color: var(--colorGreyDarker)
}

/* Whatsapp btn */
.whatsapp-btn {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
}

.whatsapp-btn img {
  width: 150px;
}

.call-btn {
    padding: .5rem;
    padding-right: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0;
    border-radius: 100vw;
    display: flex;
    align-items: center;
    gap: .25rem;
    background: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.call-btn i {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #4E71FF;
    color: #FFFFFF;
    border-radius: 100vw;
}


/* Responsive Code */

@media(max-width: 1450px) {
  .landing-section {
    min-height: 100vh;
  }

  .landing-inner {
    min-height: 170vh;
  }

  .story-box {
    max-width: 360px;
    right: 5%;
  }

  .story-para {
    font-size: 1.25rem;
  }

  .common-section {
    padding: 8rem 10rem;
  }

  .bakes-wrapper .slick-prev {
    left: 73%;
  }

  .alergy-title {
    font-size: 2.75rem;
  }

  .ingred-title {
    font-size: 3.25rem;
  }

  .ingred-desc {
    font-size: 1.5rem;
  }

  .about-para {
    width: 40%;
  }

  .footer-section {
    padding: 4rem 6rem;
  }
}

@media(max-width: 1380px) {
  .custom-header {
    padding: 2rem 6rem;
  }

  .story-box {
    top: 20%;
  }

  .story-img {
    width: 80px;
    margin-left: -96px;
  }

  .common-section {
    padding: 8rem 8rem;
  }

  .testo-header {
    font-size: 4rem;
  }

  .testo-para {
    font-size: 1.25rem;
  }
}

@media(max-width: 1300px) {
  .custom-header {
    padding: 2rem 4rem;
  }

  .common-section.rp-none .bakes-section {
    padding-left: 8rem;
  }

  .bakes-wrapper .slick-prev {
    left: 73%;
  }

  .alergy-title {
    font-size: 2.5rem;
  }

  .testo-header {
    font-size: 3.5rem;
  }
}

@media(max-width: 1100px) {
  .custom-header {
    padding: 2rem 4rem;
  }

  .navbar-toggler-icon {
    background-image: url('../images/nav-toggle.svg');
  }

  .navbar-toggler {
    border-color: var(--colorGolden);
  }

  .custom-header .navbar-nav {
    gap: 1rem;
    text-align: center;
    margin-top: 1rem;
  }

  .custom-header .navbar-nav {
    position: relative;
    background: black;
    gap: 0;
    text-align: center;
    z-index: 1000;
  }

  .landing-inner {
    min-height: 100vh;
  }

  /* .story-box {
    top: 42%;
    min-height: 100px;
  } */

  .common-section {
    min-height: 400px;
    padding: 8rem 4rem;
  }

  .common-section.rp-none .bakes-section {
    padding-left: 6rem;
  }

  .bakes-wrapper {
    width: 120%;
  }

  .bakes-wrapper .slick-prev {
    left: 68%;
  }

  .bakes-wrapper .slick-next {
    right: 23%;
  }

  .alergy-wrapper {
    gap: 3rem;
  }

  .alergy-title {
    font-size: 2.5rem;
  }

  .about-para {
    font-size: 1.25rem;
  }

  .footer-section {
    padding-inline: 4rem;
  }

  .testo-inner {
    padding: 3rem;
  }

  .testo-header {
    font-size: 3rem;
  }
}

@media(max-width: 800px) {
  .common-section.rp-none .bakes-section {
    padding-left: 3rem;
  }

  .bakes-wrapper .slick-prev {
    left: 67%;
  }

  .alergy-wrapper {
    gap: 2rem;
  }

  .alergy-item {
    width: 120px;
  }

  .ingredients-section {
    width: 100%;
    gap: 2rem;
  }

  .ingred-title {
    font-size: 2.5rem;
  }

  .ingred-desc {
    font-size: 1.25rem;
  }

  .section-title {
    font-size: 6rem;
  }

  .about-para {
    font-size: 1rem;
  }

  .bakes-item-title.bs {
    font-size: 1.25rem;
  }

  .testo-left,
  .testo-right {
    width: 100%;
  }

  .testo-star-img {
    width: 16px;
  }
}

@media(max-width: 600px) {
  .custom-header {
    padding: 2rem 0;
  }
  .custom-header .container-fluid{
    padding-inline: 0;
  }
  
  .navbar-brand {
    margin-left: 1rem;
  }
  
  .navbar-toggler {
    margin-right: 1rem;
    }
    .custom-header .navbar-nav {
        padding-block: 2rem;
    }

  .header-logo {
    width: 180px;
  }

  .landing-inner {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 60%, rgba(0, 0, 0, 0));
  }

  .whatsapp-btn {
    right: 0;
    bottom: 0;
  }

  .story-box {
    max-width: 90%;
    height: 70%;
    right: unset;
    inset: 0;
    top: 15%;
    margin-inline: auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .story-img {
    display: none;
  }

  .golden-para {
    font-size: 1.5rem;
  }

  .story-para {
    font-size: 1rem;
  }

  .common-section {
    padding: 5rem 1rem;
  }

  .common-section.rp-none .bakes-section {
    padding-left: 1rem;
  }

  .bakes-wrapper {
    width: 180%;
  }

  .bakes-item {
    margin-inline-start: 0;
  }

  .bakes-wrapper .slick-prev,
  .bakes-wrapper .slick-next {
    top: 104%;
    width: 32px;
    height: 32px;
  }

  .bakes-wrapper .slick-prev {
    left: 44%;
  }

  .bakes-wrapper .slick-next {
    right: unset;
    left: 50%;
  }

  .bakes-item {
    margin-inline-start: 0.5;
  }

  .bakes-btn-group {
    padding-left: .5rem;
    justify-content: flex-start;
    gap: .5rem;
    margin-top: .25rem;
  }

  .cust-btn {
    font-size: 1rem;
  }

  .alergy-title {
    font-size: 1.675rem;
  }

  .alergy-wrapper {
    gap: 1rem;
  }

  .alergy-item {
    width: 25%;
    max-width: 25%;
    padding-inline: 4px;
  }

  .alergy-img {
    max-height: 40px;
  }

  .alergy-item-title {
    font-size: 1rem;
  }

  .fssai-section img {
    width: 70px;
  }
  
  .fssai-section h3 {
    font-size: 1.375rem;
  }

  .ingred-left {
    width: 80%;
  }

  .ingred-right {
    width: 100%;
    text-align: center;
  }

  .ingred-title {
    font-size: 2.5rem;
  }

  .about-section {
    min-height: 200px;
    margin-block: 4rem;
    gap: 0;
  }

  .about-title {
    font-size: 2.5rem;
  }

  .about-para {
    width: 50%;
    font-size: .75rem;
  }

  .section-title {
    font-size: 4rem;
  }

  .footer-section {
    padding-inline: 1rem;
    padding-bottom: 3rem;
  }

  .testo-header {
    font-size: 2.5rem;
    text-align: center;
  }

  .testo-item {
    margin-inline: 0;
  }

  .media-section {
    min-height: 5rem;
    padding: 3rem 1rem;
  }

  .media-ul {
    gap: 3rem;
  }
  
  .footer-bottom {
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 1.5rem;
  }
  
  .whatsapp-btn {
      bottom: 4px;
      right: 4px;
    }
    .call-btn span {
        margin-top: 4px;
    }
}