@import url("https://fonts.googleapis.com/css2?family=Cormorant:wght@300;400;500;600;700&family=Manrope:wght@200;300;400;500;600;700;800&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  --primary-blue: #26b0df;
  --bg-light: #ffffff;
  --hero-height: 1000px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  background-color: var(--bg-light);
}

@media (min-width: 1600px) {
  .custom-container {
    max-width: 1720px;
    margin: 0 auto;
  }
}

#hero-wrapper {
  cursor: pointer;
}

nav#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: none;
  transform: translateY(-100%);
  transition: transform 0.4s ease-out;
}

nav#main-nav.scrolled {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

body.nav-visible nav#main-nav {
  transform: translateY(0);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar .nav-menu {
  display: flex;
  gap: 89px;
}

.navbar .nav-menu a {
  text-decoration: none;
  color: #000000;
  font-size: 18px;
  text-transform: uppercase;
  transition: color 0.3s;
  line-height: 18px;
}

.navbar .nav-menu a:hover {
  color: #479BCE;
  text-decoration-color: #479BCE;
}

.navbar .nav-menu a.active {
  color: #479BCE;
  text-decoration: underline;
  text-decoration-color: #479BCE;
}

.navbar .nav-socials {
  display: flex;
  gap: 27px;
}

/* Hide mobile socials on desktop */
.nav-socials-mobile {
  display: none;
}

/* Hamburger icon */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #479BCE;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

#hero-section {
  position: relative;
  min-height: var(--hero-height);
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

#hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/images/hero-bg.png");
  background-repeat: repeat;
  background-position: center;
  opacity: 0.05;
  z-index: -1;
}

.hero-content .hero-title {
  font-family: "Cormorant", serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 80px;
  margin: 0 0 24px 0;
}

.hero-content .hero-description {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #777777;
  line-height: 21px;
  margin: 0;
  margin-bottom: 40px;
}

#hero-section .hero-content {
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 0.7s, transform 0.7s;
  transition-delay: 0.3s;
  z-index: 10;
}

.hero-buttons a {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s, transform 0.7s;
  transition-delay: 0.5s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 30px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 19px;
}

.hero-buttons .btn-primary {
  background-color: var(--primary-blue);
  color: #fff;
}

.hero-buttons .btn-outline {
  color: var(--primary-blue);
  border: 1.5px solid var(--primary-blue);
  background: transparent;
  margin-left: 10px;
}

.hero-section-right {
  position: relative;
  z-index: 10;
}

#hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  height: 70%;
  background: url(/assets/images/hero-blue-bg.png);
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  z-index: 0;
  opacity: 0;
  transform: scale(0);
  transform-origin: bottom right;
  transition: opacity 1s ease, transform 1s ease;
  transition-delay: 0.5s;
}

.hero-section-right img.food-img {
  width: 100%;
  max-width: 713px;
  opacity: 0;
  transform: scale(0) rotate(-180deg) translate(100px, -100px);
  transform-origin: bottom right;
  transition: opacity 1.2s ease, transform 1.2s ease;
  transition-delay: 0.5s;
  display: block;
  margin: 0 auto;
  z-index: 1;
}

#hero-wrapper:hover .hero-section-right img.food-img {
  opacity: 1;
  transform: scale(1) rotate(0deg) translate(0, 0);
}

#hero-section .leaf {
  position: absolute;
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

#hero-section .leaf:nth-of-type(2) {
  top: -13%;
  left: 2%;
  transition-delay: 0.5s;
  width: 188px;
  transform: translateY(-20px);
}

#hero-section .leaf:nth-of-type(3) {
  left: 0;
  top: 45%;
  width: 56px;
  opacity: 0;
  transform-origin: center;
  transform-style: preserve-3d;
  rotate: -75deg;
}

#hero-wrapper:hover #hero-section .leaf:nth-of-type(3) {
  opacity: 1;
  animation: spinLeaf3D 1s forwards;
}

@keyframes spinLeaf3D {
  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

#hero-wrapper:not(:hover) #hero-section .leaf:nth-of-type(3) {
  opacity: 0;
  transform: rotateY(0deg);
}

#hero-section .leaf:nth-of-type(4) {
  left: 25%;
  transform: translateY(50px);
  transition-delay: 0.2s;
  width: 82px;
  rotate: -30deg;
}

#hero-wrapper:hover #hero-section .leaf {
  opacity: 1;
  transform: translateY(0);
}

