/* Base typography */
body {
  font-family: Arial, sans-serif;
}

h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

p {
  line-height: 1.6;
}

nav a {
  transition: color 0.3s ease;
}

nav a:hover {
  color: #9AE6B4;
}

footer {
  font-size: 0.9rem;
}

.nav-bar {
  background-color: #14532d;
  color: white;
}

.nav-container {
  max-width: 1280px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-header {
  height: 100px;
  width: auto;
}

.nav-links a {
  margin-left: 1.5rem;
  font-size: 1;
  font-weight: 600;
  color: white;
}

/* HERO SECTION */
.hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8rem 1rem;
  text-align: center;
  background-color: white;
}

.hero-logo {
  height: 500px;
  width: auto;
}

/* General Container Styling */
.content-container {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  /* same as max-w-4xl ~1024px */
  margin: 0 auto;
  text-align: center;
  padding-top: 8rem;
  /* same as py-32 */
  padding-bottom: 8rem;
}

/* Section Heading with Lines */
.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-bottom: 1.5rem;
  color: #14532d;
  /* text-green-900 */
}

.section-heading h2 {
  margin: 0;
  font-size: 2.25rem;
  /* same as text-4xl */
  font-weight: 700;
  letter-spacing: 1px;
}

.section-heading .line {
  flex: 1;
  height: 2px;
  background-color: currentColor;
}

/* === Paragraph Styling === */
.content-container p {
  color: #14532d;
  /* text-green-900 */
  line-height: 1.6;
  font-size: 1rem;
}

/* SECTION STYLES */
.section-green {
  background-color: #C3D857;
  color: #14532d;
}

.section-white {
  background-color: white;
  color: #000;
}

.section-contact {
  background-color: #14532d;
  color: white;
}

.section-content {
  position: relative;
  z-index: 10;
  max-width: 768px;
  margin: 0 auto;
  padding: 8rem 1rem;
  text-align: center;
}

.section-contact h2 {
  color: white;
}

.section-contact input,
.section-contact textarea {
  display: block;
  width: 100%;
  border: 1px solid #ccc;
  padding: 0.75rem;
  margin-bottom: 1rem;
}

.section-contact button {
  background-color: #14532d;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  cursor: pointer;
}

.section-contact button:hover {
  background-color: #166534;
  /* Tailwind green-700 */
}

/* ARROW SECTIONS */
.arrow-section {
  position: relative;
}

.arrow-section::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100px;
  background: inherit;
  z-index: 1;
}

.arrow-section::before {
  top: 100px;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.arrow-section::after {
  bottom: -100px;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.arrow-section.no-top-arrow::before {
  display: none;
}

.arrow-section.no-bottom-arrow::after {
  display: none;
}

.hex-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
  margin-left: 10px;
  gap: 20px;
}

.hex-row {
  display: flex;
  justify-content: center;
}

.hex-row.offset {
  transform: translateY(-48px);
}

.hex {
  width: 200px;
  aspect-ratio: 1;
  background-color: #c1e349;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #14532d;
  text-align: center;
  transition: transform 0.3s;
}
.hex.white {
  background-color: #ffffff;
}

.hex.white img {
  width: 200px;
  height: auto;
}

.hex:hover {
  transform: scale(1.05);
}

.hex img {
  width: 100px;
  height: auto;
}

.hex p {
  font-size: 1 rem;
  font-weight: bold;
}

.product-hex-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-hex-row.offset {
  transform: translateY(20px);
}

.product-hex-row {
  display: flex;
  margin-top: -20px;
}

.product-hex {
  width: 150px;
  aspect-ratio: 1;
  background-color: #c1e349;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #14532d;
  text-align: center;
  transition: transform 0.3s;
}

.product-hex.light-green {
  background-color: #c1e349;
}

.product-hex.green {
  background-color: #63a70a;
}

.product-hex.dark-green {
  background-color: #2f6500;
}

/* CONTACT SECTION */

.contact-section {
  background-color: #064e3b; /* Tailwind green-900 */
  color: #ffffff;
  padding: 8rem 1rem; /* py-32 equivalent */
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-content {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .contact-content {
    flex-direction: row;
    gap: 3rem; /* space-x-12 equivalent */
  }
}

.contact-details,
.contact-form {
  flex: 1;
}

.contact-heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1.5rem;
}

.contact-heading h2 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 1rem;
}

.contact-line {
  border-top: 2px solid #ffffff;
  flex: 1;
}

.contact-subtitle {
  margin-bottom: 1.5rem;
}

.contact-name {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-role {
  font-weight: 400;
}

.contact-info {
  margin-bottom: 1.5rem;
}

.contact-form h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-details h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  background-color: #a3e635; /* Tailwind lime-400 */
  color: #064e3b; /* Dark text */
  border: none;
  border-radius: 9999px; /* rounded-full */
}

.contact-form textarea {
  border-radius: 1rem; /* rounded-xl */
  min-height: 8rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #064e3b;
}

.contact-form button {
  background-color: #ffffff;
  color: #064e3b;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #f0fdf4;
}

/* FOOTER */
.footer {
  background-color: #C3D857;
  color: #000;
  text-align: center;
  padding: 1rem 0;
}