:root {
  --primary-color: #0f574e;
  --accent-color: #347571;
  --text-light: #ffffff;
  --text-dark: #333333;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #fff;
}

.header {
  background-color: white;
  color: var(--text-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 10px;
  padding-right: 125px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

.logo img {
  height: 150px;
  width: 225px;
  transform: scale(1.5);
  transform-origin: left center;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 80px;
  margin: 0;
  padding: 0;
}

.nav a {
  color: black;
  text-decoration: none;
  font-weight: 600;
  font-size: large;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: var(--accent-color);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}

.welcome {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px; /* offset for fixed header */
  background: linear-gradient(180deg, #0f574e 0%, #083a42 100%);
  color: var(--text-light);
}

.location-page .welcome {
  height: 60vh;
}

.welcome-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.welcome-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  max-width: 600px;
}

.development-plan {
  text-align: center;
  padding: 40px 20px;
}

.development-plan img {
  width: 70%;
  max-width: 800px;
  height: auto;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  display: inline-block;
  background-color: var(--primary-color);
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  /* text-decoration: none; */
  font-weight: 600;
  /* transition: background-color 0.3s ease; */
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, box-shadow 0.2s ease,
    transform 0.2s ease;
}

.btn-primary:hover {
  background-color: var(--accent-color);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.features {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  flex-wrap: wrap;
  padding: 80px 40px;
  background-color: #f7f9f9;
}

.feature {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 30%;
  margin: 10px;
  min-width: 260px;
}

.feature h2 {
  color: var(--primary-color);
  margin-top: 0;
}

.builder-opportunities {
  padding: 80px 40px;
  text-align: center;
  background-color: #ffffff;
}

.builder-opportunities h2 {
  color: var(--primary-color);
  margin-top: 0;
}

.builder-opportunities p,
.builder-opportunities ul {
  max-width: 800px;
  margin: 0 auto 20px;
  text-align: left;
  line-height: 1.7;
}

.builder-opportunities ul {
  padding-left: 20px;
}

.btn {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-block;
  margin-top: 20px;
}

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

.image-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.image-modal-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 90%;
  transition: transform 0.2s ease;
}

.image-modal-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.footer {
  background: linear-gradient(180deg, #0f574e 0%, #083a42 100%);
  color: #888888;
  text-align: center;
  padding: 40px;
  font-size: 0.9rem;
}

.contact-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.contact-section {
  padding: 240px 20px 40px;
  background-color: #f7f9f9;
}

.contact-page .footer {
  margin-top: auto;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form label {
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}

.contact-form .btn-primary {
  align-self: center;
  margin-top: 10px;
}

#status {
  margin-top: 10px;
}

@media (max-width: 768px) {
  .header {
    flex-wrap: wrap;
    padding-right: 20px;
  }
  .logo img {
    height: 70px;
    width: 105px;
    transform: scale(1.6);
    transform-origin: left center;
  }
  .menu-toggle {
    display: block;
  }
  .nav {
    width: 100%;
    display: none;
    flex-basis: 100%;
  }
  .nav.active {
    display: block;
  }
  .nav ul {
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
    text-align: center;
  }
  .welcome-content h1 {
    font-size: 2.2rem;
  }
  .welcome-content p {
    font-size: 1rem;
  }
  .feature {
    width: 100%;
  }

  .development-plan img {
    width: 100%;
    max-width: none;
  }

  .contact-section {
    padding-top: 180px;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 5px 10px;
  }
  .logo img {
    height: 60px;
    width: 90px;
    transform: scale(1.5);
    transform-origin: left center;
  }
  .welcome-content h1 {
    font-size: 1.8rem;
  }
  .welcome-content p {
    font-size: 0.9rem;
  }

  .btn {
    padding: 10px 20px;
  }
  .features,
  .builder-opportunities {
    padding: 40px 20px;
  }
  .contact-section {
    padding-top: 150px;
  }
}
