/* CSS-Variablen für Tag- und Nachtmodus */
:root {
    --background-color: #bde1ff; /* Standard: Heller Blauton für Tagmodus */
    --text-color: #333;
    --button-background: #4CAF50;
    --button-hover: #45a049;
    --message-color: red;
}

body.dark-mode {
    --background-color: #2c3e50; /* Dunkler Hintergrund für Nachtmodus */
    --text-color: #ecf0f1;
    --button-background: #e74c3c;
    --button-hover: #c0392b;
    --message-color: #f1c40f;
}

/* Allgemeine Seiteneinstellungen */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: var(--background-color);
    color: var(--text-color); /* Hinzugefügt */
    margin: 0;
    padding: 0;
    transition: background-color 0.5s, color 0.5s; /* Sanfte Übergänge */
}

/* Überschrift des Spiels */
h1 {
    color: var(--text-color);
    margin-top: 20px;
}

/* Modusauswahl */
#modeSelection {
    margin-top: 20px;
}

#modeSelection label {
    margin-right: 20px;
    font-size: 1.2em;
}

/* Start-Button */
#startGameButton {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1em;
    background-color: #008CBA; /* Blau */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#startGameButton:hover {
    background-color: #007B9E;
}

/* Container für das Spiel */
#gameContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

/* Canvas für die Blume */
#hangmanCanvas {
    /* Optional: Rahmen und Hintergrund aktivieren */
    /* border: 1px solid #000; */
    /* background-color: #ffffff; */
    /* margin-bottom: 20px; */
}

/* Anzeige des zu erratenden Wortes */
#wordDisplay {
    margin-top: 20px;
    font-size: 2.5em; /* Größere Schriftgröße für das Wort */
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

/* Nachricht bei Gewinn oder Verlust */
#message {
    font-size: 1.5em;
    color: var(--message-color);
    margin-top: 20px;
}

/* Virtuelles Keyboard */
#keyboard {
    max-width: 600px;
    margin: 0 auto;
    margin-top: 20px;
}

#keyboard button {
    margin: 5px;
    padding: 15px; /* Erhöhte Polsterung */
    font-size: 1.2em; /* Größere Schriftgröße */
    background-color: var(--button-background);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s; /* Sanfte Übergänge */
}

#keyboard button:hover {
    background-color: var(--button-hover);
}

#keyboard button:disabled {
    background-color: #ddd;
    color: #666;
    cursor: not-allowed;
}

/* Neustart-Button */
#restartButton {
    margin-top: 20px;
    padding: 15px 30px;
    font-size: 1em;
    display: none;
    background-color: var(--button-background);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#restartButton:hover {
    background-color: var(--button-hover);
}

/* Styling für die Blumenwiese */
#meadowContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Zentriert die Blumen */
    max-width: 100%;
    padding: 10px;
    margin-top: 20px; /* Abstand nach oben */
}

#meadowContainer img {
    width: 100px;    /* Größe der Blumenbilder */
    height: 133px;   /* Proportional angepasst */
    margin: 0px;     /* Margin reduziert, um die Blumen dichter zu stellen */
    border-radius: 0px;
}

/* Responsive Design für kleinere Bildschirme */
@media (max-width: 600px) {
    #modeSelection label {
        display: block;
        margin-bottom: 10px;
    }

    #keyboard button {
        padding: 10px;
        font-size: 1em;
        margin: 3px;
    }

    #wordDisplay {
        font-size: 2em;
    }

    #meadowContainer img {
        width: 80px;   /* Kleinere Bilder auf kleineren Bildschirmen */
        height: 106px; /* Proportional angepasst */
        margin: 1px;   /* Margin auch hier auf 1px reduziert */
    }
}

/* Theme Toggle Switch Styling */
#themeToggleContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin-right: 10px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Runde Slider */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Icons im Toggle-Switch */
.switch .slider.round svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: #FFD700; /* Farbe der Icons im Tagmodus */
}

.switch .slider.round svg#moonIcon {
    color: #f1c40f; /* Farbe der Icons im Nachtmodus */
}