* {
    padding: 0;
    margin: 0;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    box-sizing: border-box; 
}



.hero {
    height: 100vh;
    width: 100%;
    background-color: #ffff;
    background-size: cover;
    background-position: center;

}


nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    padding-left: 8%;
    padding-right: 8%;
}

nav ul li {
    list-style-type: none;
    display: inline-block;
    padding: 10px 25px;
}

nav ul li a {
    color: black;
    text-decoration: none;
    font-weight: bold;
    text-transform: capitalize;
}

nav ul li a:hover {
    color: blue;
    transition: .4s;
}

.btn {
    background-color: #1a2529;
    color: white;
    text-decoration: none;
    border: 2px solid transparent;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 25px;
    transition: transform .4s;
}

.btn:hover {
    transform: scale(1.2);
}

.content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 300px;
}



h1 {
    color: black;
    margin: 20px 0px 20px;
}

.content-text {
    max-width: 640px;
}

.content img {
     object-fit: cover;
}

.btn2 {
    display: inline-block;
    border: 2px solid lightblue;
    background-color: #1a2529;
    color: white;
    font-weight: bold;
    border-radius: 25px;
    padding: 10px 60px;
    margin-top: 40px;
    text-decoration: none;
}

.btn2:hover {
    transform: scale(1.2);
}

.btn-k {
    display: inline-block;
    border: 2px solid lightblue;
    background-color: #1a2529;
    color: white;
    font-weight: bold;
    border-radius: 25px;
    padding: 10px 60px;
    margin-top: 20px;
    text-decoration: none;
}

 .toggle_btn {
    color: black;
    cursor: pointer;
    display: none;
}

/* RESPONISVE DESIGN */



@media (max-width: 1350px) {
    nav {
        position: relative;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: fixed; /* Fixiert das Menü über dem Inhalt */
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh; /* Volle Höhe des Bildschirms */
        background: rgba(0, 0, 0, 0.8); /* Halbtransparenter schwarzer Hintergrund */
        text-align: center;
        padding-top: 100px;
        transition: all 0.3s ease-in-out;
        z-index: 1000; /* Damit es über allem liegt */
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        padding: 20px;
    }

    nav ul li a {
        color: white; /* Damit die Links sichtbar sind */
        font-size: 24px;
    }

    .toggle_btn {
        display: block;
        position: relative;
        z-index: 1100; /* Stellt sicher, dass der Button über dem Menü bleibt */
        cursor: pointer;
    }
}


/* About Section */

.about {
    width: 100%;
    padding: 100px 0px;
    background-color: #f9f9f9;
    height: auto;
}

.about img {
    height: auto;
    width: 430px;
}

.about-text {
    width: 550px;
}

