/* style.scss */
@import "swiper/css";
@import "swiper/css/autoplay";


:root {
  --primary: #116466;
  --secondary: #D1E8E2;
  --bg: white;
  --primary-text: #2c3531;
  --secondary-text: #2c3531;
  --border: #e0e0e0;
  --accent-1: #D1E8E2;
  --hero-title-text: #124E66;
  --hero-claim-text: #116466;
  --hero-intro-text: #2c3531;
}

/* :root {
  --primary: #124E66;
  --secondary: #748d92;
  --bg: #DcD9D4;
  --primary-text: white;
  --secondary-text: white;
  --border: #e0e0e0;
  --accent-1: #748D92;
  --hero-title-text: #124E66;
  --hero-claim-text: #2e3944;
  --hero-intro-text: #748d92;
} */

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, sans-serif;
  color: var(--secondary-text);
  background-color: var(--bg);
  scroll-behavior: smooth;
  line-height: 1.6;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem;
}

h1,
h2,
h3 {
  color: var(--primary-text);
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.hero {
  position: relative;
  padding: 6rem 2rem 4rem;
  background-color: var(--bg);
  overflow: hidden;
  text-align: center;
}

.title {
  font-size: 2.5rem;
  color: var(--hero-title-text);
  margin-bottom: 1rem;
}

.claim {
  font-size: 1.3rem;
  margin-top: 1rem;
  color: var(--hero-claim-text);
}

.intro {
  margin: 1rem auto 2rem;
  max-width: 600px;
  font-size: 1.1rem;
  color: var(--hero-intro-text);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-buttons .button {
  flex: 1 1 auto;
  max-width: 200px;
  text-align: center;
  margin: 0 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.button.primary {
  background: var(--primary);
  color: white;
  border: none;
}

.button.secondary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.section {
  padding: 4rem 0;
  /* background: white; */
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: var(--accent-1);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.about-grid .text {
  flex: 1;
}

.about-grid .image-placeholder {
  flex: 1;
  background: #ddd;
  height: 200px;
  border-radius: 8px;
}

.centered {
  text-align: center;
  margin-top: 1rem;
}

/* contact.scss oder innerhalb eures style.scss */

/* Container für die Kontakt-Sektion */
.section.contact {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--bg);
}

/* Hinweistext */
.section.contact p {
  font-size: 1.1rem;
  color: var(--primary-text);
  margin-bottom: 1rem;
}

/* Zentrierter Button für E-Mail */
.section.contact .button.primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  font-size: 1rem;
  color: white;
  background: var(--primary);
  border: none;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.section.contact .button.primary:hover {
  background: var(--secondary);
  color: var(--primary-text);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Optional: kleine Animation für den Hover-Effekt */
.section.contact .button.primary:active {
  transform: translateY(0px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Falls du die E-Mail-Zeile zusätzlich hervorheben willst */
.section.contact .centered {
  margin-top: 1rem;
}


.footer {
  background: #f1f1f1;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #555;
}

.footer a {
  color: var(--primary-text);
  text-decoration: none;
}

.canvas-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(2px);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}
.hero h1,
.hero .claim,
.hero .intro {
  text-shadow: 0 0 6px rgba(230, 230, 230, 0.9);
}

/* style.css */

.logo-swiper {
  padding: 2rem 0;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

/* Ergänze in style.css */

.logo-swiper .swiper-slide {
  /* filter: grayscale(100%); */
  background: var(--accent-1);
  padding: 1rem 1.5rem;
  border-radius: 1.5rem 0.5rem 1.5rem 0.5rem; /* einseitig rund */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100px;
  min-width: 200px;
  max-width: 220px;
  margin: 1rem auto;

  text-align: center;
  gap: 0.5rem;
  transition: transform 0.3s;
}

.logo-swiper .swiper-slide:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.logo-swiper svg,
.logo-swiper img {
  max-height: 48px;
  max-width: 100%;
  object-fit: contain;
}

.logo-swiper .swiper-slide:not(:has(svg, img)) {
  font-weight: bold;
  font-size: 1.5rem;
  color: white;
}
