/* * Laimbacher Peilsteinteifln - Global Styles
 * Colors: Poison Green (#39FF14), Black (#0a0a0a), White (#ffffff)
 */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;500;700&family=Roboto:wght@300;400;700&display=swap');

:root {
    --primary-color: #39FF14; /* Poison Green */
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --text-light: #f0f0f0;
    --text-muted: #a0a0a0;
    --border-color: #333;
    --spacing-container: 1200px;
}

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

h1 { color: var(--primary-color); }
h2 { border-bottom: 2px solid var(--primary-color); display: inline-block; padding-bottom: 5px; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
a:hover { color: var(--primary-color); }

/* --- Navbar --- */
.navbar {
    background-color: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid var(--primary-color);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links li a {
    font-weight: 500;
    font-size: 1.1rem;
}

.nav-links li a.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

/* --- Layout --- */
main {
    flex: 1;
    max-width: var(--spacing-container);
    margin: 0 auto;
    width: 100%;
    padding: 2rem;
}

section {
    margin-bottom: 4rem;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--primary-color);
    color: var(--bg-dark);
}

/* --- Footer --- */
footer {
    background-color: #000;
    border-top: 1px solid #333;
    padding: 2rem;
    text-align: center;
    margin-top: auto;
}

.footer-content {
    max-width: var(--spacing-container);
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    margin-top: 1rem;
}

/* --- Mobile Nav Toggle (Hidden by default on desktop) --- */
.menu-toggle { display: none; }

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Simple implementation for example */
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding-top: 1rem;
    }
    
    .nav-container {
        flex-direction: column;
    }

    .nav-links.active {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
        cursor: pointer;
        font-size: 1.5rem;
        color: var(--primary-color);
        position: absolute;
        right: 2rem;
        top: 1.2rem;
    }
}