/* 
  style.css - Gesunder Lebensstil
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@300;400;600&display=swap');

:root {
    /* 4-Color Modern Theme */
    --primary-color: #2F4858; /* Deep Blue/Slate */
    --secondary-color: #33658A; /* Lighter Blue */
    --accent-color: #86BBD8; /* Fresh Light Blue */
    --highlight-color: #F6AE2D; /* Warm Accent/Yellow */
    
    --bg-light: #F9FAFB;
    --text-dark: #1F2937;
    --text-muted: #4B5563;

    --font-heading: 'Montserrat', sans-serif;
    --font-text: 'Open Sans', sans-serif;
}

body {
    font-family: var(--font-text);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
}

a {
    transition: color 0.3s ease, background-color 0.3s ease;
}

/* Base custom styles extending Tailwind */
.bg-primary { background-color: var(--primary-color); }
.bg-secondary { background-color: var(--secondary-color); }
.bg-accent { background-color: var(--accent-color); }
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-accent { color: var(--highlight-color); }

.btn-primary {
    background-color: var(--highlight-color);
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(246, 174, 45, 0.4);
}

.hero-overlay {
    background: linear-gradient(to right, rgba(47, 72, 88, 0.9), rgba(51, 101, 138, 0.6));
}

/* Numbered lists with colored circles */
.custom-list {
    list-style-type: none;
    padding-left: 0;
}

.custom-list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 0.75rem;
}

.custom-list li::before {
    content: counter(my-counter);
    counter-increment: my-counter;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--highlight-color);
    color: var(--primary-color);
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: var(--font-heading);
    font-size: 0.875rem;
}

.custom-list-container {
    counter-reset: my-counter;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 1.5rem;
    text-align: center;
    z-index: 9999;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
}

.cookie-btn {
    cursor: pointer;
    padding: 0.6rem 2rem;
    margin: 0.5rem;
    background-color: var(--highlight-color);
    color: var(--primary-color);
    border-radius: 4px;
    border: none;
    display: inline-block;
    font-weight: bold;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.cookie-btn-alt {
    background-color: var(--text-muted);
    color: #ffffff;
}

/* Mobile Menu Transition */
#mobile-menu {
    transition: max-height 0.3s ease-in-out;
    max-height: 0;
    overflow: hidden;
}
#mobile-menu.open {
    max-height: 300px; /* Arbitrary height to allow content drop */
}