#hero-wrapper:hover #hero-section .hero-content,
#hero-wrapper:hover #hero-section .hero-content > div:last-child a[href] {
  opacity: 1;
  transform: translateY(0);
}

#hero-wrapper:hover #hero-section::after {
  opacity: 1;
  transform: scale(1);
}

#mission-section {
  padding-top: 100px;
}

/* LEFT SIDE */
.mission-left {
  background-image: url(/assets/images/mission-blue-bg.png);
  border-radius: 20px;
  padding: 58px 145px;
  padding-right: 0;
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
}

/* BADGE */
.mission-badge {
  display: inline-block;
  background: white;
  color: #00ca1e;
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  padding: 16px 12px;
  border-radius: 6px;
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.mission-wrapper:hover .mission-badge {
  opacity: 1;
  transform: translateX(0);
}

/* TITLE */
.mission-title {
  font-family: "Cormorant", serif;
  font-size: 42px;
  line-height: 44px;
  font-weight: 600;
  color: white;
  margin-top: 16px;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

.mission-wrapper:hover .mission-title {
  opacity: 1;
  transform: translateX(0);
}

/* QUOTE SVG */
.mission-quote-icon {
  flex-shrink: 0;
  width: 72px;
  height: 64px;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.mission-wrapper:hover .mission-quote-icon {
  opacity: 1;
  transform: translateY(0);
}

/* TEXT */
.mission-text {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  color: white;
  max-width: 60%;
  line-height: 34px;
  margin-top: 16px;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.mission-wrapper:hover .mission-text {
  opacity: 1;
  transform: translateY(0);
}

/* FOOD IMAGE - Circular motion from top-right */
.mission-food-img {
  position: absolute;
  right: -61px;
  top: -124px;
  max-width: 45%;
  opacity: 0;
  border-radius: 993px;
  transform: translate(100px, -100px) rotate(180deg) scale(0.3);
  transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.mission-wrapper:hover .mission-food-img {
  opacity: 1;
  transform: translate(0, 0) rotate(0deg) scale(1);
}

/* RIGHT SIDE IMAGE - Scale from center */

.mission-chef-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.mission-wrapper:hover .mission-chef-img {
  opacity: 1;
  transform: scale(1);
}

#offers-section {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

/* BLUE SPLASH */
#offers-section::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 90%;
  background: url("/assets/images/blue-splash.png") no-repeat bottom left /
    contain;

  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.5s ease, transform 0.6s ease;
  pointer-events: none;
}

#offers-section .offer-veg {
  position: absolute;
  left: 45px;
  width: 682px;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.55s ease 0.1s, transform 0.65s ease 0.1s;
}

#offers-section:hover::before {
  opacity: 1;
  transform: translateY(0);
}

#offers-section:hover .offer-veg {
  opacity: 1;
  transform: translateY(0);
}

.offers-wrapper {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 130px 0;
}

/* LEFT SIDE - Image with blue splash background */
.offers-left {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.offers-title {
  font-family: "Cormorant", serif;
  font-size: 40px;
  line-height: 42px;
  font-weight: 600;
  color: #000000;
  margin: 0;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.offers-wrapper:hover .offers-title {
  opacity: 1;
  transform: translateX(0);
}

.offers-description {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #777777;
  line-height: 18px;
  margin: 0;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

.offers-wrapper:hover .offers-description {
  opacity: 1;
  transform: translateX(0);
}

.offers-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(5, auto);
  gap: 20px 24px;
  margin-bottom: 40px;
}

.offers-list-item:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.offers-list-item:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.offers-list-item:nth-child(3) {
  grid-column: 1;
  grid-row: 3;
}

.offers-list-item:nth-child(4) {
  grid-column: 1;
  grid-row: 4;
}

.offers-list-item:nth-child(5) {
  grid-column: 1;
  grid-row: 5;
}

.offers-list-item:nth-child(6) {
  grid-column: 2;
  grid-row: 1;
}

.offers-list-item:nth-child(7) {
  grid-column: 2;
  grid-row: 2;
}

.offers-list-item:nth-child(8) {
  grid-column: 2;
  grid-row: 3;
}

.offers-list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.offers-list-item:nth-child(1) {
  transition-delay: 0.2s;
}

.offers-list-item:nth-child(2) {
  transition-delay: 0.25s;
}

.offers-list-item:nth-child(3) {
  transition-delay: 0.3s;
}

.offers-list-item:nth-child(4) {
  transition-delay: 0.35s;
}

.offers-list-item:nth-child(5) {
  transition-delay: 0.4s;
}

.offers-list-item:nth-child(6) {
  transition-delay: 0.45s;
}

.offers-list-item:nth-child(7) {
  transition-delay: 0.5s;
}

.offers-list-item:nth-child(8) {
  transition-delay: 0.55s;
}

.offers-wrapper:hover .offers-list-item {
  opacity: 1;
  transform: translateY(0);
}

.offers-list-item img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.offers-list-item span {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #000000;
}

.offers-button {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease 0.6s, transform 0.6s ease 0.6s;
}

.offers-wrapper:hover .offers-button {
  opacity: 1;
  transform: translateY(0);
}

.offers-button a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 30px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 19px;
  background-color: var(--primary-blue);
  color: #fff;
}

/* SECTION WRAPPER */
#recipes-section {
  padding: 120px 0;
  position: relative;
}

/* HOVER AREA (no change except hover shift) */
.recipe-hover-area {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* VIDEO WRAPPER */
.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  transform: scale(0.3);
  transition: transform 0.7s ease, opacity 0.7s ease;
}

/* VIDEO IMAGE */
.video-img {
  /* width: 100%; */
  height: 100%;
  object-fit: cover;
}

/* PLAY ICON */
.play-icon {
  position: absolute;
  width: 120px;
  height: 120px;

  transform: scale(0.3);
  opacity: 0;

  transition: transform 0.7s ease 0.1s, opacity 0.7s ease 0.1s;
}

/* BUTTON CONTAINER */
.watch-btn-container {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;

  /* hidden initially */
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.watch-btn-container a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 30px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 19px;
}

.watch-btn-container .btn-outline {
  color: var(--primary-blue);
  border: 1.5px solid var(--primary-blue);
  background: transparent;
}

/* BUTTON APPEAR ANIMATION — FIXED */
#recipes-section:hover .watch-btn-container {
  opacity: 1;
  transform: translateY(0);
}

