/* Globale Stile für alle Seiten */

body {
    background-color: #0C0C16;
    color: #ffffff;
    font-family: Arial, sans-serif;
    margin: 0;
    text-align: center;
}

/* Container für den Hauptinhalt */
.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

h1, h2, h3 {
    margin-top: 0;
}

p {
    color: #cccccc;
    line-height: 1.6;
}

a {
    color: #3b3bff;
}

/* Farbe für besuchte Links */
a:visited {
    color: #9d75ff;
}

/* Header Sektion */
.header {
    background-color: #111136;
    height: 90px;
    position: relative;
}

.logo-link {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 30px;
}

.header img {
    height: 100px;
    display: block;
}

/* Startseite */
.hero {
    background-image: url('../images/produkte/Hintergrund.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0px;
    box-sizing: border-box;
}

.hero-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Allgemeine Button Stile */
.button {
    display: inline-block;
    background-color: #3b3bff;
    color: #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
}
.button:visited {
    color: #ffffff;
}

/* Produkte */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    align-items: stretch;
}

.product-card {
    background-color: #111136;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
}
.product-card img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
    margin: 15px 0;
}
.product-card h3 {
    margin-bottom: 20px;
}
.product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}
.buy-button {
    display: flex;
    align-items: center;
    background-color: #3b3bff;
    color: #ffffff;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9em;
}
.buy-button:visited {
    color: #ffffff;
}
.buy-button .icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

/* Filter-Buttons auf der "All Products"-Seite */
.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    background-color: #1c1c4b;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}
.filter-btn.active {
    background-color: #3b3bff;
}

/* Banner und Links */
.quality-banner {
    background-color: #111136;
    border: 1px solid #3b3bff;
    border-radius: 8px;
    padding: 20px;
    margin: 40px auto;
}
.quality-banner p {
    margin: 0;
    font-size: 1.1em;
}
.quality-banner a {
    color: #ffffff;
    font-weight: bold;
    text-decoration: underline;
}
.quality-banner a:visited {
    color: #c5b3ff;
}

.page-link {
    display: inline-block;
    margin-top: 50px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2em;
}
.page-link .icon {
    width: 24px;
    height: 24px;
    display: block;
    margin: 10px auto 0;
}

/* Features Seite */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 50px;
}
.feature-item .icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Footer-Bereich */
footer {
    background-color: #111136;
    padding: 20px 20px 50px 20px; /* Für Disclaimer */
    margin-top: 40px;
    position: relative; 
}

.footer-nav {
    margin-bottom: 20px;
}
.footer-nav p {
    color: #cccccc;
    font-size: 1.1em;
    margin: 0;
}
.footer-nav a {
    color: #ffffff;
    font-weight: bold;
    text-decoration: underline;
}
.footer-nav a:visited {
    color: #c5b3ff;
}

.social-icons .icon {
    width: 30px;
    height: 30px;
}

/* Footer für Startseite */
footer.hero-footer {
    background-color: transparent;
    border-top: none;
}

footer.hero-footer .footer-nav {
    display: none;
}
/*Disclaimer unten rechts*/
.disclaimer {
    font-size: 0.8em;
    position: absolute;
    bottom: 20px;
    right: 20px;
}