.main {
    width: 1130px;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.about-text p {
    color: black;
    letter-spacing: 1px;
    line-height: 40px;
    font-size: 32px;
    margin-bottom: 50px;
    font: sans-serif;
}

.carousel {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: auto;
    overflow: hidden;
}

.swiper {
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

/* Style Swiper images */
.swiper-slide img {
  
    max-width: 100%;
    max-height: 100%;
    width: 70%; /* Set a consistent width for all images */
    height: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Ensures the image fits within the slide without distortion */
    display: block;
    margin: 0 auto; /* Center the image horizontally */
}

.heading1 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 37px;
    margin-bottom: 50px;
    margin-top:  70px;
}

/* Footer */

footer {
    flex-shrink: 0; /* Prevent footer from shrinking */
    background-color: #1a2529;
    color : white;
    text-align: center;
    padding: 20px 0px;
    position: absolute;
    margin-top: 50px;
    left: 0;    
    right: 0;
}



footer p {
    font-size: 15px;
}

.socials {
    display: flex;
    justify-content: center;
    align-self: center;
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.socials a {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #5a70f1;
    border-radius: 50%;
    margin: 22px 10px;
    color: white;
    text-decoration: none;
}

.socials a:hover {
   transform: scale(1.3);
   transition: .3s;
}

.footer-bottom {
    color: white;
    decoration: none;
    align-items: center;
    padding: 0px 8%;
    font-size: 15px;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-transform: capitalize;
    font-size: 15px;
}

.v-content {
   margin: 75px;
   display: flex;
    justify-content: center;
    align-items: column;
    flex-direction: column;
}

/* Verbesserte .coda Sektion */
.coda {
    background-color: #f4f4f4;
    color: #333;
    padding: 20px;
    margin: 20px auto;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 900px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.coda img {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    object-fit: cover;
}

.coda h1 {
    font-size: 28px;
    margin: 0;
    color: #1a2529;
}

.coda h3 {
    font-size: 18px;
    margin: 10px 0;
    color: #555;
}

.coda p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    color: #666;
}

.coda:hover {
    transform: scale(1.05);
    transition: .3s;
}

/* .vorstand Sektion */

#Vorstand {
    margin: 50px;
}

.vorstand {
    background-color: #f4f4f4;
    color: #333;
    padding: 20px;
    margin: 20px auto;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 900px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.vorstand img {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    object-fit: cover;
}

.vorstand h1 {
    font-size: 28px;
    margin: 0;
    color: #1a2529;
}

.vorstand h3 {
    font-size: 18px;
    margin: 10px 0;
    color: #555;
}

.vorstand p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    color: #666;
}

.vorstand:hover {
    transform: scale(1.05);
    transition: .3s;
}

.ver-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.events {
    background-color: #f4f4f4;
    color: #333;
    padding: 20px;
    margin: 20px auto;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 900px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 70px;
  
}

.events img {
    width: 300px;
    height: 300px;
    border-radius: 10px;
    object-fit: contain;
}

.events h1 {
    font-size: 28px;
    margin: 0;
    color: #1a2529;
}

.events h3 {
    font-size: 18px;
    margin: 10px 0;
    color: #555;
}

.events p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
   color: #666;
}

.events:hover {
    transform: scale(1.05);
    transition: .3s;
}

.partner {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.partner h1 {
    font-size: 36px;
    color: #1a2529;
    margin-bottom: 40px;
}

.partner-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;;
}

.partner-container img {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: transform 0.3s ease;;
    background-color: #ffffff;
}

.partner-container img:hover {
    transform: scale(1.1);
}

.partner-container div {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-container div:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.partner-container h3 {
    font-size: 25px;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

.partner-container a {
    display: block;
    color: #1a2529;
    text-decoration: none;;
    margin: 5px 0;
    transition: color 0.3s ease;
    font-size: 20px;
}

.partner-container a:hover {
    color: #5a70f1;
}

/* Countdown Section */

.countdown-section {
    background: #f9f9f9;
    padding: 80px 20px;
    text-align: center;
}

.countdown-title {
    font-size: 36px;
    color: #1a2529;
    margin-bottom: 50px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px 25px;
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(90, 112, 241, 0.3);
    border-color: #5a70f1;
}

.countdown-value {
    font-size: 48px;
    font-weight: bold;
    color: #5a70f1;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(90, 112, 241, 0.5);
}

.countdown-label {
    font-size: 16px;
    color: #1a2529;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .countdown-section {
        padding: 50px 15px;
    }

    .countdown-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .countdown-container {
        gap: 15px;
    }

    .countdown-item {
        min-width: 80px;
        padding: 20px 15px;
    }

    .countdown-value {
        font-size: 32px;
    }

    .countdown-label {
        font-size: 12px;
    }
}

/* Hero: Stack content and image on small screens */
@media (max-width: 768px) {
    .content {
        position: static;
        transform: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 30px 6%;
        gap: 20px;
        text-align: center;
    }

    .content img {
        width: 80%;
        max-width: 360px;
        order: 2;
        margin-top: 10px;
    }

    .content-text {
        order: 1;
    }

    .content-text h1 {
        font-size: 28px;
    }
}