/* BREAKPOINTS: Mobile First */
:root {
    --primary-bg: #05080f;
    --accent-cyan: #00f2ff;
    --glass: rgba(15, 23, 42, 0.85);
    --container-width: 1100px;
}

/* Container-Handling */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* HERO Bereich (Responsive) */
.hero {
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(2rem, 8vw, 4rem); /* Skaliert automatisch mit der Bildschirmgröße */
    line-height: 1.1;
}

/* FLOATING CARDS (Responsive Grid) */
.floating-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobil: Eine Spalte */
    gap: 20px;
    margin-top: -60px; /* Der negative Margin für den Überlapp-Effekt */
    position: relative;
    z-index: 10;
}

/* Ab Tablet-Größe (768px) */
@media (min-width: 768px) {
    .floating-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Spalten */
    }
}

/* Ab Desktop-Größe (1024px) */
@media (min-width: 1024px) {
    .floating-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 Spalten */
    }
}