:root {
    --bg-color: #0a0a0a;
    --accent-primary: #ff2e88;
    --accent-secondary: #00ff9f;
    --text-color: #eaeaea;
}

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

body {
    width: 800px;
    height: 480px;
    background: var(--bg-color);
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* 🕒 Uhr oben rechts */
.clock {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 24px;
    color: var(--accent-secondary);
}

/* 🌤️ Wetter unter Uhr */
.weather {
    position: absolute;
    top: 60px;
    right: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    color: var(--text-color);
    text-align: right;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.top-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.bottom-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-section {
    width: 200px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.right-section {
    width: 200px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.heart {
    width: 300px;
    height: 300px;
    background-image: url("/img/heart.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 30px;
    color: var(--text-color);
    letter-spacing: 2px;
    text-align: center;
    word-wrap: break-word;
}

.small-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: var(--text-color);
    text-align: center;
    letter-spacing: 1px;
}

.todo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 8px;
    white-space: pre-wrap;
}

.pin-icon {
    font-size: 16px;
}

.todo-text {
    color: inherit;
}

.side-image {
    width: 200px;
    height: 300px;
    object-fit: contain;
}

.accent {
    color: var(--accent-secondary);
}

#date-display {
    position: absolute; 
    top: 20px; 
    left: 20px; 
    font-family: 'JetBrains Mono', monospace; 
    font-size: 24px; 
    color: var(--accent-secondary);
}

#day-info {
    position: absolute; 
    top: 60px; 
    left: 20px; 
    font-family: 'JetBrains Mono', monospace; 
    font-size: 16px; 
    color: var(--text-color); 
    text-align: left; 
    max-width: 500px;
}
