* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    min-height: 100vh;
}


.background-container {
    position: relative;
    width: 100%;
    min-height: 100vh; 
    display: flex;
    flex-direction: column;
}

.background-container::before {
    content: "";
    background-image: url('../assets/background.jpg');
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0.5;
    z-index: -1;
}

.content {
    padding: 40px; 
    text-align: center; 
    color: #000;
    font-family: sans-serif;
}


.main-body {
    background: rgba(255, 255, 255, 0.3); 
    padding: 30px 20px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    width: 60%; 
    margin: 0 auto; 
    text-align: center; 
}


h1 {
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.tagline {
    font-style: italic;
    margin-bottom: 50px;
}

.unterstreichung {
    border-bottom: 2px solid #666;
    padding-bottom: 2px; 
    display: inline-block;
    margin-bottom: 15px;
}


.table {
    width: 100%;
    margin: 20px auto;
    border-collapse: collapse;
    font-family: sans-serif;
}

.table td, .table th {
    padding: 10px;
}

.table a {
    text-decoration: none;
    color: #0066cc;
    font-weight: bold;
}


img {
    border-radius: 15px;
    opacity: 0.8;
    border: 5px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.hamburger {
    position: fixed;
    top: 25px;
    left: 25px;
    z-index: 100;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: transform 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.1);
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    margin-bottom: 5px;
    background: #333; 
    border-radius: 2px;
    transition: background 0.3s ease;
}

.hamburger:hover span {
    background: #000;
}

.hamburger span:last-child {
    margin-bottom: 0;
}

#menu-toggle {
    display: none;
}

.menu-items {
    position: fixed;
    top: 0;
    left: -300px; 
    width: 180px;
    height: 100%;
    background: rgba(44, 44, 44, 0.95); 
    backdrop-filter: blur(10px);
    list-style: none;
    padding-top: 100px;
    transition: 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    z-index: 90;
    box-shadow: 5px 0 15px rgba(0,0,0,0.3);
}

#menu-toggle:checked ~ .menu-items {
    left: 0;
}

.menu-items li a {
    display: block;
    padding: 15px 30px;
    text-decoration: none;
    color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: 0.3s;
    border-left: 4px solid transparent;
}

.menu-items li {
    margin-bottom: 5px;
}
.menu-items li a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #fff;
    padding-left: 40px; 
}


.info-page {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
    color: #333;
}

.info-page p {
    margin-bottom: 20px;
}

/* Impressum Spezifisch */
.impressum h2 {
    font-size: 1.1em;
    margin-top: 20px;
    margin-bottom: 5px;
    color: #000;
}