/*general*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-radius: 16px;
}
html {
    scroll-behavior: smooth;
}
body {
    background: linear-gradient(180deg, #1e2938, #020617);
    font-family: Arial, sans-serif;
    color: white;
    overflow-x: hidden;
}

/*typography*/
h1 {
    color: #48ff00;
    font-size: 64px;
    text-align: center;
    margin-top: 80px;
}
h2 {
    font-size: 40px;
    color: #00b3ff;
    margin-bottom: 12px;
    text-align: center;
    margin-bottom: 40px;
}
h3 {
    font-family: "Bad Script", cursive;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color:aliceblue;
}
p {
    color: #ffffff;
    font-size: 20px;
    text-align: center;
    margin-top: 10px;
}

/* NAV */
nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    gap: 20px;

    padding: 12px 26px;

    background: rgba(15,23,42,0.8);
    backdrop-filter: blur(10px);

    border-radius: 50px;
    z-index: 1000;
}

.tab-button {
    all: unset;
    cursor: pointer;
}

.tab-button a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.95rem;
    position: relative;
}

.tab-button a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #38bdf8;
    transition: 0.3s;
}

.tab-button:hover a,
.tab-button.home a {
    color: #38bdf8;
}

.tab-button:hover a::after,
.tab-button.home a::after {
    width: 100%;
}

.zufück {
    position: fixed;
    top: 20px;
    left: 20px;
    background: rgba(15,23,42,0.8);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
}
/* OPEN CONTENT */

.content-intro {
    max-width: 25%;
    text-align: center;
    position: absolute;
    right: 10%;
    top: 130%;
    transform: translateY(-50%);
}
/*welcome-section*/
.welcom {
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 

}
.club-image {
    height: 100vh;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0%;
    z-index: -1;
}
.welcom h3 {
    position: absolute;
    left: 10%;
    top: 80%;
}
.welcom h1 {
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translate(-50%, -50%);

}

/*SECTION ABOUT US*/
.about-us {
    position: relative;
    left: 25%;
    letter-spacing: 1px;
    padding: 60px 20px; 
}
.about-us p {
    max-width: 800px;
    margin: auto;
    line-height: 1.6;
}

/*SeCTION LOCATION*/
.location {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
/*SECTION CONTACT*/
.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
/*SECTION ACTIVITIES*/
.activities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}


/*AkTuelles*/
.aktuelles {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
}
.events {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}



footer {
    background: #020617;
    color: #94a3b8;
    text-align: center;
    padding: 24px;
}