

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Reset default styles */

/* Set up base font and background */
body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  background-color: var(--primary-color);
  color: #222;
  line-height: 1.6;
}

.navbar-div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 20px 20px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.logo-heading {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #e13f3b;
  font-size: 30px;
  padding: 0 20px;
}

a {
  font-size: 20px;
  color: #6b6b6b;
  text-decoration: none;
}

.navbar-left {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-left-ul {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-weight: 400;
}

.navbar-right-ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.navbar-links {
  transition: color 0.3s;
}

.navbar-links:hover {
  color: #e13f3b;
}

.navbar-icons {
  width: 30px;
}

.navbar-button {
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 16px;
  color: #333;
  transition: background-color 0.3s, border-color 0.3s;
}

.navbar-button:hover {
  background-color: #e13f3b;
  color: white;
  border-color: #adb5bd;
}
.active{
    color: #e13f3b;
}

/* second-section */
.hero-section-div {
  width: 100%;
  padding: 20px;
}
.hero-section-div-container {
  width: 100%;
  background-image: url("../flavours/mockups/background.png");
  background-size: cover;
  background-position: center;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 500px;
}

.hero-section-left {
  width: 50%;
  padding: 1px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-section-right {
  width: 50%;
  padding: 20px;
}

.hero-section-image {
  width: 100%;
  height: auto;
  border-radius: 300px;
}

.hero-section-heading {
  font-size: 58px;
  font-weight: 700;
  color: #000000;
  
}

span {
  color: #e13f3b;
  font-style: italic;
}

.hero-section-buttons-div {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.hero-section-buttons {
  background-color: #f8f9fa;
  border: none;
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 16px;
  color: #333;
  transition: background-color 0.3s, border-color 0.3s;
}

.hero-section-buttons:hover {
  background-color: #e13f3b;
  color: white;
}

/* discover our ranges section */
.ranges-div-container {
  width: 100%;
  padding: 30px;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.ranges-heading-div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: auto;
  margin-bottom: 20px;
}

.ranges-heading {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
}

.card-container-div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.card-container {
  background-color: rgb(255, 255, 255);
  width: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: #e2e2e2 1px solid;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.card-image {
  width: 100%;
  height: auto;
  border-radius: 15px 15px 0px 0px;
}
.lower-div {
  width: 100%;
  padding: 0 10px 10px 10px;
}

.card-heading {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: rgb(42, 42, 42);
}

.ranges-card-button {
  background-color: #e13f3b;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  color: #ffffff;
  transition: background-color 0.3s, border-color 0.3s;
  margin-bottom: 5px;
  width: 100%;
  transition: background-color 0.3s, color 0.3s;
}

.ranges-card-button:hover {
  background-color: #a41411;
  color: white;
}
.view-more-button{
  text-align: center;
}


.view-more-button-style{
  background-color: #e13f3b;
  color: #ffffff;
  justify-content: center;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  color: #ffffff;
  transition: background-color 0.3s, border-color 0.3s;
  margin-top: 20px;
}
.view-more-button-style:hover {
  background-color: #781817;
  color: white;
}

/* benefits section */
.benefits-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 15px;
  width: fit-content;
}

.benefits-heading {
  text-align: center;
  font-size: 40px;
  line-height: 0.4;
  margin-bottom: 30px;
}

.benefits-heading-image {
  width: 100px;
  height: auto;
  vertical-align: middle;
  transform: translateY(-3px);
}

.benefits-cards {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.benefits-card-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  padding: 20px;
  width: 100%;
}

.benefit-card-image {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}

.second-card {
  transform: translateY(70px);
}

.first-card {
  transform: translateY(120px);
}

/* real fruit div */
.realfruit-div {
  margin-top: 200px;
  width: 100%;
  padding: 30px 100px;
  border-radius: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
}

.realfruit-div-left {
  width: 50%;
  padding: 20px;
}

.realfruit-image {
  width: 600px;
  height: auto;
  border-radius: 15px;
}

.realfruit-heading {
  font-size: 40px;
  font-weight: 600;
  font-family: "Segoe UI", Arial, sans-serif;
}

.realfruit-points {
  font-size: 18px;
  align-items: center;
}

.realfruit-tickmark-icon {
  width: 50px;
  height: auto;
  margin-right: 10px;
}
.realfruit-para-points {
  display: flex;
  align-items: center;
  gap: 10px; 
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.4;
}


/* footer */
.site-footer {
  background-color: #ffffff;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid #e2e2e2;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-logo {
  color: #e13f3b;
  font-size: 28px;
  margin-bottom: 10px;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.footer-tagline {
  color: #6b6b6b;
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-links li a {
  text-decoration: none;
  color: #6b6b6b;
  font-size: 16px;
  transition: color 0.3s;
}

.footer-links li a:hover {
  color: #e13f3b;
}

.footer-copy {
  font-size: 14px;
  color: #999;
}


/* ------------------ Responsive Styles ------------------ */
@media (max-width: 1024px) {
  .hero-section-heading {
    font-size: 40px;
  }

  .hero-section-left {
    width: 100%;
    text-align: center;
    align-items: center;
  }

  .hero-section-right {
    display: none; /* Hide image on tablets */
  }

  .realfruit-image {
    width: 100%;
  }

  .benefits-cards {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .navbar-div {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .navbar-left-ul,
  .navbar-right-ul {
    flex-direction: column;
    gap: 10px;
  }

  .hero-section-div-container {
    flex-direction: column;
    height: auto;
    padding: 30px 10px;
    text-align: center;
  }

  .hero-section-heading {
    font-size: 32px;
  }

  .hero-section-buttons-div {
    flex-direction: column;
  }

  .ranges-heading {
    font-size: 28px;
  }

  .benefits-heading {
    font-size: 28px;
  }

  .benefits-cards {
    flex-direction: column;
    gap: 30px;
  }

  .realfruit-div {
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;
  }

  .realfruit-heading {
    font-size: 28px;
    text-align: center;
  }

  .realfruit-para-points {
    font-size: 14px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .footer-logo {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .logo-heading {
    font-size: 24px;
  }

  a {
    font-size: 16px;
  }

  .navbar-button {
    font-size: 14px;
    padding: 8px 16px;
  }

  .card-heading {
    font-size: 18px;
  }

  .ranges-card-button {
    font-size: 14px;
  }

  .footer-tagline,
  .footer-links li a,
  .footer-copy {
    font-size: 14px;
  }

  .benefit-card-image {
    width: 80px;
  }

  .realfruit-tickmark-icon {
    width: 30px;
  }
}
