:root {
  /* Colors */
  --secondary-color: #dad7cdff;
  --primary-color: #3a5a40ff;
  --accent-color: #a3b18aff;
  --accent-2: #588157ff;
  --text-dark: #000000;
  --text-light: #ffffff;

  /* Font Sizes */
  --fs-h1: 3.815rem;
  --fs-h2: 3.052rem;
  --fs-h3: 2.441rem;
  --fs-h4: 1.953rem;
  --fs-h5: 1.563rem;
  --fs-h6: 1.25rem;
  --fs-p: 1rem;
  --fs-small: 0.8rem;
  --fs-tiny: 0.64rem;

  /* Font Weights */
  --fw-light: 300;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-bolder: 800;
  --fw-black: 900;
}

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  box-sizing: border-box;
  font-family: "Nunito Sans", sans-serif;
}

a {
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-size: var(--fs-p);
  font-weight: var(--fw-medium);
  line-height: 1.6;
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

.container {
  max-width: calc(100px + 1000px);
  margin: 0 auto;
  padding: 0 30px;
}

header {
  height: auto;
  background-color: var(--primary-color);
  padding: 1rem 12px;
  z-index: 100;
}

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

.navbar ul {
  display: flex;
  gap: 20px;
}

.navbar .logo a {
  font-size: var(--fs-h5);
  font-weight: var(--fw-bold);
  color: var(--text-light);
}

.navbar ul li a {
  color: var(--text-light);
  font-size: var(--fs-p);
  font-weight: var(--fw-medium);
}

.navbar ul li a:hover {
  color: var(--accent-color);
}

.hamburger {
  display: none;
}

.mobileMenu {
  display: none;
}

nav ul {
  list-style: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Hero Section */
.hero-section {
  padding: 32px 0;
  background-color: var(--secondary-color);
  height: auto;
}

.hero-section .container {
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.text-container {
  height: auto;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
}

.text-container h1 {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  line-height: 1;
  color: var(--primary-color);
}

.btn-container {
  display: flex;
}

.btn {
  height: 50px;
  padding: 12px 1rem;
  border-radius: 12px;
  background-color: var(--accent-color);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  transition: background-color 0.3s ease;
}

a.btn {
  color: var(--text-dark);
  font-size: var(--fs-p);
  font-weight: var(--fw-semibold);
}

a.btn:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.img-container {
  display: block;
  height: auto;
  flex: 1 1 300px;
  border-radius: 1rem;
}

.img-container img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 1rem;
}

/* Features Section */
.features-section .container {
  display: flex;
  flex-wrap: wrap;
  padding: 24px;
  gap: 24px;
  justify-content: center;
}

/* Features */
.features-section .feature {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  flex: 1 0 200px;
  gap: 8px;
  border-radius: 12px;
  padding: 20px;
  color: var(--text-light);
  background: linear-gradient(to top, var(--accent-color), var(--accent-2));
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.features-section .feature h4 {
  font-size: var(--fs-h6);
  font-weight: var(--fw-bold);
  color: var(--text-light);
}

/* About Section */
.about-section .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-section h2 {
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  color: var(--primary-color);
}

/* Contact Section */
.contact-section .container {
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 20px;
}

.contact-section h2 {
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  color: var(--primary-color);
}

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

.contact-section form .col-6 {
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.contact-section form .col-6 .input-group {
  flex: 1;
}

.contact-section form label {
  display: block;
  padding-left: 1rem;
}

.contact-section form input,
.contact-section form textarea {
  padding: 0.8rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--primary-color);
  font-size: var(--fs-p);
  width: 100%;
}

.contact-section form input::placeholder,
.contact-section form textarea::placeholder {
  font-size: var(--fs-p);
}

.contact-section form input:focus,
.contact-section form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

.contact-section form textarea {
  min-height: 6rem;
  max-height: 8rem;
  resize: vertical;
}

.contact-section form .btn-container {
  justify-content: center;
}

/* Footer */
footer {
  width: 100%;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 20px 24px;
  text-align: center;
}

@media (max-width: 860px) {
  /* Hamburger Icon */
  .hamburger {
    display: flex;
    position: relative;
    width: 40px;
    height: 50px;
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    z-index: 201;
  }

  .hamburger span {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 5px;
    background: var(--text-light);
    border-radius: 0.125rem;
    transition: 0.3s;
  }

  .hamburger span:nth-child(1) {
    transform: translateY(-10px);
  }
  .hamburger span:nth-child(2) {
    transform: translateY(0);
  }
  .hamburger span:nth-child(3) {
    transform: translateY(10px);
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
  }

  .navbar ul {
    display: none;
  }

  /* Mobile menu */
  .mobileMenu {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: -250px;
    left: 0;
    width: 100%;
    height: 250px;
    background: var(--primary-color);
    z-index: 101;
  }

  .mobileMenu.active {
    top: auto;
  }

  .mobileMenu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 20px;
  }

  .mobileMenu ul li a {
    color: var(--text-light);
    font-size: var(--fs-p);
    font-weight: var(--fw-medium);
  }

  .mobileMenu ul li a:hover {
    color: var(--text-light);
  }

  /* Home Section */
  .text-container {
    padding: 32px 0;
  }

  .text-container h1 {
    font-size: var(--fs-h3);
  }
}
