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

:root {
    /* Colorful Theme Colors */
    --brand-main: #38bdf8; /* Sky Blue */
    --ui-base-dark: #1e293b; /* Slate 800 */
    --tone-highlight: #f43f5e; /* Rose 500 */
    --surface-light: #f8fafc; /* Slate 50 */
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--brand-main), var(--tone-highlight));
    --gradient-dark: linear-gradient(135deg, var(--ui-base-dark), #0f172a);
    
    /* Fonts */
    --font-heading: 'Oswald', sans-serif;
    --font-text: 'Inter', sans-serif;
}

body {
    font-family: var(--font-text);
    color: var(--ui-base-dark);
    background-color: var(--surface-light);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

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

/* Unique classes for layout protection */
.wellness-top-wrap {
    background-color: var(--ui-base-dark);
    color: white;
}

.vitality-btn-primary {
    background: var(--gradient-primary);
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vitality-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(244, 63, 94, 0.4);
}

.lifestyle-module-inner {
    border-top: 4px solid var(--brand-main);
    background-color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.lifestyle-module-inner:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.mindful-step-row {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-indicator-circle {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.stat-figure-block {
    text-align: center;
    padding: 2rem;
    border-radius: 0.75rem;
    background-color: white;
    border-bottom: 4px solid var(--tone-highlight);
}

.stat-number-text {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--brand-main);
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* Custom numbered lists for reserve.html */
.approach-list-custom {
    list-style: none;
    padding-left: 0;
    margin-top: 1.25rem;
}

.approach-list-custom li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #475569;
}

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

.approach-card-wrap {
    counter-reset: approach-counter;
}

/* Cookie Banner */
#cookie-banner-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--ui-base-dark);
    color: white;
    z-index: 9999;
    padding: 1rem;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
    display: none; /* Controlled by JS */
}

/* Header navigation mobile toggle */
.mobile-nav-hidden {
    display: none;
}
@media (min-width: 768px) {
    .mobile-nav-hidden {
        display: flex !important;
    }
}