html {
  scroll-behavior: smooth;
}

@keyframes slideIn {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes slideRight {
  0% {
    transform: translateX(-20px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes foodSlide {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-delay-1 {
  animation-delay: 0.5s;
}

.animate-delay-2 {
  animation-delay: 1s;
}

.animate-delay-3 {
  animation-delay: 1.5s;
}

.food-item {
  animation: foodSlide 1s ease forwards;
}

.watermark {
  position: absolute;
  bottom: 20px;
  right: 20px;
  opacity: 0.7;
  width: 80px;
  z-index: 10;
}

.phone-mockup {
  position: relative;
  width: 300px;
  height: 600px;
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  border: 10px solid #111;
}

.phone-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.food-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
  max-width: 80%;
  animation: slideIn 0.8s ease forwards;
}

.running-banner {
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


.food-item {
  opacity: 0;
  animation: fadeInOut 12s infinite;
  transition: opacity 1s ease-in-out;
}

.food-item:nth-child(1) {
  animation-delay: 0s;
}

.food-item:nth-child(2) {
  animation-delay: 2s;
}

.food-item:nth-child(3) {
  animation-delay: 4s;
}

.food-item:nth-child(4) {
  animation-delay: 6s;
}

.food-item:nth-child(5) {
  animation-delay: 8s;
}

.food-item:nth-child(6) {
  animation-delay: 10s;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  25% {
    opacity: 1;
  }

  33% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* About us CSS */
/* General styles */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #50cd5e;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.logo-img {
  width: 50px;
  /* adjust logo size here */
  height: auto;
  /* keeps proportions */
}

header h1 {
  margin: 0;
  font-size: 2rem;
}

.tagline {
  margin-top: 0.3rem;
  font-size: 1rem;
  font-weight: 400;
}

/* Main content */
main {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

section {
  margin-bottom: 2.5rem;
}

h3 {
  color: #23b33a;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

p {
  font-size: 1rem;
}

/* Mission list */
.mission-list {
  list-style: none;
  padding: 0;
}

.mission-list li {
  background-color: #f4fef5;
  border-left: 5px solid #50cd5e;
  padding: 0.8rem 1rem;
  margin-bottom: 0.6rem;
  border-radius: 6px;
  font-weight: 500;
}

/* Highlight */
.highlight {
  background-color: #50cd5e;
  color: white;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
}

/* Footer */
footer {
  background-color: #1a1a1a;
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

/* Responsive styles */
@media (max-width: 768px) {
  header h1 {
    font-size: 1.8rem;
  }

  .logo-img {
    width: 45px;
    /* smaller logo on tablets */
  }

  main {
    margin: 2rem auto;
    padding: 0 1rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .highlight {
    font-size: 1rem;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  header {
    padding: 1.5rem 1rem;
  }

  .logo {
    flex-direction: column;
    gap: 0.5rem;
  }

  header h1 {
    font-size: 1.5rem;
  }

  .tagline {
    font-size: 0.9rem;
  }

  .mission-list li {
    font-size: 0.95rem;
  }

  .logo-img {
    width: 40px;
    /* smaller logo for mobile */
  }
}

/* Contact us CSS */
/* General styles */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #50cd5e;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.logo-img {
  width: 50px;
  height: auto;
}

header h1 {
  margin: 0;
  font-size: 2rem;
}

.tagline {
  margin-top: 0.3rem;
  font-size: 1rem;
  font-weight: 400;
}

/* Main content */
main {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

section {
  margin-bottom: 2.5rem;
}

h3 {
  color: #23b33a;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

p {
  font-size: 1rem;
}

/* Contact info */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.info-item {
  flex: 1 1 250px;
  background-color: #f4fef5;
  border-left: 5px solid #50cd5e;
  padding: 1rem;
  border-radius: 6px;
}

.info-item h3 {
  margin-top: 0;
  color: #23b33a;
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}

.contact-form button {
  background-color: #50cd5e;
  color: white;
  border: none;
  padding: 0.8rem;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.contact-form button:hover {
  background-color: #23b33a;
}

/* Highlight */
.highlight {
  background-color: #50cd5e;
  color: white;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
}

/* Footer */
footer {
  background-color: #1a1a1a;
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

/* Responsive styles */
@media (max-width: 768px) {
  header h1 {
    font-size: 1.8rem;
  }

  .logo-img {
    width: 45px;
  }

  main {
    margin: 2rem auto;
    padding: 0 1rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .highlight {
    font-size: 1rem;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  header {
    padding: 1.5rem 1rem;
  }

  .logo {
    flex-direction: column;
    gap: 0.5rem;
  }

  header h1 {
    font-size: 1.5rem;
  }

  .tagline {
    font-size: 0.9rem;
  }

  .logo-img {
    width: 40px;
  }

  .contact-info {
    flex-direction: column;
  }
}