/*GPT*/

/* Grundlegende Styles für Body und HTML */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif; /* Oder eine andere moderne, gut lesbare Schriftart */
    background-color: #1a1a1a; /* Sehr dunkler Hintergrund für Darkmode */
    color: #cccccc; /* Heller grauer Standardtext */
    line-height: 1.6;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

/* Header Styling */
header {
    background-color: #282828; /* Etwas hellerer dunkler Hintergrund für den Header */
    color: #ffffff; /* Weißer Text im Header */
    padding: 1rem 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

header h1 {
    color: #90ee90; /* Helles Grün für die Hauptüberschrift im Header */
    margin: 0;
    font-size: 2em;
}

/* Links im Header (Beispiel) */
header a {
    color: #70a642; /* Cannabisgrün für Links */
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

header a:hover {
    color: #90ee90; /* Helleres Grün beim Hover */
}

/* Grundlegendes Layout für Inhalte (Beispielcontainer) */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Überschriften im Body */
h2, h3, h4, h5, h6 {
    color: #90ee90; /* Helles Grün für Überschriften im Body */
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Paragraphen */
p {
    margin-bottom: 15px;
}

/* Responsivität */

/* Kleinere Bildschirme (Tablets, größere Smartphones) */
@media (max-width: 768px) {
    body, html {
        font-size: 13px; /* Schriftgröße etwas verkleinern */
    }

    header {
        padding: 1rem 15px;
    }

    header h1 {
        font-size: 1.8em;
    }

    .container {
        padding: 0 15px;
    }
}

/* Sehr kleine Bildschirme (Smartphones) */
@media (max-width: 480px) {
    header {
        text-align: center;
        padding: 1rem 10px;
    }

    header h1 {
        font-size: 1.5em;
    }

    header a {
        display: block; /* Links untereinander stapeln */
        margin: 5px 0;
    }

    .container {
        padding: 0 10px;
    }
}

/*GPT out*/


/*Container groeßen*/

@media (min-width: 576px) {
    .container,#page-content {
        max-width: 540px;
      margin:auto;
    }
}
@media (min-width: 768px) {
    .container,#page-content {
        max-width: 720px;
      margin:auto;
    }
}
@media (min-width: 992px) {
    .container,#page-content {
        max-width: 960px;
      margin:auto;
    }
}
@media (min-width: 1200px) {
    .container,#page-content {
        max-width: 1140px;
      margin:auto;
    }
}


/*Footer*/
.footer a {
    text-decoration: none;
    color: white;
    transition: color 0.2s, text-shadow 0.2s;
}
.footer a:hover {
    color: #90ee90;
    text-shadow: 0 0 8px #90ee90;
}


