/* === Globales Reset === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #fff;
    text-align: center;
    background-color: transparent; /* Change background to transparent */
    min-height: 100vh;
    display: flex;
    flex-direction: column; /* Flexbox für vertikale Struktur */
    justify-content: flex-start; /* Inhalt beginnt oben */
    align-items: center;
}

/* === Vanta.js Hintergrund === */
#vanta-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Hintergrund bleibt hinter dem Content */
}

/* === Container für Inhalt === */
.container {
    padding: 20px;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.6); /* Transparenter Hintergrund */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin: 20px auto;
    max-width: 800px;
    width: 100%;
    z-index: 1; /* Über Vanta.js */
}

h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #f3f3f3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

/* === Social Media Links === */
.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 2.5rem; /* Größere Icons */
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px) scale(1.1);
}

/* === Hardware-Liste === */
.hardware-list {
    margin: 20px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: left;
}

.hardware-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, background 0.3s;
}

.hardware-item i {
    font-size: 2rem; /* Größere Icons */
    color: #ffdd57; /* Goldfarbene Icons */
}

.hardware-item a {
    text-decoration: none;
    color: #fff;
    font-size: 1.3rem; /* Größere Schrift */
    transition: color 0.3s;
}

.hardware-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.hardware-item a:hover {
    color: #ffaa00;
}

/* === Zurück-Link === */
.back-link {
    margin-top: 20px;
    text-align: center;
}

.back-link a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #ffdd57; /* Gold */
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.back-link a:hover {
    color: #ffaa00; /* Helles Gold */
    text-decoration: underline;
}

/* === Footer ans Ende der Seite setzen === */

footer {
    position: relative; /* Ändere von fixed auf relative */
    margin-top: auto; /* Damit der Footer am Ende des Inhalts bleibt */
    left: 0; /* Startet links */
    width: 100%; /* Breite über die gesamte Seite */
    text-align: center;
     /*background: rgba(0, 0, 0, 0); /* Dunkler Hintergrund */
    color: rgba(255, 255, 255, 0.6); /* Heller, dezenter Text */
    font-size: 0.6rem; /* Kleinere Schriftgröße */
    padding: 5px 10px; /* Etwas Abstand innen */
    z-index: 2; /* Über Vanta.js Hintergrund */
}

footer p {
    margin: 0;
    line-height: 1.2;
}

footer a {
    color: #ffdd57;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #ffaa00;
    text-decoration: underline;
}

/* === Responsives Design === */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .hardware-item i {
        font-size: 2.5rem;
    }

    .hardware-item a {
        font-size: 1.1rem;
    }

    .back-link a {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .hardware-item i {
        font-size: 2rem;
    }

    .hardware-item a {
        font-size: 1rem;
    }

    footer {
        font-size: 0.8rem;
    }
}
