
*,
*::before,
*::after {
    box-sizing: border-box;
}



html, body{
    margin: 0;
    padding: 0;
    font-family: inter, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 400;
    background-color: rgb(49, 49, 49);
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
    
}

/* =========================
   MAIN 1 (Hero)
   ========================= */

.desktop-only .main-1{
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;

    position: relative; /* 🔑 nötig für ::after */

    background: url(pics/1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 🔥 Schatten NUR nach unten */
.desktop-only .main-1::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -50px;            /* schiebt Schatten in main-2 */
    width: 100%;
    height: 50px;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0)
    );

    pointer-events: none;
}

/* =========================
   NAVBAR
   ========================= */

.desktop-only .logo{
    font-size: 3.5rem;
    letter-spacing: 5px;
    
    margin: 0;
}

.desktop-only .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 20px 50px;
    color: rgb(44, 44, 44);
    position: relative;
}

.desktop-only .navbar a{
  text-decoration: none;
  color: #2b2b2b;
}

.desktop-only .navbar::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -30px;            /* schiebt Schatten in main-2 */
    width: 100%;
    height: 30px;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.5),
        rgba(0,0,0,0)
    );

    pointer-events: none;
}

.desktop-only .nav-links {
    width: 700px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    font-size: 1rem;
    font-weight: 500;
    color: rgb(44, 44, 44);
}

.desktop-only .nav-links a {
    display: inline-block;
    color: rgb(44, 44, 44);
    text-decoration: none;
    transition: transform 200ms ease;
}

.desktop-only .nav-links a:hover {
    transform: scale(1.05);
}

/* =========================
   BUTTON
   ========================= */

.desktop-only .buy-btn{
    padding: 10px 20px;
    border-style: none;
    border-radius: 7px;
    font-size: 1rem;
    font-weight: 600;

    color: white;
    background-color: rgb(0, 173, 253);
    border: solid 3px rgb(0, 173, 253);

    cursor: pointer;
    transition: all 300ms ease;

    /* 🔥 leichter Shadow */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.397);
}

.desktop-only .buy-btn:hover{

    transform: scale(1.08);
    box-shadow: 0 0px 15px rgba(0, 0, 0, 0.397);
}

/* =========================
   MAIN 2
   ========================= */

.desktop-only .main-2{
    margin: 0;
    padding: 0;
    background-color: rgb(44, 44, 44);

    min-height: 60vh;
    width: 100%;

    display: flex;
}

/* =========================
   CHILD 1 (Images)
   ========================= */

.desktop-only .main-2 .child-1{
    width: 50%;
}

.desktop-only .main-2 .image-crossfade {
    position: relative;
    width: 100%;
    height: 100%;
    
}

.desktop-only .main-2 .image-crossfade .img {
    object-fit: contain;
    margin: 30px 0;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: opacity 1.0s ease;
}

.desktop-only .main-2 .img-front {
    opacity: 1;
}

.desktop-only .main-2 .img-back {
    opacity: 0;
}

/* =========================
   CHILD 2 (Text)
   ========================= */

