* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    background: #050816;
    overflow-x: hidden;
}


/* =========================
   HINTERGRUND
========================= */

.background {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 20% 20%,
            #389b24,
            transparent 35%
        ),
        radial-gradient(
            circle at 80% 70%,
            #761bb4,
            transparent 35%
        ),
        #050816;
}

.blob {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 10s infinite alternate;
}

.blob1 {
    background: #00d4ff;
    top: 5%;
    left: 5%;
}

.blob2 {
    background: #a855f7;
    right: 5%;
    top: 30%;
    animation-delay: 2s;
}

.blob3 {
    background: #2563eb;
    bottom: -100px;
    left: 40%;
    animation-delay: 4s;
}

@keyframes float {

    from {
        transform: translateY(0) translateX(0);
    }

    to {
        transform: translateY(-80px) translateX(60px);
    }
}


/* =========================
   GLASS DESIGN
========================= */

.glass {
    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.18);

    backdrop-filter: blur(20px);

    -webkit-backdrop-filter: blur(20px);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.35),
        inset 0 1px 1px rgba(255, 255, 255, 0.15);
}


/* =========================
   NAVIGATION
========================= */

.navbar {
    width: 90%;
    max-width: 1200px;

    margin: 25px auto;

    padding: 18px 25px;

    border-radius: 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: sticky;
    top: 20px;

    z-index: 100;
}

.logo {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 2px;
}

.logo span,
footer span {
    color: #66e7ff;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: 0.3s;
}

nav a:hover {
    opacity: 1;
    color: #66e7ff;
}

.nav-button {
    color: white;
    text-decoration: none;

    padding: 10px 18px;

    border-radius: 12px;

    background: rgba(255,255,255,0.12);

    border: 1px solid rgba(255,255,255,0.2);
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 90vh;

    max-width: 1200px;

    margin: auto;

    padding: 80px 30px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 50px;
}

.small-title {
    color: #66e7ff;

    font-size: 13px;

    font-weight: bold;

    letter-spacing: 3px;

    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(50px, 7vw, 90px);

    line-height: 0.95;

    margin-bottom: 30px;
}

.hero h1 span {
    background: linear-gradient(
        90deg,
        #66e7ff,
        #a855f7
    );

    -webkit-background-clip: text;

    color: transparent;
}

.description {
    max-width: 500px;

    font-size: 18px;

    line-height: 1.7;

    opacity: 0.75;

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.main-button,
.second-button,
.buy-button {
    display: inline-block;

    text-decoration: none;

    color: white;

    padding: 15px 25px;

    border-radius: 14px;

    transition: 0.3s;
}

.main-button {
    background: linear-gradient(
        135deg,
        #00c6ff,
        #7c3aed
    );

    box-shadow:
        0 10px 30px rgba(0, 198, 255, 0.3);
}

.main-button:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 40px rgba(124, 58, 237, 0.5);
}

.second-button {
    border: 1px solid rgba(255,255,255,0.2);

    background: rgba(255,255,255,0.08);
}


/* =========================
   3D PRODUKT
========================= */

.hero-product {
    perspective: 1100px;

    display: flex;

    justify-content: center;
}

.product-3d {
    width: 480px;
    height: 480px;

    border-radius: 35px;

    padding: 20px;

    transform:
        rotateY(-12deg)
        rotateX(8deg);

    transition: 0.6s;

    animation: productFloat 5s ease-in-out infinite;
}

.product-3d:hover {
    transform:
        rotateY(0deg)
        rotateX(0deg)
        scale(1.05);
}

.product-3d img {
    width: 100%;
    height: 75%;

    object-fit: cover;

    border-radius: 25px;
}

.product-info {
    padding: 15px;
}

.product-info span {
    font-size: 11px;

    color: #66e7ff;
}

.product-info h3 {
    margin: 5px 0;
}

.product-info p {
    color: #66e7ff;
    font-weight: bold;
}

@keyframes productFloat {

    0%, 100% {
        transform:
            rotateY(-12deg)
            rotateX(8deg)
            translateY(0);
    }

    50% {
        transform:
            rotateY(-12deg)
            rotateX(8deg)
            translateY(-20px);
    }
}


/* =========================
   PRODUKTE
========================= */

