:root {
--primary-color-light: #c9d9c0;
--primary-color: #214130;
--primary-color-lighter: #f3fced;
--primary-color-dark: #214130;
--accent-color: #f5b250;
orange: rgb(255, 163, 117);

/* --accent-color: #fff9ec; */
--accent-color-light: rgb(255, 197, 110);
--accent-color-dark: #c4653a;
--accent-color-lighter: #fae8d5;

    --grey-color-1: #2c2c2c;
    --grey-color-2: rgb(100, 99, 99);
    --grey-color-3: rgb(151, 150, 150);
    --grey-color-4: rgb(194, 194, 194);
    --grey-color-5: rgb(212 210 210);
    --grey-color-6: rgb(239, 239, 239);
    --grey-color-7: rgb(255, 255, 255);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Quicksand", sans-serif;
  background-color: var(--grey-color-7);
  overflow-x: hidden;
  line-height: 1.6;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 ;
  padding: 0;
  font-weight: 700 ;
}
.container-fluid{
  position: relative;
  /* overflow-y: i; */
  /* padding: 0; */
}
.main{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  
}
.main .column{
    position: relative;
}
.owl-nav {
  display: none;
}
p {
  margin-bottom: 0 !important;
}
.pt-5 {
  padding-top: 5rem !important;
}
/* *************************************************************Navigation */
.navbar {
  background: white;
  padding: 1rem;
  position: fixed;
    width: 100%;
}
.navbar-brand {
  font-weight: 700;
  align-items: center;
  display: flex;
  font-size: 1.2rem;
  color: var(--accent-color-dark);

}
  .navbar-brand img{
    height:3rem;
  }
.navbar-nav .nav-link {
  font-weight: 800;
  margin: 0 10px;
  color: var(--primary-color);
  transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
  color: var(--accent-color);
}
/******************************************************** Hero Section */
.background-image {
  background-image: url("../img/hero.webp") no-repeat center center/cover; 
  /* background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat;  */
  height: 100vh; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-color-7);
}
.hero {
  position: relative;
  margin-top: 70px;
  /* width: 100vw;
  left: -12px; */
  height: 75vh;
  background: url("../img/hero.webp") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--primary-color-lighter);
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem 1rem;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
}
.btn-primary {
  background: var(--primary-color);
  border: none;
  border-radius: 50rem;
  padding: 12px 30px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
/************************************************************headings: Section Titles */
section h2 {
  font-size: calc(1.75rem + 0.5vw);
  font-weight: 700;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 40px;
  color: var(--grey-color-1);
}
/******************************************************************* Features Section */
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  padding: 1rem;
}
.card {
  background-color: var(--grey-color-7);
  border: none;
  border-radius: 1rem;
  width: 320px;
  justify-content: space-between;
  padding: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.063);
}

/* Global card image style for sections like Recipes */
.card img {
  border-radius: 12px;
  margin-bottom: 15px;
  width: 100%;
  height: auto;
}

#features{
    /* margin: 2rem 0 0 0; */
    position: relative;
    padding: 5rem 0 0rem 0;
    background-color: var(--primary-color-lighter);
   
}
#features .card img {
  width: auto;
  max-width: 60%; /* Adjust this value to change image size */
  height: auto;
  margin: 1rem auto 15px;
  display: block;
}
.card .feature-content {
    padding: 1rem;
    border-radius: 0 0 1rem 1rem ;
    border-top: 1px solid var(--accent-color-lighter);
    background-color: #fffaf5;
}
.card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--grey-color-1);
  text-align: center;
}
.card p {
    font-size: .9rem;
  color: var(--grey-color-2);
  text-align: center;
}

/* **************************************************************why It Works Section */
#made-for-you {
  background-color: var(--grey-color-7);
  padding: 5rem 1rem 4rem 1rem;
}
.why-step {
  text-align: center;
  padding: 20px;
}
.why-step img {
  max-width: 150px;
  margin-bottom: 15px;
  border-radius: 10px;
}
.why-step h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--bs-dark);
}


/************************************************************** FAQ Section */
#faq {
  /* background-color: var(--primary-color-lighter); */
  position: relative;
  padding: 3rem 0rem 7rem 0rem;
}


.accordion-item {
  border: none;
  border-bottom: 1px solid var(--grey-color-5);
  background-color: var(--grey-color-7);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  transition: transform 0.2s ease;
}

.accordion-item:hover {
  transform: translateY(-2px);
}

