@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --brand-primary: #1E3E62;
    --brand-secondary: #000000;
    --accent-vitality: #FF6500;
    --ui-bright: #F5F5F5;
    --text-core: #2C2C2C;
    --gradient-brand: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    --gradient-accent: linear-gradient(45deg, var(--accent-vitality) 0%, #ff8c42 100%);
    --font-heading: 'Oswald', sans-serif;
    --font-text: 'Roboto', sans-serif;
}

body {
    font-family: var(--font-text);
    color: var(--text-core);
    background-color: var(--ui-bright);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

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

.wellness-nav-wrapper {
    background-color: var(--ui-bright);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 50;
}

.vitality-footer-box {
    background-color: var(--brand-secondary);
    color: var(--ui-bright);
}

/* Custom list styling for reserve page */
.habit-numbered-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    counter-reset: custom-counter;
}

.habit-numbered-list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.habit-numbered-list li::before {
    counter-increment: custom-counter;
    content: counter(custom-counter);
    position: absolute;
    left: 0;
    top: -2px;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    color: white;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Cookie Banner Styles */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--brand-secondary);
    color: var(--ui-bright);
    padding: 1.5rem 1rem;
    z-index: 9999;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

@media(min-width: 768px) {
    #cookie-banner {
        flex-direction: row;
        justify-content: space-between;
        padding: 1.5rem 3rem;
        text-align: left;
    }
}

.cookie-text-area {
    font-size: 0.9rem;
    max-width: 800px;
    line-height: 1.4;
}

.cookie-btn-group {
    display: flex;
    gap: 1rem;
}

.cookie-acc-btn {
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: transform 0.2s ease;
}
.cookie-acc-btn:hover {
    transform: scale(1.05);
}

.cookie-dec-btn {
    background-color: #4B5563;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s ease;
}
.cookie-dec-btn:hover {
    background-color: #374151;
}

/* Interactive elements */
.input-field-custom {
    border: 1px solid #ccc;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.input-field-custom:focus {
    border-color: var(--accent-vitality);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 101, 0, 0.2);
}

.mobile-menu-hidden {
    display: none;
}