/* MAIN HOVER: MAKE EVERYTHING APPEAR WHEN SECTION IS HOVERED */
#recipes-section:hover .video-wrapper {
  opacity: 1;
  transform: scale(1);
}

#recipes-section:hover .play-icon {
  opacity: 1;
  transform: scale(1);
}

#more-about-section {
  padding: 80px 0;
}

#more-about-section .healthy-section {
  background-color: var(--primary-blue);
  border-radius: 20px;
  padding: 71px 0;
  position: relative;
  overflow: hidden;
}

/* Left vegetables decoration */
#more-about-section .vegetables-left {
  position: absolute;
  left: 0;
  top: 0;
  width: 350px;
  height: auto;
  z-index: 2;
  opacity: 0;
  transform: translate(-50px, 50px);
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#more-about-section .vegetables-left img {
  width: 100%;
  height: auto;
  display: block;
}

#more-about-section .healthy-section:hover .vegetables-left {
  opacity: 1;
  transform: translate(0, 0);
}

/* Content wrapper */
#more-about-section .content-wrapper {
  position: relative;
  z-index: 3;
  padding-left: 300px;
  padding-right: 430px;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease 0.2s;
}

#more-about-section .healthy-section:hover .content-wrapper {
  opacity: 1;
  transform: translateX(0);
}

#more-about-section .healthy-section h2 {
  font-family: "Cormorant", serif;
  color: #fff;
  font-size: 48px;
  line-height: 50px;
  font-weight: 700;
  line-height: 50px;
  margin: 0;
  margin-bottom: 32px;
}

#more-about-section .btn-learn-more {
  font-family: "Poppins", sans-serif;
  background: white;
  color: #26b0df;
  border: none;
  padding: 16px 32px;
  font-size: 16px;
  line-height: 18px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

#more-about-section .btn-learn-more:hover {
  background: #f8f9fa;
  transform: translateX(5px);
  color: #26b0df;
}

/* Right food plate (half visible) */
#more-about-section .food-plate {
  position: absolute;
  right: -127px;
  top: 180px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--primary-blue);
  z-index: 1;
  opacity: 0;
  transform: translate(50px, -50%);
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s;
}

#more-about-section .healthy-section:hover .food-plate {
  opacity: 1;
  transform: translate(0, -50%);
}

#more-about-section .food-plate-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}

#more-about-section .food-plate-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#featured-recipes-section .text-center {
  text-align: center;
}

