

:root {--primary: #2563eb;--bg: #616161;--text: #ffffff;}
* {margin: 0;padding: 0;box-sizing: border-box;font-family: -apple-system,BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;}
body {background: var(--bg);color: var(--text);line-height: 1.6;}
header {padding: 0.0rem 1rem;background: black;box-shadow: 0 2px 8px rgba(0,0,0,0.05);position: sticky;top: 0;z-index: 1000;}
nav {display: flex;justify-content: space-between;align-items: center;}
.logo {font-weight: bold;color: var(--primary);}
.logo img {
    max-height: 90px;
    width: auto;
}
.menu {display: flex;gap: 1rem;}
.menu a {text-decoration: none;color: var(--text);font-weight: 500;}
.hamburger {display: none;flex-direction: column;cursor: pointer;font-size: 1.5rem;}
@media (max-width: 768px) {.hamburger {display: flex;}
.menu {position: absolute;top: 30px;left: 0;width: 100%;background: black;flex-direction: column;align-items: center;max-height: 0;overflow: hidden;opacity: 0;transition: max-height 0.35s ease, opacity 0.25s ease;box-shadow: 0 4px 12px rgba(0,0,0,0.05);}
.menu a {padding: 0.5rem 0;width: 100%;text-align: center;border-bottom: 1px solid #eee;}
.menu.active {max-height: 300px;opacity: 1;}}
.container {padding: 1rem;max-width: 900px;margin: auto;}
.footer-container {padding: 1rem;max-width: 2000px;margin: 0;}
.hero {padding: 3rem 1rem;text-align: center;}
.hero h1 {font-size: 2rem;margin-bottom: 1rem;}
.btn {display: inline-block;margin-top: 1.5rem;padding: 0.75rem 1.5rem;background: var(--primary);color: white;border-radius: 999px;text-decoration: none;border: none;}
.cards {display: grid;gap: 1rem;}
.card {
    background: #3B3B3B;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

footer {
    background: black;
    color: white;
    padding: 2rem 1rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* desktop 2 kolone */
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    color: var(--primary);
}

input, textarea {
    width: 100%;
    padding: 0.75rem;
    margin: 0.5rem 0;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
}

.about {
    padding: 3rem 1rem;
    text-align: center;
    max-width: 900px;
}

/* =========================
   ABOUT GRID (2 COL)
========================= */
.about-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

.about-box {
    background: #616161;
    padding: 1.5rem;
    
}

/* =========================
   MAP
========================= */
#map {
    height: 300px;
    width: 100%;
    border-radius: 1rem;
    margin-top: 1rem;
}

.not-found {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    text-align: center;
}

.not-found .card {
    max-width: 500px;
    width: 100%;
}

.not-found h1 {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.not-found h2 {
    margin-bottom: 1rem;
}

/* =========================
   DESKTOP IMPROVEMENT
========================= */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}