:root {
    --primary-color: #FFD700; /* Bee Yellow */
    --text-color: #333;
    --bg-color: #fdfdfd;
    --accent-color: #fceea7;
    --button-bg: #333;
    --button-text: #fff;
    --button-hover: #555;
    --font-family: 'Outfit', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    max-width: 800px;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin: 1rem;
}

h1 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
    line-height: 1.2;
}

.highlight {
    color: #e6c200; /* Darker yellow for text readability */
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: var(--accent-color);
    z-index: -1;
    opacity: 0.6;
    border-radius: 5px;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
    font-weight: 300;
}

/* Bee Animation */
.bee-container {
    margin-bottom: 2rem;
}

.bee {
    animation: hover 3s ease-in-out infinite;
}

.wings {
    transform-origin: 50% 50%;
    animation: flutter 0.2s linear infinite;
}

@keyframes hover {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes flutter {
    0% { transform: scaleY(1); }
    50% { transform: scaleY(0.8); }
    100% { transform: scaleY(1); }
}

/* Button Styling */
.button {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--button-bg);
    color: var(--button-text);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.2s, background-color 0.2s;
    margin-top: 1rem;
}

.button:hover {
    background-color: var(--button-hover);
    transform: translateY(-2px);
}

/* Impressum Page Specifc */
.content-page {
    text-align: left;
    max-width: 800px;
}

.content-page h1 {
    font-size: 2rem;
    margin-top: 2rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.content-page p {
    line-height: 1.6;
    color: #444;
}

.back-button {
    margin-top: 3rem;
    display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 1.5rem;
    }
}