#featured-recipes-section .section-title {
  font-family: "Cormorant", serif;
  font-size: 40px;
  line-height: 42px;
  font-weight: 600;
  color: #000;
  margin: 0;
  margin-bottom: 24px;
}

#featured-recipes-section .section-description {
  font-weight: 500;
  font-size: 20px;
  line-height: 22px;
  color: #777777;
  margin: 0;
}

#featured-recipes-section .row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 40px;
}

.recipe-image {
  position: relative;
  height: 379px;
  width: 100%;
  overflow: hidden;
  background: #efefef;
  border-radius: 17.75px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recipe-image img {
  width: 330px;
  height: 330px;
  object-fit: contain;
}

/* Read More Button */
.recipe-image .btn-read-more {
  position: absolute;
  bottom: 17px;
  right: 22px;
  background: #3aa7d8;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 74px;
  font-size: 16px;
  font-weight: 600;
  opacity: 1;
  cursor: pointer;
  z-index: 2;
  line-height: 16px;
}

/* Recipe Tags */
.recipe-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0;
}

.recipe-tag {
  color: var(--primary-blue);
  padding: 9px 18px;
  border-radius: 74px;
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  border: 0.74px solid var(--primary-blue);
}

/* Recipe Title */
.recipe-title {
  font-size: 22px;
  line-height: 22px;
  font-weight: 500;
  color: #1c1c1c;
  margin: 0;
  margin-bottom: 8px;
}

/* Recipe Description */
.recipe-description {
  font-weight: 400;
  color: #777777;
  font-size: 16px;
  line-height: 23.67px;
  margin: 0;
}

/* Initial states (hidden) */
#featured-recipes-section .section-title,
#featured-recipes-section .section-description {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.5s ease;
}

#featured-recipes-section .recipe-image {
  opacity: 0;
  transform: scale(0.85);
  transform-origin: center center;
  transition: all 0.6s ease;
}

#featured-recipes-section .recipe-tags,
#featured-recipes-section .recipe-title,
#featured-recipes-section .recipe-description {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.6s ease;
}

/* Hover effects */
#featured-recipes-section:hover .section-title,
#featured-recipes-section:hover .section-description {
  opacity: 1;
  transform: translateY(0);
}

#featured-recipes-section:hover .recipe-image {
  opacity: 1;
  transform: scale(1);
}

/* bottom content appears together from left */
#featured-recipes-section:hover .recipe-tags,
#featured-recipes-section:hover .recipe-title,
#featured-recipes-section:hover .recipe-description {
  opacity: 1;
  transform: translateX(0);
}

#footer-section {
  background-image: url(/assets/images/footer-bg.png);
  background-color: #26b0df0d;
  padding: 60px 0 24px 0;
  position: relative;
  overflow: hidden;
}

#footer-section .footer-content {
  position: relative;
}

.footer-top {
  padding-bottom: 60px;
}

/* Newsletter Section */
.newsletter-section {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.6s ease 0.1s;
}

#footer-section:hover .newsletter-section {
  opacity: 1;
  transform: translateX(0);
}

.newsletter-section {
  margin: 24px 0;
}

.footer-title {
  font-size: 60px;
  font-weight: 400;
  color: #000;
  line-height: 60px;
  margin: 0;
  margin-bottom: 24px;
  font-family: "Cormorant", serif;
}

.footer-description {
  margin: 0;
  color: #777777;
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
}

/* Subscription Box */
.subscription-box {
  border-radius: 32px;
  padding: 96px 40px;
  background-image: url(/assets/images/mission-blue-bg.png);
  opacity: 1;
  /* always visible */
  transform: none;
}

.subscription-box .input-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
  border-bottom: 1px solid #fff;
  padding-bottom: 12px;
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.6s ease 0.15s;
}

#footer-section:hover .subscription-box .input-group {
  opacity: 1;
  transform: translateX(0);
}

.subscription-box .form-control {
  font-family: "Manrope", sans-serif;
  flex: 1;
  padding: 0;
  background: transparent;
  border: none;
  outline: none;
  color: white;
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
  border-radius: 0;
}

.subscription-box .form-control::placeholder {
  color: rgba(255, 255, 255, 0.95);
}

.subscription-box .form-control:focus {
  border-bottom-color: white;
}

.btn-subscribe {
  background: white;
  color: #26b0df;
  padding: 13px 24px;
  border-radius: 100px;
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  white-space: nowrap;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
}

.btn-subscribe svg {
  width: 24px;
  height: 24px;
}

