@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  font-size: 16px;
  --bs-primary: #561651;
  --bs-secondary: #3b2301;
  --bs-body-font-family: "Raleway", sans-serif;
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.4;
  --bs-body-color: #434343;
  --bs-body-bg: #fff;
  --menu-speed: 0.75s;
  --overlay-color: #ffffff;
}
body {
  overflow-x: hidden;
}
html {
  scroll-behavior: initial !important;
}

img {
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0;
}
h1:not(:last-child),
h2:not(:last-child),
h3:not(:last-child),
h4:not(:last-child),
h5:not(:last-child),
h6:not(:last-child) {
  margin-bottom: 0.5rem;
}
p {
  letter-spacing: 1px;
}

a {
  color: #b4882d;
  cursor: pointer;
  text-decoration: none;
}
a:hover {
  color: #000000;
}
b,
strong {
  font-weight: 600;
}

.text-primary {
  color: var(--bs-primary) !important;
}
.text-secondary {
  color: var(--bs-secondary) !important;
}

.bg-primary {
  background-color: var(--bs-primary) !important;
}
.bg-secondary {
  background-color: var(--bs-secondary) !important;
}

.btn {
  --bs-btn-padding-x: 1.5rem;
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-font-size: 0.875rem;
  --bs-btn-font-weight: 600;
  --bs-btn-line-height: 1.5;
  --bs-btn-border-radius: 30px;
  --bs-btn-box-shadow: none;
  letter-spacing: 1px;
  transition: all 0.5s;
  display: inline-flex;
}
.btn:active,
.btn:focus {
  outline: none;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
  outline: 0;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--bs-secondary);
  --bs-btn-hover-border-color: var(--bs-secondary);
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--bs-secondary);
  --bs-btn-active-border-color: var(--bs-secondary);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #6c757d;
  --bs-btn-disabled-border-color: #6c757d;
}
.btn-secondary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--bs-secondary);
  --bs-btn-border-color: var(--bs-secondary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--bs-primary);
  --bs-btn-hover-border-color: var(--bs-primary);
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--bs-primary);
  --bs-btn-active-border-color: var(--bs-primary);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #a95b5f;
  --bs-btn-disabled-border-color: #a95b5f;
}

.main-container {
  min-height: 100%;
  position: relative;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}

.header {
  background-color: rgba(255, 253, 243, 1);
  padding: 20px 30px;
  z-index: 2;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.header .header-logo img {
  width: 130px;
}
.header .header-right img {
  max-width: 110px;
}
.banner-content {
  position: absolute;
  top: 80px;
  left: 30px;
  max-width: 170px;
}
.banner-content p {
  color: rgba(255, 237, 121, 1);
}
.banner-content p strong {
  font-weight: 900;
}
.banner-content h3 {
  color: rgba(255, 237, 121, 1);
  font-weight: 900;
  font-size: 1.625rem;
  letter-spacing: 1px;
}

.section-body {
  padding: 30px 40px;
}
.section-body .section-title {
  color: rgba(0, 0, 0, 1);
  font-size: 1.25rem;
  letter-spacing: 1px;
}
.section-body .section-subtitle {
  color: rgba(59, 35, 1, 1);
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: 1px;
}
.recipes-card {
  /* display: block;
  border-radius: 10px;
  overflow: hidden; */
  /* box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3); */
  /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

.recipes-card .recipes-card-img {
  background: transparent !important;
}
.recipes-card .recipes-card-img img {
  border-radius: 100px 100px 0 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}
.recipes-card .recipes-card-body {
  padding: 5px 15px;
  background-color: rgba(255, 253, 243, 1);
  border-radius: 0 0 10px 10px;
  color: rgba(59, 35, 1, 1);
  font-size: 1rem;
  font-weight: 500;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.view-card-top-content {
  width: 100%;
  position: absolute;
  top: 20px;
  left: 0;
  padding: 0 40px;
}
.view-card-top-content p {
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.view-card-top-content h3 {
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: 1px;
}
.view-card-body {
  padding: 30px 40px;
  background-color: #f9f7f6;
}
.view-card-body-content h5 {
  color: rgba(0, 0, 0, 1);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
}
.view-card-body-content .list-content {
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.875rem;
  font-weight: 500;
}
.view-card-top:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: url(../images/play-icon.svg) no-repeat 50%;
  background-size: 80px;
  pointer-events: none;
}

.view-card-top.video-playing:after,
.view-card-top.video-playing .view-card-top-content {
  display: none;
}
.clickable-video {
  display: block;
  width: 100%;
  height: 746px;
  max-width: 100%;
  object-fit: cover;
  background-color: black;
}
.footer {
  height: 70px;
  background-color: rgba(59, 35, 1, 1);
}
.footer .insta-icon {
  color: white;
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer .insta-icon:hover {
  color: #f39c12; /* Optional highlight color */
}

small {
  font-size: 0.75rem;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-decoration: none;
  color: #ffffff;
  line-height: 36px;
  text-align: center;
  background: rgba(59, 35, 1, 1);
  z-index: 1;
  display: none;
  cursor: pointer;
}
.back-to-top img {
  width: 25px;
  filter: brightness(0) invert(1);
}

@media (max-width: 419px) {
  .header {
    padding: 10px 20px;
  }
  .header .header-logo img {
    width: 100px;
    padding-bottom: 6px;
  }
  .header .header-right img {
    max-width: 80px;
  }
  .banner-content {
    top: 50px;
    left: 20px;
  }
  .section-body {
    padding: 30px 20px;
  }
  .view-card-top-content {
    padding: 0 20px;
  }
  .view-card-body {
    padding: 30px 20px;
  }
}