.products {
    max-width: 1200px;

    margin: auto;

    padding: 100px 30px;
}

.section-title {
    text-align: center;

    margin-bottom: 50px;
}

.section-title p {
    color: #66e7ff;

    font-size: 13px;

    letter-spacing: 3px;
}

.section-title h2 {
    font-size: 45px;

    margin-top: 10px;
}

.product-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


/* =========================
   PRODUKT KARTE
========================= */

.card {
    border-radius: 25px;

    overflow: hidden;

    transition: 0.4s;

    transform-style: preserve-3d;
}

.card:hover {
    transform:
        translateY(-12px)
        rotateX(3deg)
        rotateY(-3deg);
}

.image-box {
    height: 240px;

    position: relative;

    overflow: hidden;
}

.image-box img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.5s;
}

.card:hover .image-box img {
    transform: scale(1.08);
}

.badge {
    position: absolute;

    top: 15px;
    left: 15px;

    padding: 7px 12px;

    border-radius: 20px;

    background: rgba(0,0,0,0.5);

    backdrop-filter: blur(10px);

    font-size: 12px;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 24px;

    margin-bottom: 10px;
}

.card-content p {
    opacity: 0.65;

    line-height: 1.6;

    margin-bottom: 20px;
}

.price {
    font-size: 25px;

    font-weight: bold;

    color: #66e7ff;

    margin-bottom: 20px;
}

.buy-button {
    width: 100%;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #00c6ff,
            #7c3aed
        );

    font-weight: bold;
}

.buy-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 30px rgba(124,58,237,0.4);
}


/* =========================
   BESTELLUNG
========================= */

.order {
    max-width: 1000px;

    margin: auto;

    padding: 100px 30px;
}

.order-box {
    padding: 70px 30px;

    border-radius: 30px;

    text-align: center;
}

.order-box h2 {
    font-size: 45px;

    margin-bottom: 20px;
}

.order-box > p:not(.small-title) {
    opacity: 0.7;

    margin-bottom: 30px;
}


/* =========================
   FOOTER
========================= */

footer {
    max-width: 1200px;

    margin: auto;

    padding: 50px 30px;

    display: flex;

    justify-content: space-between;

    gap: 30px;

    border-top: 1px solid rgba(255,255,255,0.1);
}

footer h3 {
    margin-bottom: 10px;
}

footer p {
    opacity: 0.5;
}


/* =========================
   HANDY
========================= */

@media (max-width: 800px) {

    nav {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;

        text-align: center;

        padding-top: 50px;
    }

    .description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .product-3d {
        width: 300px;
        height: 400px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 35px;
    }

    .order-box h2 {
        font-size: 32px;
    }

    footer {
        flex-direction: column;

        text-align: center;
    }
}

/* =========================
   Imoressum und Rechtliches
========================= */

.legal-button {
    position: fixed;

    right: 10px;
    bottom: 10px;

    width: 75px;
    height: 25px;

    background-color: #000;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    border: none;
    padding: 5px;

    border-radius: 6px;

    cursor: pointer;

    text-decoration: none;

    font-size: 9px;
    font-family: Arial, sans-serif;

    z-index: 9999;
}

.legal-button::before {
    content: '';

    position: absolute;

    inset: 0;

    left: -2px;
    top: -1px;

    margin: auto;

    width: 79px;
    height: 32px;

    border-radius: 8px;

    background: linear-gradient(
        -45deg,
        #e81cffd5 0%,
        #40c9ffc0 100%
    );

    z-index: -10;

    pointer-events: none;

    transition: all 0.6s cubic-bezier(
        0.175,
        0.885,
        0.32,
        1.275
    );
}

.legal-button::after {
    content: "";

    z-index: -1;

    position: absolute;

    inset: 0;

    background: linear-gradient(
        -45deg,
        #fc00ff 0%,
        #00dbde 100%
    );

    transform: translate3d(0, 0, 0) scale(0.95);

    filter: blur(10px);
}

.legal-button:hover::after {
    filter: blur(15px);
}

.legal-button:hover::before {
    transform: rotate(-180deg);
}

.legal-button:active::before {
    transform: scale(0.7);
}


/* =========================================
   INSTAGRAM BUTTON
========================================= */