.footer-bottom {
  padding: 60px 0 40px 0;
  border-top: 1px solid #77777766;
}

.footer-bottom .footer-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.6s ease 0.25s;
}

#footer-section:hover .footer-bottom .footer-left {
  opacity: 1;
  transform: translateX(0);
}

.footer-bottom .footer-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.6s ease 0.3s;
}

#footer-section:hover .footer-bottom .footer-right {
  opacity: 1;
  transform: translateX(0);
}

.footer-logo .logo-img {
  max-width: 150px;
  height: auto;
}

.quick-links-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-heading {
  margin: 0;
  margin-bottom: 20px;
  font-family: "Cormorant", serif;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
}

.footer-links {
  list-style: none;
  padding-left: 60px;
}

.footer-links a {
  font-family: "Manrope", sans-serif;
  color: #000;
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #26b0df;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 27px;
}

/* Copyright */
.copyright {
  font-size: 16px;
  line-height: 16px;
  color: #1f1f1f;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid #77777766;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease 0.4s;
}

#footer-section:hover .copyright {
  opacity: 1;
  transform: translateY(0);
}

#hero-wrapper,
#about-health-nosh,
#recipes,
#brochures {
  position: relative;
}

/* ===========================
   LARGE LAPTOPS (≤ 1400px)
=========================== */

@media (max-width: 1600px) {
  .hero-section-right img.food-img {
    max-width: 520px;
  }
  #hero-section::after {
    height: 60%;
  }
  .hero-content .hero-title {
    font-size: 52px;
    line-height: 60px;
  }
  .line-break {
    display: none;
  }
  .mission-text {
    font-size: 28px;
    max-width: 80%;
    line-height: 32px;
  }
  #offers-section::before {
  width: 75%;
  height: 600px;
}

#offers-section .offer-veg {
  width: 535px;
  left: 0;
}
}
@media (max-width: 1400px) {
  .hero-section-right img.food-img {
    max-width: 500px;
  }
  .hero-content .hero-title {
    font-size: 46px;
    line-height: 52px;
  }

  #hero-section .leaf:nth-of-type(2) {
    width: 120px;
  }
  #hero-section .leaf:nth-of-type(3) {
    left: -30px;
    width: 50px;
  }
  #hero-section .leaf:nth-of-type(4) {
    left: 15%;
    width: 70px;
  }
  .mission-left {
    padding: 48px 80px;
  }
      #offers-section::before {
        height: 550px;
    }
        #offers-section .offer-veg {
        width: 500px;
    }

    .offers-title {
    font-size: 38px;
    line-height: 38px}
    .offers-description {
    font-size: 16px;
    line-height: 16px;}
    .offers-list-item img {
    width: 28px;
    height: 28px;

  }
  .offers-list-item span {
    font-size: 16px;}
  #more-about-section .content-wrapper {
    padding-left: 200px;
    padding-right: 300px;
  }
}

/* ===========================
   LAPTOPS (≤ 1200px)
=========================== */
@media (max-width: 1200px) {

  #hero-section::after {
    height: 45%;
  }
  .hero-section-right img.food-img {
    max-width: 430px;
  }

  .hero-content .hero-title {
    font-size: 38px;
    line-height: 46px;
  }

  .hero-content .hero-description {
    font-size: 17px;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 12px;
  }

  .hero-buttons .btn-outline {
    margin-left: 0;
  }
  .mission-text {
    font-size: 26px;
    line-height: 32px;
  }

  .offers-wrapper {
    padding: 80px 0;
  }
      #offers-section::before {
        height: 480px;
    }
        #offers-section .offer-veg {
        width: 430px;
    }
        .offers-title {
        font-size: 36px;
        line-height: 36px;
    }
        .offers-list-item img {
        width: 26px;
        height: 26px;
    }
        .offers-list-item span {
        font-size: 14px;
    }
  #more-about-section .healthy-section h2 {
    font-size: 32px;
    line-height: 38px;
  }

  #more-about-section .food-plate {
    width: 400px;
    height: 400px;
    right: -100px;
  }
  .footer-title {
    font-size: 42px;
    line-height: 42px;}
    .footer-description {
    line-height: 18px;
    }
    .subscription-box .form-control {
    font-size: 12px;
}
    .subscription-box .input-group {
  
    gap: 10px;
    
    }
    .social-icons {
    gap: 18px;
}
}

