body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    /*background-color: #888;*/
}
header {
    display: block;
    background-color: #ffcc80;
    background: #ffcc80;
    background: linear-gradient(180deg, rgb(169, 4, 136) 5%, rgb(104, 1, 83) 70%);
    width: 100%;
    /*padding: 1rem;*/
    text-align: center;
    color: #fff;
    margin: 0;
    padding: 0;
    /*position: sticky;
    top: 0;
    z-index: 1000;*/
}
header nav {
    margin: 0;
    padding: 0;
}
header nav a {
    margin: 0 1rem;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    text-align: left;
}
header nav a:hover {
    text-decoration: underline;
}
/* Responsive Navigation Styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.1rem;
    text-align: left;
}
.menu {
    /*display: none;*/
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    margin:auto;
}
.menu a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}
.menu a:hover, .menu a:active, .menu a:focus {
    text-decoration: underline;
}
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #fff;
}
@media (max-width: 768px) {
    .menu {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .menu.open {
        display: flex;
    }
}
.playground {
    padding: 2rem;
    width: 90%;
    margin: 0 auto;
}
section {
    padding: 2rem;
    margin: 2rem auto;
}





#intro {
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 1rem;
}







#calendar-section {
    background-color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 0;
    /*width: 90%;
    margin: 50px auto 0 auto;*/
}
@media (max-width: 768px) {
    #calendar-section {
        grid-template-columns: 1fr;
    }
}
#calendar-section .text {
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 1rem;
}
#calendar-section .text img {
    max-width:90%;
}
@media (max-width: 768px) {
    #calendar-section .text {
        width:85%;
    }
    #calendar-section .calendar-container {
        width:85%;
    }
}
#calendar-section .calendar-container {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 1rem;
}
#calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background-color: #ccc;
}
.day, .header {
    padding: 1rem;
    background-color: #fff;
    text-align: center;
    cursor: pointer;
}
.header {
    background-color: #ffcc80;
    font-weight: bold;
}
.event {
    background-color: #80cbc4;
}
.navigation {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
}
.navigation button {
    background-color: #80cbc4;
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.navigation button:hover {
    background-color: #4caf50;
}
#modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
#modal-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 5px;
    max-width: 500px;
    text-align: center;
    position: relative;
}
#modal-content h2 {
    margin-top: 0;
}
#close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}







#cal-section {
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 1rem;
}

#projekte-section {
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 1rem;
}
.sectionsgrid{
    display: flex; 
    gap: 20px; 
    flex-wrap: wrap;
}
.sectionsgrid .textfeld {
    flex: 1; 
    min-width: 300px;
}
.sectionsgrid .textfeld img {
    max-width:50%;
}




#impressum {
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 1rem;
    font-size:70%;
}
#datenschutz {
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 1rem;
    font-size:70%;
}
#contact-form {
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 1rem;
}
#contact-form h2 {
    margin-top: 0;
}
#contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}
#contact-form input, #contact-form textarea, #contact-form button {
    width: 80%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}
#contact-form button, #contact-form input.button {
    background-color: #80cbc4;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
#contact-form button:hover {
    background-color: #4caf50;
}
.hidden {
    display: none;
}
.powered{
    font-size:30%;
}
.noticeok{
    background-color:rgb(28, 165, 110);
    font-weight: bold;
    color: #FFFFFF;
    padding:10px;
}
.noticefalse{
    background-color:rgb(119, 27, 2);
    font-weight: bold;
    color: #FFFFFF;
    font-size:20px;
    padding:10px;
}

/* Button-Styling */
#scrollToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 15px;
    font-size: 16px;
    background-color: orange;
    color: white;
    border: none;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: none; /* Standardmäßig ausgeblendet */
}

#scrollToTop:hover {
    background-color: darkorange;
}