/* GERMAN PEST SERVICE – Corporate Green Theme */
:root {
  --green-dark: #0b5a2f;
  --green-main: #0f7a43;
  --green-light: #eaf4ee;
  --text-dark: #0d1b13;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text-dark);
  background: var(--green-light);
}

/* ---------- Header ---------- */
header {
  background: var(--white);
  border-bottom: 4px solid rgba(11, 90, 47, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.logo {
  height: 60px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 700;
}

.lang-switch select {
  padding: 6px 8px;
  border-radius: 6px;
  border: 1px solid #d8e3dc;
  font-weight: 600;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(
      rgba(11, 90, 47, 0.92),
      rgba(11, 90, 47, 0.88)
    ),
    url("img/hero-bg.jpg") center/cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 3.6rem;
  margin: 0;
  letter-spacing: -1px;
}

.hero p {
  font-size: 1.3rem;
  opacity: 0.95;
  margin-top: 12px;
  margin-bottom: 24px;
}

.cta-btn {
  display: inline-block;
  background: var(--green-main);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(11, 90, 47, 0.25);
}

/* ---------- Content Cards ---------- */
.container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 380px;
}

.card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.card h2 {
  color: var(--green-dark);
  margin-top: 0;
}

/* ---------- Form ---------- */
input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #cfdcd3;
  margin-bottom: 12px;
  font-size: 1rem;
}

button#submitBtn {
  background: var(--green-dark);
  color: var(--white);
  border: none;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}

button#submitBtn:hover {
  background: var(--green-main);
}

/* ---------- Footer ---------- */
footer {
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
  padding: 16px 0;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .container {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .logo {
    height: 48px;
  }
}
