* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #111;
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 20;
}

.logo{
    display:flex;
    align-items:center;
    gap:14px;
    color:white;
    text-decoration:none;
}

.logo img{
    height:52px;
    width:auto;
}

.logo span{
    font-size:23px;
    font-weight:500;
    letter-spacing:2px;
    text-transform:none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: white;
}

.contact-btn,
.main-btn {
  background: white;
  color: #111;
  padding: 13px 24px;
  border-radius: 30px;
  font-weight: 600;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 60px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin-top: 60px;
  color: white;
}

.hero-content p:first-child {
  font-size: 18px;
  margin-bottom: 22px;
  opacity: 0.9;
}

.hero-content h1 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.05;
  margin-bottom: 24px;
  font-weight: 600;
}

.hero-content p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 620px;
}

.info-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  padding: 120px 60px;
  align-items: center;
}

.info-text span {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.info-text h2 {
  font-size: 48px;
  margin: 20px 0 50px;
  max-width: 680px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.info-grid h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.info-grid p {
  line-height: 1.6;
  color: #555;
}

.info-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 28px;
}

.contact-section {
  padding: 100px 60px;
  background: #615e5e;
  color: white;
}

.contact-section h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.contact-section p {
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: #ddd;
}

.contact-section a {
  font-size: 22px;
  font-weight: 600;
}

.footer {
  padding: 50px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #080808;
  color: white;
}
.footer-logo{
    display:flex;
    align-items:center;
    gap:14px;
    color:white;
}

.footer-logo img{
    height:118px;
    width:auto;
}

.footer-logo span{
    font-size:20px;
    font-weight:500;
    letter-spacing:2px;
    line-height:1;
    position:relative;
    top:-1px;
}
.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  color: #ddd;
}

@media (max-width: 900px) {
  .header {
    padding: 0 24px;
  }

  .nav {
    gap: 18px;
  }

  .hero {
    padding: 0 24px;
  }

  .info-section {
    grid-template-columns: 1fr;
    padding: 80px 24px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-text h2,
  .contact-section h2 {
    font-size: 36px;
  }

  .footer {
    padding: 40px 24px;
    flex-direction: column;
    gap: 28px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/*Impressum & Datenschutz*/


.legal-page {
  background: #fff;
  color: #111;
}

.legal-hero {
  min-height: 360px;
  background: #615e5e;
  color: white;
  display: flex;
  align-items: flex-end;
  padding: 0 60px 70px;
}

.legal-hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 500;
}

.legal-content {
  max-width: 900px;
  padding: 90px 60px;
}

.legal-content h2 {
  font-size: 24px;
  margin: 38px 0 14px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  line-height: 1.8;
  color: #444;
}

.legal-content a {
  color: #111;
  font-weight: 600;
}

@media (max-width: 900px) {
  .legal-hero {
    padding: 0 24px 60px;
  }

  .legal-content {
    padding: 70px 24px;
  }
}


/*about us*/
.about-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #111;
  color: white;
}

.about-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 60px 80px;
}

.about-hero-text p {
  font-size: 18px;
  margin-bottom: 24px;
  color: #ddd;
}

.about-hero-text h1 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.08;
  font-weight: 500;
  max-width: 700px;
}

.about-hero-image {
  height: 100vh;
  width: 100%;
}

.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-info{
    max-width:1200px;
    margin:auto;
    padding:120px 60px;
}

.about-info span{
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:2px;
}

.about-info h2{
    font-size:clamp(36px,5vw,56px);
    font-weight:500;
    line-height:1.15;
    margin:24px 0 34px;
    max-width:900px;
}

.about-info>p{
    font-size:18px;
    line-height:1.8;
    color:#555;
    max-width:900px;
    margin-bottom:24px;
}

.about-list{
    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.about-list h3{
    font-size:24px;
    margin-bottom:12px;
    font-weight:600;
}

.about-list p{
    color:#666;
    line-height:1.7;
}


@media (max-width: 900px) {
  .about-hero {
    grid-template-columns: 1fr;
  }

  .about-hero-text {
    padding: 130px 24px 60px;
  }

  .about-hero-image {
    height: 55vh;
  }

  .about-info {
    padding: 80px 24px;
  }
.about-list{
    grid-template-columns:1fr;
    gap:30px;
}
}