/* ===========================
   TABLETS (≤ 992px)
=========================== */
@media (max-width: 992px) {
  .hamburger {
    display: flex;
    z-index: 1001;
  }
    .navbar .nav-menu {
    gap: 12px;
  }
  /* Hide desktop socials */
  .navbar .nav-socials {
    display: none;
  }

  /* Show mobile socials */
  .nav-socials-mobile {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 20px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
  }

  .nav-socials-mobile a {
    transition: transform 0.3s ease;
  }

  .nav-socials-mobile a:hover {
    transform: scale(1.1);
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #479BCE 0%, #3A8BB8 100%);
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, box-shadow 0.3s ease;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 10px 30px rgba(71, 155, 206, 0.3);
    z-index: 1000;
  }

  .nav-menu.active {
    max-height: 600px;
    box-shadow: 0 15px 40px rgba(71, 155, 206, 0.5);
  }

  .navbar .nav-menu a {
    padding: 15px 0;
    color: #FFFFFF;
    font-weight: 500;
    width: 100%;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
  }

  .navbar .nav-menu a::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: #FFFFFF;
    transition: transform 0.3s ease;
  }

  .navbar .nav-menu a:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
  }

  .navbar .nav-menu a:hover::before {
    transform: translateX(-50%) scaleX(1);
  }

  .navbar .nav-menu a.active {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.15);
    text-decoration: none;
  }

  .navbar .nav-menu a.active::before {
    transform: translateX(-50%) scaleX(1);
  }

  /* Add padding to first and last items */
  /* .navbar .nav-menu a:first-child {
    padding-top: 25px;
  } */

  /* Hero Section adjustments */
  #hero-section {
    padding-top: 0;
    min-height: 830px;
  }
  #hero-section .leaf:nth-of-type(2) {
    width: 90px;
  }

  #hero-section .leaf:nth-of-type(3) {
    left: -50px;
  }

  /* Mission Section */

  .mission-food-img {
    right: -30px;
    top: -52px;
    max-width: 70%;

    z-index: -2;
  }

   .mission-left {
    padding: 32px 24px;
  }
  .mission-title {
    font-size: 38px;
    line-height: 40px;}
        .mission-text {
        font-size: 26px;
        line-height: 30px;
    }
        #offers-section .offer-veg {
        width: 330px;
    }

        .offers-title {
        font-size: 32px;
        line-height: 32px;
    }
        .offers-description {
        font-size: 14px;
        line-height: 14px;
    }
        .offers-list-item img {
        width: 24px;
        height: 24px;
    }
    #offers-section::before {
        height: 400px;
    }
  .offers-left img {
    max-width: 400px;
  }

  /* About Section */
  #more-about-section .content-wrapper {
    padding: 0 40px;
    text-align: center;
  }

  #more-about-section .vegetables-left {
    display: none;
  }

  /* #more-about-section .food-plate {
    position: static;
    margin: 40px auto 0;
    transform: none !important;
  } */

  /* Footer */
  
  .footer-top {
    text-align: center;
  }
  .footer-logo {
    text-align: center;
  }
  .footer-links {
    padding-left: 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
  .footer-bottom .footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* ===========================
   SMALL TABLETS / PHONES (≤ 768px)
=========================== */
@media (max-width: 768px) {
  nav#main-nav {
   padding: 10px 0;
}
  .mission-right {
    margin-top: 24px;
  }
  #hero-section{
    min-height: 1050px;
  }
  #offers-section{
    min-height: 1150px;
  }
  #hero-section::after {
    height: 430px;
  }
  .hero-section-right img.food-img {
    max-width: 370px;
  }

  .hero-content {
    margin-bottom: 100px;
  }
  #hero-section .leaf:nth-of-type(3) {
    left: 0;
  }
  .hero-content .hero-title {
    font-size: 38px;
    line-height: 48px;
  }

  .hero-description {
    font-size: 16px;
    line-height: 22px;
  }

  .hero-buttons a {
    padding: 14px 26px;
    font-size: 15px;
  }
  
  .mission-title {
    font-size: 32px;
    line-height: 34px;
  }

  .mission-quote-icon {
    width: 42px;
    height: 42px;}

  .mission-badge {
    font-size: 14px;
    line-height: 14px;
  }

  .mission-text {
    font-size: 22px;
    line-height: 28px;
  }

  .offers-title {
    font-size: 34px;
    line-height: 38px;
  }

  .recipe-image {
    height: 300px;
  }

  .recipe-image img {
    width: 260px;
    height: 260px;
  }
  #offers-section .offer-veg {
    
    top: 585px;}

  #more-about-section .healthy-section h2 {
    font-size: 32px;
  }

     .footer-title {
        font-size: 32px;
        line-height: 32px;
    }
    .footer-description {
    font-size: 14px;
    line-height: 20px;
}

  .subscription-box {
    padding: 60px 24px;
  }
