:root {
    --bg: #ffffff0f;
    --accent: #36d406;
    --text: #f8f8ff;
    --muted: rgba(255, 255, 255, 0.8);
}

@font-face {
    font-family: Montserrat;
    src: url(Montserrat-Regular.woff2);
}

* {
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
    color: #f8f8ff;
}

body {
    background: linear-gradient(45deg, #0a0a0a 0%, #1f1f1f 100%);
    margin: 0 auto;
    padding: 0;
    min-height: 100vh;
    width: 70%;
}

@media only screen and (max-width: 1200px) {
    body {
        width: 100%;
    }

    .container img {
        max-height: 100%;
    }
}

@media only screen and (min-width: 1200px) {
    nav {
        border-bottom-left-radius: 16px !important;
        border-bottom-right-radius: 16px !important;
    }

    .container img {
        max-height: 11rem;
    }
}

.container {
    display: block;
    margin: 0 auto;
    width: 70%;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(9.1px);
    -webkit-backdrop-filter: blur(9.1px);
    padding: 30px;
    margin-bottom: 80px;
}

.container img {
    float: right;
    max-width: 30%;
    height: auto;
    margin-top: 0;
    margin-bottom: 0;
    margin: 20px;
    filter: drop-shadow(5px 5px 5px rgba(255, 255, 255, 0.1));
    filter: brightness(0) invert(1);
}

#unsere-mission img {
    height: 100% !important;
    float: left;
}

.mobile-img {
    display: none;
}

@media only screen and (max-width: 600px) {
    body {
        width: 100vw;
    }
    
    #ueber-uns img {
        display: none;
    }

    .mobile-img {
        display: block;
    }
}

.container-left {
    margin: 0 0;
    margin-left: 50px;
    margin-bottom: 80px;
}

.container-right {
    margin: 0;
    margin-left: auto;
    margin-right: 50px;
    margin-bottom: 80px;
}

.bg-green {
    background-color: rgba(0, 194, 0, 0.12) !important;
    box-shadow: 0 4px 30px rgba(0, 194, 0, 0.1);
}

h1 {
    font-size: 4rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 80px;
    text-shadow: 8px 8px 30px rgba(0, 194, 0, 0.653);
}

h2 {
    font-size: 2rem;
}

p {
    font-size: 1.1rem;
}

.bold {
    font-weight: 600;
}

/* Navbar container */
.navbar {
    background: var(--bg);
    color: var(--text);
    padding: 1rem 2rem 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 1.05rem;
}

.logo img {
    height: 30px;
    width: 30px;
}

.site-name {
    font-size: 1.5rem;
}

/* Desktop menu (visible on wider screens) */
.nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-left: auto;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: background 160ms, color 160ms;
    font-size: 0.95rem;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
}

.cta {
    background: var(--accent);
    color: #F8F8FF;
    font-weight: 600;
}

/* Mobile: hide desktop links and show hamburger */
.hamburger {
    display: none;
    background: transparent;
    border: 0;
    padding: 6px;
    cursor: pointer;
    color: var(--text);
}

.hamburger .bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    margin: 4px 0;
    transition: transform 180ms, opacity 180ms;
}

/* Mobile menu panel (hidden by default) */
.mobile-panel {
    display: none;
    background: var(--bg);
    color: var(--text);
    padding: 0.5rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.mobile-panel a {
    display: block;
    padding: 0.6rem 0.5rem;
    color: var(--muted);
    text-decoration: none;
    border-radius: 6px;
}

.mobile-panel a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.03);
}

#Dani {
    height: 10px;
}

/* Responsive breakpoints */
@media (max-width: 800px) {
    .nav-links {
        display: none;
    }

    /* hide desktop links */
    .hamburger {
        display: inline-flex;
    }

    /* show hamburger */
    .brand {
        flex: 1;
    }

    /* brand takes remaining space */
}

/* When mobile panel is open */
.mobile-panel.open {
    display: block;
}

/* Optional: animated hamburger when open */
.hamburger[aria-expanded="true"] .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
}

.hamburger[aria-expanded="true"] .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}