* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: white;
  background: #000;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 1);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

/* NAV */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 10%;
  padding-right: 4%;
  padding-top: 2px;
  padding-bottom: 2px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 5px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: 0.3s;
  border: 2px solid rgb(255, 255, 255);
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 25px;
  padding-right: 25px;
}

.nav-links a:hover {
  color: #3996ff;
  border-color: #3996ff;
}

.logo img {
  height: 50px;
  width: auto;
}

/* HERO */
.hero {
  height: 100vh;
  padding-top: 40px;
  background: linear-gradient(
    to bottom,
    #1d0eec 0%,
    #2972a7 40%,
    #1c4966 70%,
    #122bbb 100%
  );
}

.hero-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hero-text {
  padding-top: 40px;
  padding-left: 5%;
  text-align: left;
  font-weight: bold;
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.4rem;
  color: #ffffff;
}

.hero-image {
  flex: 1;
  width: 100%;
  overflow: hidden;
}

.hero-image img {
  padding-top: 1%;
  padding-left: 7%;
  padding-right: 7%;
  padding-bottom: 1%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-1 {
  height: 100vh;
  background-color: #000000;
  padding-top: 5vh;
  padding-bottom: 5vh;
}

.section-2 {
  height: 100vh;
  background-color: #000000;
}

.content {
  max-width: 800px;
}

.content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.content p {
  font-size: 1.2rem;
}

/* SECTION 1 CUSTOM */
.section-about {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.section1-wrapper {
  width: 100%;
  max-width: 1450px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10vh;
}

/* Überschrift oben mittig */
.section1-top {
  text-align: center;
  padding-top: 10px;
}

.section1-top h2 {
  font-size: 4rem;
  font-weight: 800;
}

/* 3 Spalten */
.section1-middle {
  width: 100%;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5vh;
  align-items: start;
}

.info-box h3 {
  font-size: 2rem;
  margin-bottom: 3vh;
  font-weight: 600;
}

.info-box p {
  font-size: 1rem;
  line-height: 2.5vh;
  color: #f2f2f2;
}

/* Unterer Bereich */
.section1-bottom {
  min-height: 40vh;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}

/* Links unten: Bildfenster */
.image-window {
  width: 68%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  background-image: url("images/Section1Img.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

/* Rechts unten: Button */
.section1-cta {
  width: 32%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 5vh;
  padding-left: 20vh;
}

.section-btn {
  display: inline-block;
  text-decoration: none;
  color: #0b4cff;
  font-size: 2.3rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  transition: transform 0.25s ease, color 0.25s ease;
  position: relative;
  padding-bottom: 10vh;
}

.section-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 48px;
  height: 48px;
  border-right: 12px solid #0b4cff;
  border-bottom: 12px solid #0b4cff;
  transform: translateX(-50%) rotate(45deg);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.section-btn:hover {
  transform: translateY(4px);
}

.section-btn:hover::after {
  transform: translateX(-50%) rotate(45deg) scale(1.05);
}

/* SECTION 2 */
.section-offers {
  height: 100vh;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.section2-frame {
  width: 100%;
  max-width: 1700px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 0 18px;
  padding-top: 60px;
  padding-bottom: 20px;
}

.section2-topline,
.section2-bottomline,
.section2-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
}

.section2-main {
  flex: 1;
  display: flex;
  justify-content: center;   /* horizontal mittig */
  align-items: flex-start;       /* vertikal mittig */
  padding: 10px 20px 14px;
}

/* Wrapper */
.offers-center {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Titel */
.offers-center h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 30px;
}

/* GRID */
.offers-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

/* CARDS */
.offer-card {
  min-height: 290px;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 14px 12px 12px;
  border: 1px solid #00f5f5;
}

/* ICON */
.offer-icon {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: #eaeaea;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.offer-icon span {
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1;
  color: #0b990b;
}

.offer-icon--yes {
  border: 8px solid #0b990b;
}

/* TEXT */
.offer-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.15;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-card p {
  font-size: 0.88rem;
  line-height: 1.35;
  color: #fff;
  max-width: 95%;
}

.section2-footer {
  height: 165px;
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.9fr;
  align-items: center;
  padding: 0 20px;
  gap: 20px;
}

.footer-company h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.footer-company p {
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-cta {
  text-align: center;
}

.footer-cta h3 {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.05;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  height: 100%;
  padding: 40px 0;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-links p {
  margin-top: auto;
  font-size: 0.95rem;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: leicht verzögert für schöneren Effekt */
.reveal-delay-1 {
  transition-delay: 0.15s;
}

.reveal-delay-2 {
  transition-delay: 0.3s;
}

.reveal-delay-3 {
  transition-delay: 0.45s;
}

.reveal-delay-4 {
  transition-delay: 0.6s;
}

/* IMPRESSUM SECTION */
.impressum-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  padding-top: 60px;
}

/* Container */
.impressum-container {
  max-width: 1100px;
  width: 100%;
}

/* Titel */
.impressum-container h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

/* Einleitung */
.impressum-intro {
  font-size: 1.1rem;
  margin-bottom: 50px;
  color: #d1d5db;
}

/* GRID (wie Section Struktur) */
.impressum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

/* Box Titel */
.impressum-grid h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

/* Texte */
.impressum-grid p {
  font-size: 1rem;
  margin-bottom: 5px;
  color: #e5e7eb;
}

/* Links */
.impressum-container a {
  color: #60a5fa;
  text-decoration: none;
}

.impressum-container a:hover {
  text-decoration: underline;
}

/* Rechtstext */
.impressum-text {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}

.impressum-text h3 {
  margin-bottom: 15px;
}

.impressum-text p {
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.6;
  color: #cbd5f5;
}

/* Footer Bereich */
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.9rem;
  color: #9ca3af;
}

/* DATENSCHUTZ SECTION */
.datenschutz-section {
  display: flex;
  justify-content:center;
  align-items:flex-start;
  text-align: center;
  padding-top: 60px;
}

/* Container */
.datenschutz-container {
  max-width: 80%;
}

/* Titel */
.datenschutz-container h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

/* Einleitung */
.datenschutz-intro {
  font-size: 1.1rem;
  margin-bottom: 50px;
  color: #d1d5db;
}

/* GRID */
.datenschutz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

/* Grid Titel */
.datenschutz-grid h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

/* Grid Texte */
.datenschutz-grid p {
  font-size: 1rem;
  margin-bottom: 5px;
  color: #e5e7eb;
  line-height: 1.6;
}

/* Links */
.datenschutz-container a {
  color: #60a5fa;
  text-decoration: none;
}

.datenschutz-container a:hover {
  text-decoration: underline;
}

/* Fließtext */
.datenschutz-text {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}

.datenschutz-text h3 {
  margin-top: 25px;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.datenschutz-text p {
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.6;
  color: #cbd5f5;
}

/* Liste */
.datenschutz-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 25px;
}

.datenschutz-list li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #e5e7eb;
}

/* Footer Bereich */
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.9rem;
  color: #9ca3af;
}