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

body {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  background: #f9f9fb;
  color: #1a1a1a;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

/* HEADER */
.header {
  background: #ffffff;
  padding: 20px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 26px;
  font-weight: 700;
}
.nav a {
  margin-left: 24px;
  text-decoration: none;
  color: #222;
  font-weight: 600;
  transition: 0.3s;
}
.nav a:hover {
  opacity: 0.6;
}

/* HERO */
.hero {
  background-size: cover;
  background-position: center;
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
}
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.hero-content {
  position: relative;
  text-align: center;
  color: white;
  max-width: 800px;
}
.title-large {
  font-size: 56px;
  font-weight: 800;
}
.subtitle {
  margin-top: 18px;
  font-size: 20px;
  opacity: 0.9;
}
.hero-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.btn-primary,
.btn-secondary {
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s;
}
.btn-primary {
    border: 2px solid rgb(0, 0, 0);
  color: rgb(0, 0, 0);
  background: transparent;

}
.btn-secondary {
  border: 2px solid white;
  color: white;
  background: transparent;
}
.btn-secondary:hover {
  background: white;
  color: black;
}

#Ich{
  width: 300px;
  height: auto;
  border-radius: 20px;
}

/* SECTION BASE */
section {
  padding: 90px 0;
}
.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}
.centered {
  text-align: center;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.feature-list {
  margin: 20px 0;
  list-style: none;
}
.feature-list li {
  padding-left: 22px;
  position: relative;
  font-weight: 600;
}
.feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #000;
}

.img-lg,
.img-sm {
  background: #eaeaea;
  border-radius: 12px;
}
.img-lg {
  height: 300px;
}
.img-sm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.img-sm {
  height: 140px;
}

/* WHY */
.why {
  background: #ffffff;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.why-card {
  background: #f3f3f3;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  transition: 0.3s;
}
.hover-rise:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* PORTFOLIO */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.portfolio-item {
  background: #eaeaea;
  height: 220px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  transition: 0.3s;
}
.hover-zoom:hover {
  transform: scale(1.04);
}

/* LEISTUNGEN */
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}
.card {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* CONTACT */
.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
}
input,
textarea {
  padding: 14px;
  border-radius: 8px;
  outline: none;
  border: 1px solid #ccc;
  font-size: 16px;
}
textarea {
  resize: none;
  height: 160px;
  font-family: Arial, Helvetica, sans-serif;
}

/* FOOTER */
.footer {
  background: #ffffff;
  padding: 70px 0 30px;
  border-top: 1px solid #e0e0e0;
}


.insta-btn img {
    width: 20px;
    height: auto;
    transition: 0.2s;
  }
  .insta-btn img:hover {
    opacity: 0.7;
    transform: scale(1.05);
  }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
footer a {
  text-decoration: none;
  color: #333;
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  animation: fadeIn 1.2s forwards;
}
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s forwards;
}
.float-up {
  opacity: 0;
  transform: translateY(30px);
  animation: floatUp 1.4s forwards;
}
.float-up-delay {
  opacity: 0;
  transform: translateY(30px);
  animation: floatUp 1.6s forwards;
}
.float-up-delay2 {
  opacity: 0;
  transform: translateY(30px);
  animation: floatUp 1.8s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes floatUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .about-grid,
  .why-grid,
  .portfolio-grid,
  .leistungen-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .title-large {
    font-size: 42px;
  }
}