:root {
  --bg: #0f2431;
  --text: #e0eaf1;
  --accent: #00FFD0;
  --accent-dark: #22336B;
  --radius: 1.2rem;
  --font: 'Inter', sans-serif;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* HERO */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("/img/background.jpg") center/cover no-repeat fixed;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  font-weight: 800;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 3px 6px rgba(0,0,0,0.4);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.btn-outline {
  border: 2px solid #fff;
  padding: 0.8rem 2rem;
  border-radius: 0.8rem;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline:hover {
  background-color: #fff;
  color: var(--accent-dark);
}
/* CONTACT + TESTIMONIALS WRAPPER */
.contact-testimonials-wrapper {
  display: flex;
  gap: 3rem;
  margin: 4rem auto;
  align-items: stretch;
}

/* Kontakt & Testimonials Box */
.contact-box-wrapper,
.testimonials-wrapper {
  flex: 1;
  background: rgba(15,36,49, 0.8);
  border-radius: var(--radius);
  padding: 2rem 3rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
}

/* Überschriften */
.contact-box-wrapper h2,
.testimonials-wrapper h2 {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.3rem;
}

/* Kontaktformular */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.contact-form label {
  font-weight: 600;
  color: var(--accent);
}

.contact-form input,
.contact-form textarea {
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--accent);
  border-radius: 0.6rem;
  font-size: 1rem;
  font-family: var(--font);
  background-color: #0f2431;
  color: var(--text);
  transition: border-color 0.3s ease;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #75cfd1;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  background-color: #0a1a25;
  color: var(--text);
}

.contact-form textarea {
  min-height: 100px;
  max-height: 200px;
}

.cta {
  margin-top: 1.5rem;
  padding: 0.9rem 1.6rem;
  background: var(--accent);
  color: var(--accent-dark);
  border: none;
  border-radius: 0.6rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
  align-self: flex-start;
  font-size: 1rem;
}

.cta:hover {
  background: var(--accent-dark);
  color: #fff;
}

/* Testimonials */
.testimonial-card {
  background: rgba(255,255,255,0.1);
  border-left: 4px solid var(--accent);
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
  font-style: italic;
  color: #c9f7f4;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.testimonial-name {
  display: block;
  margin-top: 0.8rem;
  font-weight: 700;
  font-style: normal;
  text-align: right;
  color: var(--accent);
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-testimonials-wrapper {
    flex-direction: column;
  }
  .contact-box-wrapper,
  .testimonials-wrapper {
    width: 100%;
    max-width: none;
  }
}
