@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

:root {
  --primary: #2563eb;
  --secondary: #10b981;
  --background: #f9fafb;
  --text: #22223b;
  --accent: #fbbf24;
  --white: #fff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
  padding-top: 0;
  min-width: 320px;
}
@media (max-width: 700px) {
  body {
    padding-top: 0;
  }
}
@media (min-width: 701px) {
  body {
    padding-top: 80px;
  }
}

html {
  scroll-behavior: auto; /* Wir steuern das Scrollen per JS */
}

.container {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 0.8rem 1rem;
}
@media (min-width: 700px) {
  .container {
    max-width: 900px;
    padding: 1rem 1.5rem;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1000;
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 0 0.3rem 0;
  box-shadow: 0 2px 8px rgba(37,99,235,0.15);
  transition: box-shadow 0.2s;
}
.header .container {
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  padding: 0 0.5rem;
}
.header h1 {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 0.1rem;
  margin-top: 0;
}
.header nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}
.header nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.header nav a:hover {
  color: var(--accent);
}
@media (min-width: 701px) {
  .header {
    padding: 0.6rem 0 0.4rem 0;
  }
  .header h1 {
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
  }
  .header nav ul {
    gap: 1.2rem;
  }
  .header nav a {
    font-size: 0.95rem;
  }
  .header .container {
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
}

.hero {
  background: linear-gradient(120deg, var(--primary) 60%, var(--secondary) 100%);
  color: var(--white);
  text-align: center;
  padding: 2rem 0 1.5rem 0;
  border-radius: 2rem;
  margin-top: 110px;
}
@media (min-width: 701px) {
  .hero {
    margin-top: 90px;
    padding: 2.5rem 0 2rem 0;
  }
}
.hero h2 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}
.hero p {
  font-size: 1rem;
  margin-bottom: 1.2rem;
}
@media (min-width: 701px) {
  .hero h2 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
  }
  .hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
}
.cta-btn {
  background: var(--accent);
  color: var(--text);
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.cta-btn:hover {
  background: var(--white);
}

.about, .services, .testimonials, .contact, .reisen {
  margin-top: 2.5rem;
  background: var(--white);
  border-radius: 1.2rem;
  box-shadow: 0 2px 8px rgba(16,185,129,0.04);
  padding: 2rem 1.2rem;
}
@media (max-width: 700px) {
  .about, .services, .testimonials, .contact, .reisen {
    margin-top: 1.5rem;
    padding: 1.5rem 1rem;
    border-radius: 0.8rem;
  }
}
.about h2, .services h2, .testimonials h2, .contact h2, .reisen-title {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.services ul, .reisen-list {
  list-style: disc inside;
  margin-left: 1rem;
}
.services li, .reisen-list li {
  margin-bottom: 0.7rem;
}

.testimonials blockquote {
  font-style: italic;
  background: var(--background);
  border-left: 4px solid var(--secondary);
  margin: 1.2rem 0;
  padding: 1rem 1.2rem 0.7rem 1.2rem;
  border-radius: 0.5rem;
  color: var(--text);
}
.testimonials span {
  display: block;
  margin-top: 0.5rem;
  color: var(--secondary);
  font-size: 0.95rem;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}
.contact label {
  font-weight: 500;
}
.contact input {
  padding: 0.6rem;
  border: 1px solid #d1d5db;
  border-radius: 0.4rem;
  font-size: 1rem;
}
.contact button {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 2rem;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s;
}
.contact button:hover {
  background: var(--secondary);
}
.privacy-hint {
  font-size: 0.9rem;
  color: #6b7280;
  margin-top: 0.5rem;
}
.contact-info {
  font-size: 1rem;
  color: var(--text);
}
.contact-info strong {
  color: var(--primary);
}

.footer {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 1.2rem 0 0.7rem 0;
  margin-top: 2.5rem;
  border-radius: 2rem 2rem 0 0;
  font-size: 0.95rem;
}

.contact-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.contact-image {
  display: block;
  max-width: 220px;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(37,99,235,0.10);
}
.contact-right {
  width: 100%;
}
.about-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.about-image {
  display: block;
  max-width: 220px;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(37,99,235,0.10);
}
.about-text {
  width: 100%;
}
.services-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.services-image {
  display: block;
  max-width: 220px;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(16,185,129,0.10);
}
.services-text {
  width: 100%;
}
.testimonials-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.testimonials-image {
  display: block;
  max-width: 220px;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(37,99,235,0.10);
}
.testimonials-text {
  width: 100%;
}
.reisen {
  margin-top: 2.5rem;
  background: var(--white);
  border-radius: 1.2rem;
  box-shadow: 0 2px 8px rgba(16,185,129,0.04);
  padding: 2rem 1.2rem;
}
.reisen-title {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.reisen-list {
  list-style: disc inside;
  margin-left: 1rem;
}
.reisen-list li {
  margin-bottom: 0.7rem;
}
.reisen-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.reisen-image {
  display: block;
  max-width: 220px;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(16,185,129,0.10);
}
.reisen-content {
  width: 100%;
}
.reisen-links {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 0.7rem;
}
.reisen-links a {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  padding: 0.85em 1.3em;
  border-radius: 2em;
  font-size: 1.05em;
  box-shadow: 0 2px 8px rgba(37,99,235,0.07);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.reisen-links a:hover, .reisen-links a:focus {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(251,191,36,0.13);
}
@media (min-width: 700px) {
  .contact-flex {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 3rem;
  }
  .contact-image {
    max-width: 260px;
    margin: 0;
  }
  .contact-right {
    flex: 1 1 320px;
    min-width: 260px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .callback-form {
    flex: 0 0 auto;
  }
  .contact-info {
    margin-top: 1.2rem;
  }
  .about-flex {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 3rem;
  }
  .about-image {
    max-width: 260px;
    margin: 0;
  }
  .about-text {
    flex: 1 1 320px;
    min-width: 260px;
    max-width: 500px;
  }
  .services-flex {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 3rem;
  }
  .services-image {
    max-width: 260px;
    margin: 0;
  }
  .services-text {
    flex: 1 1 320px;
    min-width: 260px;
    max-width: 500px;
  }
  .testimonials-flex {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 3rem;
  }
  .testimonials-image {
    max-width: 260px;
    margin: 0;
  }
  .testimonials-text {
    flex: 1 1 320px;
    min-width: 260px;
    max-width: 500px;
  }
  .reisen {
    padding: 2.5rem 2.5rem;
  }
  .reisen-flex {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 3rem;
  }
  .reisen-image {
    max-width: 260px;
    margin: 0;
  }
  .reisen-content {
    flex: 1 1 320px;
    min-width: 260px;
    max-width: 500px;
  }
}

@media (min-width: 600px) {
  .container {
    max-width: 900px;
  }
  .header nav ul {
    gap: 2rem;
  }
  .about, .services, .testimonials, .contact, .reisen {
    padding: 2.5rem 2.5rem;
  }
  .hero h2 {
    font-size: 2.2rem;
  }
}
