/* Gesamter Hintergrund */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: white;
}

/* Seiten-Wrapper */
.page {
    max-width: 1024px;
    margin: 0 auto; /* zentriert die Seite */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

/* Logo beschneiden */
.crop-container {
    height: 150px;       /* sichtbarer Bereich */
    overflow: hidden;    /* schneidet oben/unten ab */
	display: flex;
    /*justify-content: center; /* optional: horizontal zentrieren */
    align-items: center;     /* 🔑 vertikal zentrieren */
}

.crop-container img {
    display: block;
    /* KEINE width/height setzen → keine Skalierung */
}

/* Hamburger Menü */
.menu {
    position: relative;
}

#menu-toggle {
    display: none;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    display: block;
}

/* Dropdown */
.menu-content {
    position: absolute;
    right: 0;
    top: 35px;
    background: white;
    border: 1px solid #ccc;
    display: none;
    min-width: 150px;
}

.menu-content a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
}

.menu-content a:hover {
    background: #f5f5f5;
}

/* Toggle */
#menu-toggle:checked + .hamburger + .menu-content {
    display: block;
}

/* Content */
.content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*.box {
    padding: 40px;
    border: 1px solid #ccc;
}*/