.social-icons {
    display: flex;
    gap: 15px;
}
  .footer-bottom {
    text-align: center;
    gap: 40px;
  }
}

/* ===========================
   MOBILE PHONES (≤ 576px)
=========================== */
@media (max-width: 576px) {
  .hero-content .hero-title {
    font-size: 32px;
    line-height: 42px;
  }

  #hero-section::after {
    width: 85%;
    bottom: -10px;
  }

  #hero-section .leaf:nth-of-type(3) {
    left: 2%;
  }

  .hero-section-right img.food-img {
    max-width: 280px;
  }

  #hero-section .leaf:nth-of-type(4) {
    width: 50px;
  }

  .hero-buttons .btn-outline {
    margin-left: 0;
  }
  #featured-recipes-section .section-description {
    font-size: 17px;
    line-height: 20px;}
 
  #offers-section .offer-veg {
    left: 16px;
    top: 690px;}
  .offers-left img {
    max-width: 280px;
  }

  .offers-button a,
  .watch-btn-container a {
    width: 100%;
    justify-content: center;
  }

  .recipe-title {
    font-size: 20px;
  }

  .recipe-description {
    font-size: 15px;
    line-height: 22px;
  }

  .subscription-box {
    padding: 60px 24px;
  }

  .btn-subscribe {
    width: 100%;
  }

  .copyright {
    font-size: 14px;
  }
}

/* Disable all animations when DevTools is open */
/* body.devtools-active #hero-wrapper nav#main-nav,
body.devtools-active #hero-wrapper #hero-section .hero-content,
body.devtools-active
  #hero-wrapper
  #hero-section
  .hero-content
  > div:last-child
  a[href],
body.devtools-active
  #hero-wrapper
  #hero-section
  .row
  > .col-md-6:last-child
  img:not(.leaf),
body.devtools-active #hero-wrapper #hero-section .leaf,
body.devtools-active #hero-wrapper #hero-section .leaf:nth-of-type(3),
body.devtools-active #hero-wrapper #hero-section::after,
body.devtools-active #mission-section,
body.devtools-active #mission-section .mission-badge,
body.devtools-active #mission-section .mission-title,
body.devtools-active #mission-section .mission-quote-icon,
body.devtools-active #mission-section .mission-text,
body.devtools-active #mission-section .mission-food-img,
body.devtools-active #mission-section .mission-chef-img,
body.devtools-active #offers-section::before,
body.devtools-active #offers-section .offer-veg,
body.devtools-active #offers-section .offers-title,
body.devtools-active #offers-section .offers-description,
body.devtools-active #offers-section .offers-list-item,
body.devtools-active #offers-section .offers-button,
body.devtools-active #recipes-section .recipe-hover-area,
body.devtools-active #recipes-section .video-wrapper,
body.devtools-active #recipes-section .video-img,
body.devtools-active #recipes-section .play-icon,
body.devtools-active #recipes-section .watch-btn,
body.devtools-active #more-about-section .vegetables-left,
body.devtools-active #more-about-section .content-wrapper,
body.devtools-active #more-about-section .food-plate,
body.devtools-active #footer-section .newsletter-section,
body.devtools-active #footer-section .subscription-box .input-group,
body.devtools-active #footer-section .footer-bottom,
body.devtools-active #footer-section .copyright {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

body.devtools-active #mission-section *,
body.devtools-active #offers-section *,
body.devtools-active #recipes-section *,
body.devtools-active #more-about-section *,
body.devtools-active #footer-section * {
  transition: none !important;
  animation: none !important;
  transform: none !important;
  opacity: 1 !important;
} */

#hero-wrapper.in-view #hero-section .hero-content,
#hero-wrapper.in-view #hero-section .hero-content > div:last-child a[href] {
  opacity: 1;
  transform: translateY(0);
}

#hero-wrapper.in-view #hero-section::after {
  opacity: 1;
  transform: scale(1);
}

#hero-wrapper.in-view .hero-section-right img.food-img {
  opacity: 1;
  transform: scale(1) rotate(0deg) translate(0, 0);
}

#hero-wrapper.in-view #hero-section .leaf {
  opacity: 1;
  transform: translateY(0);
}

