/* reviews.css */

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #ffffff;
  color: #333;
  max-width: 100vw;
  overflow-x: hidden;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #fff;
  font-family: 'Shrikhand', cursive;
  font-size: xx-large;
}

.logo img {
  height: 8rem;
}

.hamburger {
  cursor: pointer;
  font-size: 28px;
  z-index: 20;
  display: none;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.nav-links a {
  padding: 10px 20px;
  text-decoration: none;
  color: #007352;
  display: block;
}

.nav-links.active {
  display: flex;
}

.review-hero {
  text-align: center;
  background-color: #f9f9f9;
  padding: 40px 20px;
}

.review-hero h1 {
  font-size: 2rem;
  color: #007352;
}

.review-hero p {
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  margin: 10px auto 0;
}

.review-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  padding: 40px 20px;
}

.review-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 350px;
  text-align: center;
}

.review-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.review-card h3 {
  margin: 10px 0;
  color: #007352;
  font-size: 1.2rem;
}

.review-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

.card-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007352;
  color: white;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.card-btn:hover {
  background-color: #005f44;
}

.final-cta {
  background-color: #007352;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.final-cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.final-cta p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background-color: #A4D100;
  color: #007352;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.cta-btn:hover {
  background-color: #89b800;
  color: white;
}

.footer {
  background-color: #f5f5f5;
  padding: 20px;
  text-align: center;
  margin-top: 40px;
}

.footer a {
  text-decoration: none;
  color: #007352;
  margin: 0 8px;
}

.content {
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
  box-sizing: border-box;
}

.content h1 {
  font-size: 2rem;
  color: #002f6d;
  margin-bottom: 20px;
}

.content h2 {
  font-size: 1.4rem;
  color: #007352;
  margin-top: 30px;
  margin-bottom: 10px;
}

.content h3 {
  font-size: 1.2rem;
  color: #005f44;
  margin-top: 20px;
  margin-bottom: 8px;
}

.content p,
.content ul li {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 16px;
}

.content ul {
  padding-left: 20px;
}

.scroll-gallery-container {
  margin-top: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.scroll-gallery {
  display: flex;
  gap: 1rem;
  scroll-snap-type: x mandatory;
  scroll-padding: 1rem;
  padding: 1rem;
  overflow-x: auto;
}

.scroll-gallery img {
  width: 250px;
  border-radius: 8px;
  flex-shrink: 0;
  scroll-snap-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .review-cards {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .review-card {
    width: 300px;
  }

  .hamburger {
    display: none;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
  }

  .nav-links.active {
    display: flex;
  }

  .logo img {
    height: 8rem;
  }

  .nav-links a {
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-size: 25px;
  }

  .scroll-gallery {
    max-width: 100vw;
  }
}