
*,
*::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{
    width: 100%;
    margin: 0;
    padding: 0;

    position: relative; /* 🔑 nötig für ::after */

    background-color: #2b2b2b;
}



/* =========================
   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);
}

.imprint{
  padding: 26px;
  background-color: #2b2b2b;
}

.imprint h1, h2 {
            color: #ffffff;
        }

       .imprint h1 {
            margin-bottom: 30px;
        }

       .imprint h2 {
            margin-top: 50px;
            margin-bottom: 15px;
        }

       .imprint p {
            margin: 0 0 12px 0;
            color: #fff;
        }

       .imprint a {
            color: #5fa8ff;
            text-decoration: none;
        }

        .imprint li{
          color: #fff;
        }

       .imprint a:hover {
            text-decoration: underline;
        }

       .imprint .divider {
            margin: 60px 0;
            height: 1px;
            background: rgba(255,255,255,0.1);
        }



/* =========================
   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;
}



/* =========================
   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;
  }
}