/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY BASE */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f9f8;
  color: #1a1a1a;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  scroll-behavior: smooth;
}

/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  height: 75vh;
  background: url('https://www.google.com/url?sa=i&url=https%3A%2F%2Fwww.gettyimages.in%2Fphotos%2Fsustainability&psig=AOvVaw1CNIDVcA6oEpfOaSXkQkHS&ust=1762276476905000&source=images&cd=vfe&opi=89978449&ved=0CBUQjRxqFwoTCKjXvpe-1pADFQAAAAAdAAAAABAE')
    center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 1rem;
}

.hero h1 {
  font-size: 3rem;
  letter-spacing: 1px;
}

.tagline {
  color: #ddd;
  font-size: 1.2rem;
  margin: 0.5rem 0 1rem;
}

.mission {
  font-size: 1rem;
  color: #f3f3f3;
  margin-bottom: 1.5rem;
}

.cta {
  background: #00704a;
  color: white;
  text-decoration: none;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s;
}

.cta:hover {
  background: #005a39;
}

/* MAIN CONTENT */
.main-content {
  margin-top: 3rem;
  padding: 0 1rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

.forms-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1000px;
}

/* FORM SECTION */
.form-section {
  background: white;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 2rem;
  width: 90%;
  max-width: 450px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

h3 {
  text-align: center;
  margin-bottom: 1rem;
  color: #00704a;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-top: 1rem;
  font-weight: 500;
}

input,
select {
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 0.25rem;
}

button {
  margin-top: 1.5rem;
  padding: 0.8rem;
  background: #00704a;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

button:hover {
  background: #005a39;
}

/* SCRAP LIST */
#scrapList {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.scrap-card {
  background: #f3f3f3;
  border-radius: 8px;
  padding: 0.8rem;
  border-left: 4px solid #00704a;
}

footer {
  margin: 3rem 0 1rem;
  font-size: 0.9rem;
  color: #777;
  text-align: center;
}