#hero-wrapper.in-view #hero-section .leaf:nth-of-type(3) {
  opacity: 1;
  animation: spinLeaf3D 1s forwards;
}

/* MISSION SECTION */
.mission-wrapper.in-view .mission-badge,
#mission-section.in-view .mission-badge {
  opacity: 1;
  transform: translateX(0);
}

.mission-wrapper.in-view .mission-title,
#mission-section.in-view .mission-title {
  opacity: 1;
  transform: translateX(0);
}

.mission-wrapper.in-view .mission-quote-icon,
#mission-section.in-view .mission-quote-icon {
  opacity: 1;
  transform: translateY(0);
}

.mission-wrapper.in-view .mission-text,
#mission-section.in-view .mission-text {
  opacity: 1;
  transform: translateY(0);
}

.mission-wrapper.in-view .mission-food-img,
#mission-section.in-view .mission-food-img {
  opacity: 1;
  transform: translate(0, 0) rotate(0deg) scale(1);
}

.mission-wrapper.in-view .mission-chef-img,
#mission-section.in-view .mission-chef-img {
  opacity: 1;
  transform: scale(1);
}

/* OFFERS SECTION */
#offers-section.in-view::before {
  opacity: 1;
  transform: translateY(0);
}

#offers-section.in-view .offer-veg {
  opacity: 1;
  transform: translateY(0);
}

.offers-wrapper.in-view .offers-title,
#offers-section.in-view .offers-title {
  opacity: 1;
  transform: translateX(0);
}

.offers-wrapper.in-view .offers-description,
#offers-section.in-view .offers-description {
  opacity: 1;
  transform: translateX(0);
}

.offers-wrapper.in-view .offers-list-item,
#offers-section.in-view .offers-list-item {
  opacity: 1;
  transform: translateY(0);
}

.offers-wrapper.in-view .offers-button,
#offers-section.in-view .offers-button {
  opacity: 1;
  transform: translateY(0);
}

/* RECIPES SECTION */
#recipes-section.in-view .video-wrapper {
  opacity: 1;
  transform: scale(1);
}

#recipes-section.in-view .play-icon {
  opacity: 1;
  transform: scale(1);
}

#recipes-section.in-view .watch-btn-container {
  opacity: 1;
  transform: translateY(0);
}

/* MORE ABOUT SECTION */
#more-about-section.in-view .vegetables-left,
.healthy-section.in-view .vegetables-left {
  opacity: 1;
  transform: translate(0, 0);
}

#more-about-section.in-view .content-wrapper,
.healthy-section.in-view .content-wrapper {
  opacity: 1;
  transform: translateX(0);
}

#more-about-section.in-view .food-plate,
.healthy-section.in-view .food-plate {
  opacity: 1;
  transform: translate(0, -50%);
}

/* FEATURED RECIPES SECTION */
#featured-recipes-section.in-view .section-title,
#featured-recipes-section.in-view .section-description {
  opacity: 1;
  transform: translateY(0);
}

#featured-recipes-section.in-view .recipe-image {
  opacity: 1;
  transform: scale(1);
}

#featured-recipes-section.in-view .recipe-tags,
#featured-recipes-section.in-view .recipe-title,
#featured-recipes-section.in-view .recipe-description {
  opacity: 1;
  transform: translateX(0);
}

/* FOOTER SECTION */
#footer-section.in-view .newsletter-section {
  opacity: 1;
  transform: translateX(0);
}

#footer-section.in-view .subscription-box .input-group {
  opacity: 1;
  transform: translateX(0);
}

#footer-section.in-view .footer-bottom .footer-left {
  opacity: 1;
  transform: translateX(0);
}

#footer-section.in-view .footer-bottom .footer-right {
  opacity: 1;
  transform: translateX(0);
}

#footer-section.in-view .copyright {
  opacity: 1;
  transform: translateY(0);
}

/* =======================================
   KEEP HOVER EFFECTS FOR INTERACTIVITY
   (Optional - for buttons, links, etc.)
======================================= */

/* Keep these hover effects for interactive elements */
.hero-buttons a:hover,
.offers-button a:hover,
.watch-btn-container a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(38, 176, 223, 0.3);
}

#more-about-section .btn-learn-more:hover {
  background: #f8f9fa;
  transform: translateX(5px);
}

.navbar .nav-menu a:hover {
  color: #479BCE;
}

/* Recipe cards hover effect */
.recipe-image:hover .btn-read-more {
  background: #2d8bb5;
}