.instagram-btn {
    position: fixed;

    left: 20px;
    bottom: 20px;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    background-color: transparent;

    border-radius: 7px;

    cursor: pointer;
    text-decoration: none;

    z-index: 9999;

    transition: all 0.3s ease;
}


/* Glasfläche */

.instagram-svg-container {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    background-color: rgba(255, 255, 255, 0.04);

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    border-radius: 10px;

    border: 1px solid rgba(156, 156, 156, 0.466);

    transition: all 0.3s ease;

    position: relative;

    z-index: 2;
}


/* Instagram Icon */

.instagram-svg {
    width: 24px;
    height: 24px;

    position: relative;

    z-index: 3;

    transition:
        transform 0.3s ease,
        filter 0.3s ease;
}


/* Instagram Farbverlauf */

.instagram-bg {
    position: absolute;

    width: 100%;
    height: 100%;

    left: 0;
    top: 0;

    background:
        linear-gradient(
            45deg,
            #f09433 0%,
            #e6683c 25%,
            #dc2743 50%,
            #cc2366 75%,
            #bc1888 100%
        );

    z-index: 1;

    border-radius: 9px;

    pointer-events: none;

    transition:
        all 0.3s ease;
}


/* Hover */

.instagram-btn:hover .instagram-bg {
    transform: rotate(35deg);

    transform-origin: bottom;
}

.instagram-btn:hover .instagram-svg-container {
    background-color: rgba(156, 156, 156, 0.466);

    border-color: rgba(255, 255, 255, 0.7);
}

.instagram-btn:hover .instagram-svg {
    transform: scale(1.12);

    filter:
        drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
}


/* Klick */

.instagram-btn:active {
    transform: scale(0.9);
}

.button-link {
  text-decoration: none;
  display: inline-block;
}

.button {
  --white: #ffe7ff;
  --purple-100: #f4b1fd;
  --purple-200: #d190ff;
  --purple-300: #c389f2;
  --purple-400: #8e26e2;
  --purple-500: #5e2b83;
  --radius: 18px;

  border-radius: var(--radius);
  outline: none;
  cursor: pointer;
  font-size: 23px;
  font-family: Arial, sans-serif;
  background: transparent;
  letter-spacing: -1px;
  border: 0;
  position: relative;
  width: 220px;
  height: 80px;
  transform: rotate(353deg) skewX(4deg);
}

.bg {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  filter: blur(1px);
}

.bg::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: calc(var(--radius) * 1.1);
  background: var(--purple-500);
  filter: blur(5px);

  box-shadow:
    -7px 6px 0 rgb(115 75 155 / 40%),
    -14px 12px 0 rgb(115 75 155 / 30%),
    -21px 18px 4px rgb(115 75 155 / 25%),
    -28px 24px 8px rgb(115 75 155 / 15%);
}

.wrap {
  border-radius: inherit;
  overflow: hidden;
  height: 100%;
  transform: translate(6px, -6px);
  padding: 3px;
  background: linear-gradient(
    to bottom,
    var(--purple-100),
    var(--purple-400)
  );
  position: relative;
  transition: 0.3s ease;
}

.content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 100%;
  border-radius: calc(var(--radius) * 0.85);

  font-weight: 600;
  color: var(--white);

  background: linear-gradient(
    to bottom,
    var(--purple-300),
    var(--purple-400)
  );

  box-shadow:
    inset -2px 12px 11px -5px var(--purple-200),
    inset 1px -3px 11px rgb(0 0 0 / 35%);
}

.char {
  color: var(--white);
  text-shadow: -1px 1px 2px var(--purple-500);
}

.icon div {
  position: relative;
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: var(--white);
  transition: 0.3s ease;
}

.icon div::before,
.icon div::after {
  content: "";
  position: absolute;
  right: 0;
  width: 14px;
  height: 3px;
  border-radius: 2px;
  background: var(--white);
}

.icon div::before {
  top: -4px;
  transform: rotate(45deg);
}

.icon div::after {
  bottom: -4px;
  transform: rotate(-45deg);
}

.button:hover .wrap {
  transform: translate(8px, -8px);
}

.button:hover .icon div {
  transform: translateX(5px);
}

.button:active .wrap {
  transform: translate(3px, -3px);
}