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

:root {
    /* Colorful Theme Variables */
    --brand-main: #06b6d4; /* Cyan */
    --brand-secondary: #f59e0b; /* Amber */
    --ui-base-dark: #1e293b; /* Slate Dark */
    --ui-base-light: #f8fafc; /* Slate Light */
    --text-primary: #334155;
    --text-muted: #64748b;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--brand-main) 0%, #3b82f6 100%);
    --gradient-dark: linear-gradient(135deg, var(--ui-base-dark) 0%, #0f172a 100%);
    --gradient-accent: linear-gradient(135deg, var(--brand-secondary) 0%, #ef4444 100%);

    /* Fonts */
    --font-heading: 'Oswald', sans-serif;
    --font-text: 'Roboto', sans-serif;
}

body {
    font-family: var(--font-text);
    color: var(--text-primary);
    background-color: var(--ui-base-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Custom Semantic Classes to replace standard ones */
.joint-nav-wrap {
    background-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

.mobility-intro-board {
    position: relative;
    padding: 6rem 1rem;
    color: white;
}

.mobility-intro-board::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(30, 41, 59, 0.7);
    z-index: 1;
}

.intro-content-layer {
    position: relative;
    z-index: 2;
}

.comfort-step-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.habit-focus-box {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--brand-main);
    transition: transform 0.3s ease;
}

.habit-focus-box:hover {
    transform: translateY(-5px);
}

.icon-wrapper-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    margin-bottom: 1rem;
}

.stat-number-display {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.numbered-health-list {
    list-style: none;
    padding: 0;
}

.numbered-health-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.numbered-health-list li::before {
    counter-increment: health-counter;
    content: counter(health-counter);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: var(--brand-secondary);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
    font-size: 0.875rem;
}

.reserve-form-canvas {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.custom-input-field {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.5rem;
    font-family: var(--font-text);
    transition: border-color 0.3s;
}

.custom-input-field:focus {
    outline: none;
    border-color: var(--brand-main);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.2);
}

.action-trigger-btn {
    display: inline-block;
    padding: 1rem 2rem;
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
    transition: opacity 0.3s, transform 0.3s;
    text-align: center;
    border: none;
    cursor: pointer;
}

.action-trigger-btn:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.faq-toggle-block {
    border-bottom: 1px solid #e2e8f0;
    padding: 1.5rem 0;
}

.footer-base-area {
    background: var(--ui-base-dark);
    color: #94a3b8;
    padding: 4rem 1rem 2rem;
}

.footer-link-item {
    color: #cbd5e1;
    transition: color 0.3s;
}

.footer-link-item:hover {
    color: var(--brand-secondary);
}

/* Cookie Banner Styles */
#cookie-consensus-board {
    background-color: var(--ui-base-dark);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -10px 15px -3px rgba(0, 0, 0, 0.1);
}

.cookie-accept-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: bold;
    transition: opacity 0.3s;
}

.cookie-accept-btn:hover { opacity: 0.8; }

.cookie-decline-btn {
    background-color: #4B5563;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s;
}

.cookie-decline-btn:hover { background-color: #374151; }

/* Mobile Menu utility */
.mobile-nav-layer {
    display: none;
}
.mobile-nav-layer.active {
    display: block;
}