/* ========== Grundlayout ========== */
body {
    margin: 0;
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    color: #f5f5f5;
    line-height: 1.6;
}

/* ========== Header ========== */
header {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5em; /* Große Schrift für den Header */
    font-weight: 400; /* Normalgewicht für die Bebas Neue Schrift */
    color: #ffffff;
    text-align: center;
    padding: 40px 20px;
}

/* ========== Überschrift im Container ========== */
h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2em;
    font-weight: 700; /* Dicke Schrift für die H2 Überschrift */
    color: #f5f5f5;
    margin-bottom: 15px;
    text-align: center;
}

/* Abstand vor h2-Überschriften */
h2.section-title {
    margin-top: 70px; /* Abstand nach oben anpassen */
}


/* ========== Body und restlicher Text ========== */
body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400; /* Normale Schrift für den Rest der Seite */
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    color: #f5f5f5;
}

/* ========== Navigation ========== */
nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    background-color: #111;
    padding: 15px 10px;
    flex-wrap: wrap;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

nav a {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border: 1px solid transparent;
    border-radius: 30px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05);
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #888;
}

/* ========== Container ========== */
.container {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* ========== Überschriften & Text ========== */
.container h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
    color: #e0e0e0;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.container p {
    font-size: 1.05em;
    color: #ccc;
}

/* ========== Kategorie-Grid ========== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* ========== Kategorie-Items ========== */
.item {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.item img {
    max-width: 100px;
    margin-bottom: 15px;
    filter: brightness(0.9);
    transition: filter 0.3s;
}

.item:hover img {
    filter: brightness(1.1);
}

.item p {
    margin: 0;
    font-size: 1.1em;
    color: #fff;
    font-weight: 600;
}

/* ========== Links innerhalb der Items ========== */
.item a {
    color: inherit;
    text-decoration: none;
    display: block;
}

/* ========== Wahl-Seiten ========== */
.wahl-container {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

.wahl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 30px;
    justify-items: center;
}

.wahl-button {
    background: #1e1e1e;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.wahl-button:hover {
    background: #2a2a2a;
    transform: translateY(-4px);
}

.wahl-button img {
    max-width: 100%;
    height: 120px;
    object-fit: contain;
    border-radius: 5px;
    background: #fff;
    padding: 10px;
}

.wahl-button span {
    display: block;
    margin-top: 12px;
    font-size: 1.1em;
    font-weight: 600;
    color: #f0f0f0;
}

.wahl-button a {
    color: inherit;
    text-decoration: none;
    display: block;
}

.contact-buttons {
    display: flex;
    justify-content: center; /* Buttons zentrieren */
    gap: 20px; /* Abstand zwischen den Buttons */
    margin-top: 10px;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 10px; /* Abstand zwischen Icon und Text */
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    color: white;
    border-radius: 8px;
    transition: transform 0.2s;
}

.contact-btn:hover {
    transform: scale(1.05);
}

/* Farben passend zu den Plattformen */
.contact-btn.instagram {
    background: #E1306C;
}

.contact-btn.telegram {
    background: #0088cc;
}

.btn-icon {
    width: 24px;
    height: 24px;
}

.price {
    color: #00ab4a !important;
}


/* ========== Responsiveness ========== */
@media (max-width: 600px) {
    nav {
        flex-direction: column;
        gap: 10px;
    }

    .container h2 {
        font-size: 1.5em;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }
}
