:root {
    --green-dark: #222;
    --green-light: #000c;
    --white: #FFFFFF;
    --accent: #FFD700;
    --accent-shadow: #FFD70088;
    --transition: 0.4s;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #01150d;
    color: var(--white);
    scroll-behavior: smooth;
}

/* NAVIGATION */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.5);
}

nav {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-logo {
    width: 130px;
    opacity: 0;
    transition: opacity 0.2s;
}
.nav-logo.visible {
    opacity: 1;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color var(--transition);
}

.nav-menu a:hover {
    color: var(--accent);
}

/* HAMBURGER STYLES */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    z-index: 1100;
}

/* MOBILE MENU */
@media (max-width: 768px) {
    .nav-toggle-label {
        display: block;
        width: 40px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        height: 100vh;
        width: 250px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform ease-in-out 150ms;
        z-index: 1000;
    }

    .nav-toggle:checked ~ .nav-menu {
        transform: translateX(0);
    }

    .nav-menu li {
        margin: 1.5rem 0;
    }
}

/* HERO */
.hero {
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero video {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -2;
    transition: filter 3s;
}

.hero video.blur {
    filter: blur(16px) brightness(0.5);
}



@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10%);
    }
    to {
        opacity: 1;
        transform: translateY(0%);
    }
}


.hero-content {
    z-index: 1;
    align-items: center;
// animation: fadeSlideIn 300ms ease-out;
    display: flex;
    flex-direction: column;
}

.hero-content img {
    max-width: 420px;
}
.hero-content span {
    max-width: 420px;
    margin-top: -1.2rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 1px black;
    font-weight: bold;
}

.hero-content .btn {
    width: 360px;
    text-align: center;
}

.btn-sound {
    position: absolute;
    bottom: 50px;
    right: 20px;
    border: none;
    cursor: pointer;
    transition: all ease-in-out 150ms;
    background: transparent;
    width: 30px;
    height: 30px;
    display: none;
}
.btn-sound.on {
    display: block;
}

.btn-sound:hover {
    transform: rotate(15deg) scale(1.2);
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent);
    color: #000;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: transform var(--transition), background var(--transition);
    text-decoration: none;
    border: none;
    margin-bottom: 20px;
}

.btn:hover {
    transform: translateY(-3px);
    background: #ffe066;
}

/* SECTIONS */
section {
    position: relative;
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
    font-size: 1.2rem;
}

section:nth-of-type(even) {
    background-color: var(--green-light);
    box-shadow: 10px 10px 0 var(--accent-shadow);
}

/*!* Section Divider *!*/
/*section + section::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: -40px;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 40px;*/
/*    background: var(--green-dark);*/
/*    clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);*/
/*}*/

h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--accent), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

p {
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 300;
}

/* ANIMATION ON SCROLL */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* TERMINLISTE */
.terminliste {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.terminliste li {
    padding: 1rem;
    border-left: 4px solid var(--accent);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    transition: transform var(--transition);
}

.terminliste li:hover {
    transform: translateX(5px);
}

/* GALLERY */
.gallery {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform var(--transition);
}

.gallery img:hover {
    transform: scale(1.05);
}

/* CONTACT */
.contact-form {
    max-width: 600px;
    margin: auto;
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 4px;
    font-family: inherit;
    transition: outline var(--transition);
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: 2px solid var(--accent);
}

/* SOCIAL ICONS */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-icons a {
    font-size: 1.8rem;
    transition: transform var(--transition);
    width: 50px;
    height: 50px;
}

.social-icons a:hover,
.social-icons a:focus {
    transform: rotate(15deg) scale(1.2);
    color: var(--accent);
}

/* FOOTER */
footer {
    background: #000;
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.6;
}


/* RESPONSIVE */
@media (max-width: 768px) {
    section {
        padding: 80px 15px;
    }

    h2 {
        font-size: 2.2rem;
    }
}
