@import url('fonts.css');

/* Farbvariablen */
:root {
  --dark-purple: #350236;
  --light-grey: #F7F7F7;
  --text-color: #350236;
  --white: #ffffff;
}

/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: var(--light-grey);
  color: var(--text-color);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #888;
}

/* Header */
.header {
  background-color: var(--white);
  padding: 40px 20px;
  text-align: center;
}

.logo {
  width: 250px;
  height: auto;
}

/* Sections */
.section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}



.text-block {
  flex: 1;
  padding: 20px;
}

.text-block h2 {
  font-size: 36px;
  font-weight: 100;
  color: var(--dark-purple);
  margin-bottom: 20px;
}

.text-block p {
  font-size: 16px;
  font-weight: 300;
}

.image-block {
  flex: 1;
  padding: 20px;
}

.image-block img {
  width: 100%;
  border-radius: 6px;
}

/* Features Section */
.features {
  background-color: var(--white);
  padding: 60px 20px;
}

.features h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 100;
  margin-bottom: 40px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-item {
  background-color: var(--light-grey);
  padding: 20px;
  flex: 1 1 30%;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 16px;
  font-weight: 300;
}

/* Steps Section */
.steps-section {
  background-color: var(--light-grey);
  padding: 60px 20px;
}

.steps-section h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 100;
  margin-bottom: 40px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  align-items: flex-start;
  background-color: var(--dark-purple);
  color: var(--white);
  flex: 1 1 45%;
  padding: 20px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.step-item:hover {
  background-color: #4a0450;
}

.number-column {
  font-family: 'Great Vibes', cursive;
  font-size: 48px;
  margin-right: 20px;
  min-width: 60px;
  text-align: center;
}

.text-column strong {
  display: block;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.text-column p {
  font-size: 16px;
  font-weight: 300;
}

/* Call-To-Action (Hero Abbinder) */
.cta-hero-fullwidth {
  background-color: var(--dark-purple);
  color: var(--white);
  text-align: center;
  padding: 80px 20px;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-hero-fullwidth h1 {
  font-size: 36px;
  font-weight: 100;
  line-height: 1.4;
  margin-bottom: 20px;
}

.cta-hero-fullwidth p {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  background-color: var(--white);
  color: var(--dark-purple);
  font-size: 16px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
  background-color: #ddd;
  color: var(--dark-purple);
}

/* Footer */
.footer-new {
  background-color: var(--light-grey);
  padding: 20px;
  font-family: 'Montserrat', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-color);
  margin: 0;
}

.footer-slogan {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-color);
  margin: 4px 0 0 0;
}

.footer-right {
  display: flex;
  gap: 20px;
}

.footer-right a {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-right a:hover {
  color: #888;
}

/* Legal Pages (Impressum & Datenschutz) */
.legal-section {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}

.legal-section h1 {
  font-size: 36px;
  font-weight: 100;
  color: var(--dark-purple);
  margin-bottom: 30px;
  text-align: center;
}

.legal-section h2 {
  font-size: 24px;
  font-weight: 300;
  color: var(--dark-purple);
  margin-top: 30px;
  margin-bottom: 10px;
}

.legal-section p {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 15px;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .section {
    flex-direction: column;
  }

  .steps-grid,
  .feature-grid {
    flex-direction: column;
  }

  .step-item,
  .feature-item {
    flex: 1 1 100%;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-right {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
  }

  .cta-hero-fullwidth h1 {
    font-size: 28px;
  }

  .cta-hero-fullwidth p {
    font-size: 16px;
  }
}
