/* Basislayout */
body {
  background: #FFF5EC;
  margin: 0;
  font-family: 'Rubik', sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Top Navigation */
.topnav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 20px 0;
  background: transparent;
}

.topnav .nav-links a {
  margin-left: 30px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1.05rem;
}

.topnav .nav-links a:hover {
  color: #FF6D00;
}

.logo img {
  width: 60px;
  height: auto;
  vertical-align: middle;
}

/* Layout Sektionen */
.section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  box-sizing: border-box;
}

.section-hero {
  background: #FED9B7;
}

.section-how {
  background: #FFF1E0;
}

.section-pricing {
  background: #F8F6F0;
}

.section-cta {
  background: #FFEBD8;
}

.centered {
  max-width: 800px;
  margin: 0 auto;
}

.full-height {
  min-height: 100vh;
}

/* Typografie */
.big-headline {
  font-size: 3.2rem;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 20px;
}

.sub-headline {
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 30px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* Buttons */
.btn {
  background: #FF6D00;
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  margin-top: 20px;
  transition: background 0.3s;
  font-size: 1.1rem;
}

.btn:hover {
  background: #e65c00;
}

/* Preisstruktur */
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.plan {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  background: white;
  border-radius: 15px;
  padding: 20px;
  border: 2px solid #FFD1B3;
  text-align: left;
}

.plan.featured {
  border-color: #FF6D00;
  background: #FFF1E0;
}

.plan h3 {
  margin-top: 0;
}

.price {
  font-size: 1.5rem;
  font-weight: 600;
  color: #FF6D00;
  margin-bottom: 10px;
}

.plan ul {
  list-style: none;
  padding: 0;
}

.plan ul li {
  padding: 5px 0;
}

/* Footer */
.footer {
  background: #FFE0CC;
  text-align: center;
  padding: 40px 20px;
  font-size: 0.9rem;
  color: #666;
}

.footer a {
  color: #333;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 700px) {
  .pricing-table {
    flex-direction: column;
  }

  .big-headline {
    font-size: 2.2rem;
  }

  .sub-headline {
    font-size: 1.1rem;
  }

  .nav-links a {
    margin-left: 15px;
  }

  .container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* AOS Scroll Library */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}
[data-aos].aos-animate {
  opacity: 1;
}
.section-hero {
  background: #FED9B7;
  padding-top: 120px;
}
@keyframes pop {
  0%   { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.hero-logo {
  animation: pop 0.8s ease-out forwards;
}
