/*  
##########################################

    BEREICHE

##########################################  
*/

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0px;
    padding: 0px;
    background-color: #7caef4;
    color: #333;
}

main {
    margin: 20px;
    padding: 0px;
}

section {
    margin-bottom: 20px;
}

footer {
    background: #b77c68;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}




/* Header */
.site-header {
    background-color: #353e46;
    color: white;             
    padding: 10px;             
}

/* Layout für den oberen Bereich des Headers */
.site-header .header-top {
    display: flex;         
    align-items: center;   
    justify-content: start;
}

/* Logo */
.site-header .logo img {
    max-width: 100px;   
    height: auto;       
    border-radius: 100px;
}

/* Willkommens-Text */
.site-header .welcome-text {
    font-size: 1.0em;   
    text-align: left;   
    margin: 10px;
    color: rgb(47, 255, 0);
}

/* Navigation unterhalb des Header-Texts */
.site-header .site-nav {
    margin-top: 20px;   
    text-align: center; 
}

.site-header .site-nav ul {
    list-style: none;            
    padding: 0;
    margin: 0;
    display: inline-block;        
}

.site-header .site-nav ul li {
    display: inline;               
    margin: 0 15px;                 
}

.site-header .site-nav ul li a {
    text-decoration: none;         
    color: white;             
    font-weight: bold;            
}

.site-header .site-nav ul li a:hover {
    text-decoration: underline;     /* Unterstreichen bei Hover */
}




/* 
##########################################  

    weiteres

##########################################  
*/

.avatar {
    max-width: 120px;      
    height: auto;             
    border-radius: 8px;
    margin: 10 px;
    padding: 10 px;
    ;
}


/* Styling für den Button */
button {
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

/* Styling für den Paragraphen */
#dynamicText {
    font-size: 1.2rem;
    margin-top: 20px;
}

/* 
##########################################  

    Kontaktformular

##########################################  
*/

/* Kontaktformular */
form {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Abstand zwischen den Eingabefeldern */
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
}

form label {
    font-weight: bold;
}

form input, form textarea {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 95%;
}

form button {
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    background-color: Blue;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: LimeGreen;
}

#formMessage {
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    color: black; /* Standardfarbe */
}



/* 
##########################################  

    To-Do-Liste im Shop

##########################################  
*/

#todoItems {
    list-style: none; /* Entfernt Aufzählungszeichen */
    padding: 0;
}

#todoItems li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0px;
    padding: 10px;
    background-color: #f4f4f4;
    border-radius: 5px;
    border: 3px solid #ddd;
}

#todoItems li button {
    padding: 5px 10px;
    background-color: #ff4d4d;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#todoItems li button:hover {
    background-color: #1d00ae;
}

#clearAll {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ff4d4d;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#clearAll:hover {
    background-color: #1d00ae;
}