.desktop-only .main-2 .child-2{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.desktop-only .main-2 .child-2 h2 {
  font-family: helvetica;
    font-size: 4rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 2px #fff;
    letter-spacing: 0.04em;
    margin-bottom: 0;
}

.desktop-only .main-2 .child-2 h2 span {
    color: #fff;
    -webkit-text-stroke: 0;
}

.desktop-only .main-2 .child-2 p{
    color: white;
    font-size: 1.2rem;
    text-align: justify;
    max-width: 600px;
}

.desktop-only .main-2 .child-2 a{
    text-decoration: none;
    color: rgb(0, 173, 253);
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 10px;
}


/* =========================
   MAIN 3 (Text + Video)
   ========================= */

.desktop-only .main-3{
     margin: 0;
    padding: 0;
    background-color: rgb(44, 44, 44);

    min-height: 60vh;
    width: 100%;

    display: flex;
}

/* Text links */
.desktop-only .main-3 .child-1{
    width: 50%;
    padding: 80px;
    color: white;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.desktop-only .main-3 .child-1 h2{
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-left: 6vw;
}

.desktop-only .main-3 .child-1 span{
  font-size: 2rem;
    font-weight: 800;
}





.desktop-only .main-3 .child-1 p{
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    opacity: 0.9;
}

/* Video rechts */
.desktop-only .main-3 .child-2 {
    width: 50%;
    position: relative;
    
    z-index: 2;
}

.desktop-only .feature-video {
    width: 100%;
    height: 100%;
    object-fit: cover;

    mask-image: radial-gradient(
        ellipse at center,
        rgba(0,0,0,1) 70%,
        rgba(0,0,0,0) 100%
    );

    transform: translateY(-80px); /* 🔑 overlap nach oben */
}





.desktop-only .main-4{
    margin: 0;
    padding: 0;
    background-color: rgb(44, 44, 44);

    min-height: 50vh;
    width: 100%;

    display: flex;
}

.desktop-only .main-4 .child-1{
  width: 50%;
  transform: translateY(-150px); /* 🔑 overlap nach oben */
}

.desktop-only .main-4 .child-1 img{
  width: 100%;
  object-fit: contain;
}

.desktop-only .main-4 .child-2{
  transform: translateY(-170px); /* 🔑 overlap nach oben */
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.desktop-only .main-4 .child-2 h2{
    color: #fff;
    font-size: 4.0rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-left: 100px;
}



.desktop-only .main-5{
    margin: 0;
    padding: 0;
    background-color: rgb(44, 44, 44);

    height: 50vh;
    width: 100%;

    display: flex;
}

.desktop-only .main-5 .child-2{
  width: 50%;
  transform: translateY(-170px); /* 🔑 overlap nach oben */
  display: flex;
  justify-content: start;
  align-items: center;
}

.desktop-only .main-5 .child-2 img{
  width: 50%;
  margin-left: 100px;
  object-fit: contain;
}

.desktop-only .main-5 .child-1{
  transform: translateY(-160px); /* 🔑 overlap nach oben */
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
}

.desktop-only .main-5 .child-1 h2{
    color: #fff;
    font-size: 4.0rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-right: 50px;
}



.desktop-only .main-7{
  width: 100%;
  padding: 30px 60px;
  box-sizing: border-box;
  background-color: rgb(44, 44, 44);

  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

/* exakt 3 Bilder pro Reihe */
.desktop-only .main-7 img{
  width: calc((100% - 2 * 18px) / 3); /* 🔑 3 Spalten = 2 Gaps */

  aspect-ratio: 16 / 9;
  height: auto;

  object-fit: cover;
  border-radius: 12px;
  display: block;
  transition: all 300ms ease;
}

.desktop-only .main-7 img:hover{
  transform: scale(1.02);
}



/* =========================
   FOOTER
   ========================= */

.footer{
  background-color: rgb(32, 32, 32);
  color: rgba(255,255,255,0.85);
}

/* 👉 ZENTRIERTER FOOTER-INHALT */
.footer-inner{
  max-width: 1200px;          /* 🔑 enger = wirkt mittiger */
  margin: 0 auto;
  padding: 80px 0px;

  display: flex;
  justify-content: center;    /* 🔑 alles zur Mitte */
  gap: 100px;                 /* 🔑 mehr Luft zwischen Spalten */
  flex-wrap: wrap;
  text-align: left;
}

/* Columns */
.footer-col{
  min-width: 180px;
}

/* Brand extra zentrieren */
.footer-col.brand{
  text-align: center;
  max-width: 360px;
}

.footer-col h4{
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #fff;
}

.footer-col ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li{
  margin-bottom: 12px;
}

.footer-col a{
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: opacity 200ms ease;
}

.footer-col a:hover{
  opacity: 1;
}

/* Brand */
.footer-logo{
  font-size: 2rem;
  letter-spacing: 6px;
  margin-bottom: 20px;
}

.footer-col.brand p{
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Bottom bar */
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 60px;
  font-size: 0.85rem;
  text-align: center;
  color: rgba(255,255,255,0.5);
}

.burger{
  display: none;
  width: 32px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.burger span{
  height: 3px;
  background: rgb(44,44,44);
  border-radius: 2px;
}


.desktop-only{
    display: block;
}



.desktop-only{
  display: block;
}





/* =========================
   MOBILE CONTENT
   ========================= */



.mobile-only {
    display: none;
    position: relative; /* ⬅️ Anker für absolute Menu */
}

/* =========================
   HEADER (NORMAL FLOW)
   ========================= */

.mobile-only header {
    position: relative; /* ⬅️ wichtig */
    width: 100%;
    height: 80px;
    background-color: #fff;
    z-index: 10;
}

.mobile-only header nav {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.mobile-only header nav a{
  text-decoration: none;
  color: #1b1b1b;
}

/* =========================
   BURGER
   ========================= */

.burger {
    position: relative;
    width: 28px;
    height: 20px;
    cursor: pointer;
    display: block;
}

.burger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #111;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 9px; }
.burger span:nth-child(3) { bottom: 0; }

.burger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.burger.active span:nth-child(2) {
    opacity: 0;
}
.burger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* =========================
   MOBILE MENU (NO FLOW!)
   ========================= */

.mobile-menu {
    position: absolute;          /* ⬅️ AUS DEM FLOW */
    top: 80px;                   /* ⬅️ direkt unter Header */
    left: 0;
    width: 100%;
    background-color: #fff;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;

    padding: 24px;
    box-sizing: border-box;

    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;

    transition: all 0.25s ease;
    z-index: 9;
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu a {
    text-decoration: none;
    color: #0e1116;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 0;
}

/* =========================
   MAIN 1
   ========================= */

.mobile-only .main-1 {
    position: relative;
    height: calc(100vh - 80px);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}



.mobile-only .main-1 .bg {
    position: absolute;
    inset: 0;
    background-image: url("pics/1.png");
    background-size: cover;
    background-position: center;
    filter: blur(20px);
    transform: scale(1.2);
    z-index: 0;
}

.mobile-only .main-1 .content {
    position: relative;
    z-index: 1;
}

/* =========================
   CARD
   ========================= */

.realops-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.realops-card h2 {
    letter-spacing: 6px;
    font-size: 4rem;
    margin: 0;
}

.realops-card p {
    margin: 8px 0 0 0;
}

.realops-card .buy-btn {
    margin-top: 20px;
    padding: 10px 20px;
    border: solid 3px rgb(0, 173, 253);
    border-radius: 7px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background-color: rgb(0, 173, 253);
    cursor: pointer;
    transition: all 300ms ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.397);
}

/* =========================
   MAIN 2
   ========================= */

.mobile-only .main-2 {
    width: 100%;
    padding: 40px 30px;
    box-sizing: border-box;
    background-color: rgb(44, 44, 44);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0px;
}

/* =========================
   TEXT
   ========================= */

.mobile-only .main-2 .child-2 {
    width: 100%;
}

.mobile-only .main-2 .child-2 h2 {
    font-family: helvetica;
    font-size: 2rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    letter-spacing: 0.04em;
    margin: 0;
}

.mobile-only .main-2 .child-2 h2 span {
    color: #fff;
    -webkit-text-stroke: 0;
}

.mobile-only .main-2 .child-2 a {
    text-decoration: none;
    color: rgb(0, 173, 253);
    font-size: 1.0rem;
    font-weight: 600;
    margin-top: 10px;
}

/* =========================
   IMAGE
   ========================= */

.mobile-only .main-2 .child-1 {
    width: 100%;
    height: 26vh;
    max-height: 260px;
}

.mobile-only .main-2 .image-crossfade {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 16px 0;
}

.mobile-only .main-2 .image-crossfade .img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 1s ease;
}

.img-front { opacity: 1; }
.img-back { opacity: 0; }


.mobile-only .main-3 {
    width: 100%;
    padding: 0px 30px;
    box-sizing: border-box;
    background-color: rgb(44, 44, 44);
    overflow-x: hidden;
    
}

.mobile-only .main-3 h2{
    color: #fff;
    font-size: 2rem;
    text-align: center;
    margin: 0;
    z-index: 4;
}

.mobile-only .main-3 .child-2{
    height: 400px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 10px;
    padding-top: 50px;
}

.mobile-only .main-3 .container{
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.247);
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.mobile-only .main-3 .container h3{
    margin: 0;
    font-size: 1rem;
}



.mobile-only .feature-video {
    position: absolute;
    left: 26vw;
    transform: none;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    mask-image: radial-gradient(
        ellipse at center,
        rgba(0,0,0,1) 70%,
        rgba(0,0,0,0) 100%
    );
}


.mobile-only .main-4{
    position: relative;
    width: 100%;
    height: 30vh;
    padding: 100px 30px;
    box-sizing: border-box;
    background-color: rgb(44, 44, 44);
    margin-top: -40px;
    transform: none;
    
}

.mobile-only .main-4 .child-1{
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.mobile-only .main-4 .child-1 img{
    object-fit: contain;
    transform: translate(-100px);
    width: 100%;
    height: 100%;
}

.mobile-only .main-4 .child-2{
    position: absolute;
    right: 30px;
    z-index: 100;
    color: #fff;
}

.mobile-only .main-4 .child-2 h2{
    margin: 0;
    text-shadow: -2px 2px 5px rgba(0, 0, 0, 0.658);
}


.mobile-only .main-5{
    position: relative;
    width: 100%;
    height: 30vh;
    box-sizing: border-box;
    background-color: rgb(44, 44, 44);
    
}

.mobile-only .main-5 .child-1{
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.mobile-only .main-5 .child-1 img{
    object-fit: contain;
    width: 40%;
    height: 80%;
    transform: translateX(220px);
}

.mobile-only .main-5 .child-2{
    position: absolute;
    left: 50px;
    top: 45px;
    z-index: 100;
    color: #fff;
}

.mobile-only .main-5 .child-2 h2{
    margin: 0;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.658);
}


.mobile-only .main-7{
  width: 100%;
  padding: 10px 30px;
  padding-bottom: 50px;
  box-sizing: border-box;
  background-color: rgb(44, 44, 44);

  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

/* exakt 3 Bilder pro Reihe */
.mobile-only .main-7 img{
  width: 45%;

  aspect-ratio: 16 / 9;
  height: auto;

  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.35),
    0 1px 3px rgba(0, 0, 0, 0.25);

  object-fit: cover;
  border-radius: 10px;
  display: block;
  transition: all 300ms ease;
}

.mobile-only .main-7 img:hover{
  transform: scale(1.02);
}

/* =========================
   BREAKPOINT
   ========================= */



@media (max-width: 1250px){
  .desktop-only{
    display: none;
  }

  .mobile-only{
    display: block;
  }

  /* =========================
     FOOTER – MOBILE
     ========================= */

  .footer-inner{
    padding: 50px 24px;
    gap: 40px;

    flex-direction: column;     /* 🔑 untereinander */
    align-items: center;        /* 🔑 horizontal zentriert */
    text-align: center;         /* 🔑 Text mittig */
  }

  .footer-col{
    min-width: unset;
    width: 100%;
    max-width: 360px;
  }

  .footer-col ul{
    align-items: center;
  }

  .footer-col li{
    margin-bottom: 10px;
  }

  .footer-col h4{
    margin-bottom: 16px;
  }

  /* Brand bleibt schön mittig */
  .footer-col.brand{
    text-align: center;
    max-width: 420px;
  }

  /* Bottom Bar kompakter */
  .footer-bottom{
    padding: 16px 24px;
    font-size: 0.8rem;
  }
}