/* Allgemein */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    background: linear-gradient(to bottom, #00008B, #5AC8FA);
    color: white;
    padding: 3rem;
    text-align: center;
}

header h1 {
    font-size: 48px;
    font-weight: bold;
    margin: 0;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

#homeButton {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    color: white;
    background: linear-gradient(145deg, #505050, #707070 30%, #a0a0a0 60%, #d0d0d0);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3), inset 0 2px 4px rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 50px;
    flex-shrink: 0;
}

#homeButton:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0,0,0,0.4), inset 0 2px 6px rgba(255,255,255,0.7);
}

.navBubble {
    display: inline-block;
    text-decoration: none;
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: bold;
    color: white;
    background: linear-gradient(145deg, #505050, #707070 30%, #a0a0a0 60%, #d0d0d0);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3), inset 0 2px 4px rgba(255,255,255,0.5);
    transition: all 0.3s ease;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    margin: 0 10px;
}

.navBubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0,0,0,0.4), inset 0 2px 6px rgba(255,255,255,0.7);
}

/* Main */
main {
    padding: 2rem;
    max-width: 1000px;
    margin: auto;
    transition: all 0.5s ease;
    flex-grow: 1;
}

/* Originale BoGy-Box */
.contentBox {
    background: white;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    border-radius: 8px;
    transition: all 0.5s ease;
    width: 100%;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
}

/* Text ausblenden */
.hiddenText {
    display: none;
}

/* Neue dynamische Box */
.dynamicBox {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 8px;
    margin: 2rem auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.8s ease;
    overflow: hidden;
    display: none;
}

/* Animation expand */
.dynamicBox.expandAnimation {
    width: calc(100% - 20px);
    height: 80vh;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 10px;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background: #ddd;
    transition: all 0.5s ease;
}

.fixedFooter {
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* CSS-Only Tabs */
.weekTabs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.weekTabs input[type="radio"] {
    display: none;
}

.weekTabs label {
    display: inline-block;
    flex: 1;
    padding: 10px;
    margin: 0 5px;
    background: #5AC8FA;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s;
}

.weekTabs input[type="radio"]:checked + label {
    background: #00008B;
}

.weekContent {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    min-height: 80px;
}

.dayContent {
    display: none;
}

#mo:checked ~ .weekContent .mo,
#di:checked ~ .weekContent .di,
#mi:checked ~ .weekContent .mi,
#do:checked ~ .weekContent .do,
#fr:checked ~ .weekContent .fr {
    display: block;
}

/* Flex-Layout für Text + Bild */
.dayFlex {
    display: flex;
    gap: 2rem; /* Abstand zwischen Text und Bild */
    align-items: flex-start;
}

/* Textbereich */
.dayText {
    flex: 1; /* Text nimmt so viel Platz wie möglich ein */
}

/* Bildbereich (grauer Platzhalter) */
.dayImage {
    width: 200px;   /* Breite des Platzhalters */
    height: 150px;  /* Höhe des Platzhalters */
    background-color: #ccc; /* grauer Kasten */
    border-radius: 8px;
}
