/* Google Fonts - MoodFoods Style */
@import url('https://fonts.googleapis.com/css?family=Poppins:500,600,700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&display=swap');

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Manrope', sans-serif;
  scroll-behavior: smooth;
  text-decoration: none;
  color: #002431;
}

body {
  background: #fdfbf7;
  min-height: 100vh;
  padding-top: 120px;
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 0;
  z-index: 998;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

nav .navbar {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}

nav .navbar .logo a {
  font-weight: 700;
  font-size: 32px;
  font-family: 'Karla', sans-serif;
}

nav .navbar .menu {
  display: flex;
}

nav .navbar .menu li {
  list-style: none;
  margin: 0 10px;
}

.navbar .menu a {
  font-size: 17px;
  font-weight: 600;
  color: #000000;
  transition: color 0.3s ease;
}

.navbar .menu a:hover {
  color: #cdd6e6;
}

.navbar .media-icons a {
  color: #000000;
  font-size: 18px;
  margin: 0 6px;
}

/* Scroll Down Indicator */
.scroll-down-indicator {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 40px;
  color: #000000;
  animation: bounce 2s infinite;
  z-index: 1000;
  cursor: pointer;
  opacity: 0.8;
}

.scroll-down-indicator:hover {
  opacity: 1;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translate(-50%, 0);
  }

  40% {
    transform: translate(-50%, -10px);
  }

  60% {
    transform: translate(-50%, -5px);
  }
}

/* Main Layout */
main {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  padding: 20px;
  text-align: center;
}

.intro-text {
  font-size: 18px;
  color: #4d4d4d;
  margin-bottom: 30px;
}

/* Testimonial Layout */
.testimonial-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px; /* Gap between image and text */
  margin-top: 50px;
}

.testimonial-content {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 900px; /* Increased width */
}

.profile-img {
  width: 400px; /* Rectangular image */
  height: 630px; /* Rectangular image */
  object-fit: cover;
  margin-right: 40px; /* Space between image and text */
  border-radius: 10px;
}

.testimonial-text-container {
  display: flex;
  flex-direction: column;
  justify-content: start;
  text-align: left;
  max-width: 600px;
}

.testimonial-text {
  font-size: 18px; /* Increased text size */
  color: #3a3a3a;
  margin-bottom: 15px;
  line-height: 1.7;
}

.role {
  font-size: 15px;
  font-weight: 600;
  color: #002431;
  opacity: 0.75;
}

/* Back Link */
.back-link {
  display: inline-block;
  margin-top: 20px;
  font-weight: 600;
  color: #000000;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #cdd6e6;
}

/* Footer */
footer {
  background: #000000;
  padding: 20px 0;
  text-align: center;
}

footer .text span {
  font-size: 16px;
  color: #ffffff;
  font-family: 'Manrope', sans-serif;
}

footer .text span a {
  font-weight: 600;
  color: #ffffff;
}

footer .text span a:hover {
  text-decoration: underline;
}

/* Mobile Responsiveness - Image and Text Layout */
@media (max-width: 768px) {
  .testimonial-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonial-content {
    flex-direction: column;
    align-items: center;
    max-width: 100%;
  }

  .profile-img {
    width: 80%; /* Adjust the image size for mobile */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 20px; /* Add spacing below the image */
  }

  .testimonial-text-container {
    text-align: center;
    max-width: 100%;
  }
}
