/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* COLOR PALETTE */
:root {
  --bg-main: #69AB62;
  --bg-dark: #2f4f2f;
  --accent: #f5f5f5;
  --text-dark: #1e1e1e;
  --button-dark: #355f32;
  --button-hover: #2b4d28;
}

/* BASE */
body {
  font-family: "Segoe UI", sans-serif;
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;

  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background-color: var(--bg-dark);
  color: white;
}

header .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

header nav a {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
}

header nav a:hover {
  text-decoration: underline;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
   max-width: 1000px;
  margin: 0 auto;
  padding: 60px 10px;
  gap: 50px;
}

.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-text h2 {
  font-size: 1.4rem;
  margin-bottom: 30px;
  font-weight: normal;
}

/* MAIN SECTION */
main {
  flex: 1;
}

/* BUTTONS */
.button-group {
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  margin-right: 15px;
  background-color: var(--button-dark);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s, transform 0.2s;
}

.btn:hover {
  background-color: var(--button-hover);
  transform: translateY(-2px);
}

/*
.btn.secondary {
  background-color: transparent;
  border: 2px solid var(--button-dark);
  color: var(--button-dark);
}

.btn.secondary:hover {
  background-color: var(--button-dark);
  color: white;
}
/*

/* SOCIAL ICONS */
.social-icons {
  margin-top: 25px;
}

.social-icons a {
  color: var(--text-dark);
  font-size: 1.8rem;
  margin-right: 18px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
}

.social-icons a:hover {
  color: white;
  transform: translateY(-2px) scale(1.1);
  text-decoration: none;
}

/* HERO IMAGE */
.hero-image img {
  max-width: 350px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.hero-image {
  display: flex;
  align-items: center;
}

/* CONTACT */
.contact-section {
  background-color: transparent;
  padding: 60px 20px;
  text-align: center;
}

.contact-section h3 {
  font-size: 2rem;
  margin-bottom: 25px;
}

form {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
  background: white;
  padding: 25px;
  border-radius: 10px;
}

form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 5px;
  border: 1px solid #aaa;
}

form button {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background-color: var(--button-dark);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}

form button:hover {
  background-color: var(--button-hover);
}

#success-message {
  margin-top: 30px;
  font-size: 1.2rem;
  color: white;
  text-align: center;
}

/* FOOTER */
footer {
  background-color: var(--bg-dark);
  color: white;
  text-align: center;
  padding: 15px 0;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-bottom: 12px;
}

.footer-social a {
  color: white;
  font-size: 1.6rem;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.3s ease;
}

.footer-social a:hover {
  color: #eaeaea;
  transform: translateY(-2px) scale(1.1);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-image img {
    max-width: 250px;
  }

  .button-group .btn {
    margin-bottom: 10px;
  }
}