.accordion-button {
  background-color: var(--grey-color-7);
  color: var(--grey-color-1);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 1rem 1.25rem;
  border: none;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color-dark);
  background-color: var(--primary-color-light);
  font-weight: 600;
  border-left: 4px solid var(--accent-color);
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  font-size: 0.95rem;
  color: var(--grey-color-2);
  padding: 1rem 1.25rem;
  line-height: 1.5;
  background-color: var(--grey-color-7);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  #faq h2 {
    font-size: 1.6rem;
  }
  .accordion-button {
    font-size: 1rem;
  }
}

/****************************************************************** Wave SVGs between sections */
.wave{
    display:block;
    width:100%;
    height:80px;
    position:absolute;

    left: 0;right:0;
}
.wave-made-for-you { 
    bottom:-5px;
}
.wave-feature{
    bottom: -80px;

}
.wave-ss { 
    bottom:-5px;
}
.wave-download{
    bottom:-5px;
}
.wave-nav{
    top: 80px;
    height: 40px;
    z-index: 99;
}
svg .path { shape-rendering: geometricPrecision; }

/****************************************************************** App Screenshots Section */
#screenshots {
    position: relative;
    padding: 5rem 1rem;
    background-color:var(--accent-color-lighter);
    background: #ffded8;
    background: linear-gradient(180deg,#faebe4 0%, #fff5f0 16%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 1) 100%);
}
#screenshots .container-fluid{
    margin:auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    
}
#screenshots .container-fluid .row .ss{
    /* margin: 2rem .5rem; */
     position: relative;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 500"><path d="M438.5,312Q409,374,356,413.5Q303,453,243,453.5Q183,454,124.5,418Q66,382,56.5,313Q47,244,62.5,178.5Q78,113,135,81Q192,49,246,60.5Q300,72,349,106.5Q398,141,434.5,195.5Q471,250,438.5,312Z" fill="%23ffd9d9"/></svg>');
    background-size: cover;       /* Cover whole div */
    background-position: center;  /* Center the SVG */
    background-repeat: no-repeat; /* Don’t repeat */
    border-radius: 20px; 
    padding: 2rem .5rem;
}
#screenshots .container-fluid .row .ss h3{
    font-size: 1rem;
    font-weight: 100 !important;
    /* color: #e3c4b5; */
    color: deeppink;
    /* original svg bg: #FF6B6B */
    color: #ffd9d9;
    color: rgb(249, 99, 99);
    font-family: cursive;
    padding: 0 0 2rem 0;
    text-align: left;
}

/* #screenshots .container-fluid .row .ss img {
  border-radius: 12px;
  width: 100%;
  height: 400px;
  object-fit: contain;
} */
/*************************************************** Download Section */
#download{
    background-color: var(--accent-color);
    text-align: center;
    padding: 2rem;
    position: relative;
}
.store-image {
  border-radius: 50rem;
  width: 50%;
  transition: transform 0.3s ease;
}
.store-image:hover {
  transform: scale(1.05);
}
.store-div {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .7rem;
}
/* Newsletter Section */
.newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  max-width: 500px;
  margin: auto;
}
.newsletter-form input[type="email"] {
  border-radius: 50rem;
  padding: 10px 20px;
  border: 1px solid #ccc;
  width: 70%;
  transition: border-color 0.3s ease;
}
.newsletter-form input[type="email"]:focus {
  border-color: var(--bs-primary);
  outline: none;
}
.newsletter-form button {
  border-radius: 50rem;
  padding: 10px 30px;
  background: var(--gradient);
  border: none;
  color: #fff;
  font-weight: 600;
  transition: transform 0.3s ease;
}
.newsletter-form button:hover {
  transform: translateY(-3px);
}
/* Footer Section */
a{
    color: var(--accent-color-dark);
}
a:hover{
    color: var(--accent-color);
    text-decoration: none;
}
footer {
  background: var(--primary-color);
  color: var(--primary-color-lighter);
  padding: 40px 15px;
}
.footer-container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0px;
  /* align-items: ; */
}
.footer-column {
  flex: 1 1 200px;

  margin: 10px;
}
.footer-column h5 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: var(--accent-color-dark);
  font-weight: bold;
}
.footer-column p {
  font-size: 0.9rem;
}
.footer-column ul {
  list-style: none;
  padding: 0;
}
.footer-column ul li {
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.footer-column ul li a {
    color: var(--primary-color-light);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}
.footer-column ul li a:hover {
  color: var(--accent-color-dark);
}
.social-icons a {
  color: var(--primary-color-lighter);
  font-size: 1.5rem;
  margin-right: 15px;
  transition: color 0.3s ease;
}
.social-icons a:hover {
  color: var(--accent-color-dark);
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
  .footer-column {
    text-align: center;
  }
  #screenshots .owl-carousel .item img {
    border-radius: 1%;
    height: 50%; /* Sets a fixed height */
    object-fit: contain; /* Ensures the image covers the area without stretching */
  }
}
