:root {
  --primary: #5af29a;
  --primary-dark: #3cbf7a;
  --dark: #0e0e0e;
  --gray: #1f1f1f;
  --light: #f8f9fa;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--dark);
  color: var(--light);
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
  background-image: url('../img/HeroBanner.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(110, 110, 110, 0.226),
    rgba(102, 102, 102, 0.473)
  );
  z-index: -1;
  pointer-events: none;
}

/* NAVBAR */
.navbar {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.navbar-brand,
.nav-link {
  color: #fff !important;
  font-weight: 500;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-logo {
  height: 42px;
  width: 42px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 3px;
}

.nav-link:hover {
  color: var(--primary) !important;
}

/* SECTIONS */
section {
  position: relative;
  padding: 80px 20px !important;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

section .container {
  position: relative;
  z-index: 1;
}

/* HERO / BANNER */
#home {
  height: 100vh;
  display: flex;
  align-items: center;
}

#home h1 {
  font-size: clamp(2.8rem, 5vw, 4rem);
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.8);
}

#home .lead {
  font-size: 1.25rem;
  opacity: 0.95;
}

.banner {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.6));
  color: white;
  padding: 100px 20px;
  text-align: center;
  box-shadow: none;
}

.banner h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.95), 0 8px 24px rgba(0, 0, 0, 0.85);
}

.banner p {
  font-size: 1.3rem;
  opacity: 0.95;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
}

/* HEADINGS */
h2 {
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary);
}

/* WER SIND WIR */
#wer-sind-wir {
  background-image: url('../img/HeroBanner.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
}

#wer-sind-wir .row {
  align-items: stretch;
}

#wer-sind-wir .row > [class*="col-"] {
  display: flex;
  align-self: stretch;
}

.info-card {
  background: rgba(20, 20, 20, 0.92);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Only stretch cards to equal height where they sit side-by-side */
#wer-sind-wir .info-card {
  height: 100%;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(90, 242, 154, 0.2);
  border-color: rgba(90, 242, 154, 0.3);
}

.info-card h3 {
  color: var(--primary);
  margin-bottom: 15px;
  margin-top: 30px;
  font-size: 1.3rem;
}

.info-card h3:first-child {
  margin-top: 0;
}

/* TAGLINES (used for the short punchy lines from the content brief) */
.tagline {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 15px;
}

.tagline-small {
  font-style: italic;
  color: var(--primary);
  opacity: 0.9;
  margin-top: 20px;
  font-size: 0.95rem;
}

/* ANGEBOT */

#angebot .row {
  justify-content: center;
  align-items: stretch;
}

#angebot .row > [class*="col-"] {
  display: flex;
  align-self: stretch;
}

.offer-card {
  background: rgba(20, 20, 20, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 30px;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}

.offer-card:hover {
  background: rgba(20, 20, 20, 0.92);
  border-color: rgba(90, 242, 154, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(90, 242, 154, 0.2);
}

.offer-card h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

/* PREISE */

#preise .row {
  justify-content: center;
}

.price-card {
  background: rgba(20, 20, 20, 0.92);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 450px;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(90, 242, 154, 0.2);
  border-color: rgba(90, 242, 154, 0.3);
}

.price-card h3 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.price {
  font-size: 2.5rem;
  color: var(--primary);
  font-weight: 700;
  margin: 20px 0;
}

.price-card ul {
  list-style: none;
  margin: 20px 0;
  text-align: left;
}

.price-card li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #e0e0e0;
}

.price-card li:last-child {
  border-bottom: none;
}

.btn-price {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s;
  font-weight: 600;
  box-shadow: 0 0 20px rgba(90, 242, 154, 0.25);
}

.btn-price:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 30px rgba(90, 242, 154, 0.45);
}

/* PARTNER */

#partner .row {
  justify-content: center;
}
.partner-card {
  background: rgba(20, 20, 20, 0.92);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 450px;
}

.partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(90, 242, 154, 0.2);
  border-color: rgba(90, 242, 154, 0.3);
}

.partner-card h3 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.partner-card img {
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  transition: transform 0.3s;
}

.partner-card img:hover {
  transform: scale(1.05);
}

.partner {
  font-size: 2.5rem;
  color: var(--primary);
  font-weight: 700;
  margin: 20px 0;
}

.partner-card ul {
  list-style: none;
  margin: 20px 0;
  text-align: left;
}

.partner-card li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #e0e0e0;
}

.partner-card li:last-child {
  border-bottom: none;
}

/* KONTAKT */

.contact-form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(20, 20, 20, 0.92);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* FORMS */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s;
  background-color: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 5px rgba(90, 242, 154, 0.3);
}

.form-control {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

.form-control:focus {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(90, 242, 154, 0.25);
  color: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  padding: 12px 28px;
  font-weight: 600;
  box-shadow: 0 0 20px rgba(90, 242, 154, 0.25);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 30px rgba(90, 242, 154, 0.45);
}

.btn-submit {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #000;
  border: none;
  padding: 12px 40px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s;
  width: 100%;
  box-shadow: 0 0 20px rgba(90, 242, 154, 0.25);
}

.btn-submit:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 30px rgba(90, 242, 154, 0.45);
}

/* reCAPTCHA */
.g-recaptcha {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

/* CARDS */
.card {
  background: rgba(20, 20, 20, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  text-align: center;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(90, 242, 154, 0.35);
}

.card h4,
.card h5 {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
}

.card p {
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.95;
}

/* FOOTER */
footer {
  background: #000;
  color: #aaa;
  padding: 30px 0;
  font-size: 0.9rem;
  text-align: center;
}

.footer-logo {
  height: auto;
  width: 160px;
  max-width: 60%;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 15px;
}

footer a {
  color: var(--primary);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .banner h1 {
    font-size: 2.5rem;
  }

  section h2 {
    font-size: 1.8rem;
  }

  .price {
    font-size: 2rem;
  }
}

