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

:root {
    --brand-main: #10B981; /* Emerald Green */
    --brand-accent: #F59E0B; /* Amber Orange */
    --ui-base-dark: #1F2937; /* Dark Gray */
    --tone-highlight: #F3F4F6; /* Light Gray */
    
    --gradient-primary: linear-gradient(135deg, #10B981 0%, #F59E0B 100%);
    --gradient-overlay: linear-gradient(rgba(31, 41, 55, 0.8), rgba(31, 41, 55, 0.9));
    
    --font-heading: 'Oswald', sans-serif;
    --font-text: 'Open Sans', sans-serif;
}

body {
    font-family: var(--font-text);
    color: var(--ui-base-dark);
    background-color: var(--tone-highlight);
    line-height: 1.6;
}

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

/* Header & Mobile Menu */
.wellness-nav-wrap {
    background-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 50;
}

.mobile-menu-drawer {
    display: none;
    background-color: white;
    border-top: 1px solid var(--tone-highlight);
}
.mobile-menu-drawer.active-drawer {
    display: block;
}

/* Buttons */
.action-btn-primary {
    display: inline-block;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
    text-align: center;
}
.action-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.4);
}

/* Unique Grid Classes */
.vitality-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.lifestyle-block-item {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.lifestyle-block-item:hover {
    transform: translateY(-5px);
}

/* Numbered Steps */
.step-number-indicator {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

/* Footer */
.site-footer-wrapper {
    background-color: var(--ui-base-dark);
    color: var(--tone-highlight);
    padding: 4rem 1rem 2rem;
}

/* Cookie Banner */
#cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--ui-base-dark);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-text-content {
    flex: 1 1 300px;
    font-size: 0.9rem;
}

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

.btn-cookie-accept {
    background-color: var(--brand-accent);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: opacity 0.2s;
}
.btn-cookie-accept:hover {
    opacity: 0.9;
}

.btn-cookie-decline {
    background-color: #4B5563;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: opacity 0.2s;
}
.btn-cookie-decline:hover {
    opacity: 0.9;
}

/* Form Styles */
.booking-input-field {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--tone-highlight);
    border-radius: 0.5rem;
    font-family: var(--font-text);
    transition: border-color 0.3s;
}
.booking-input-field:focus {
    outline: none;
    border-color: var(--brand-main);
}

/* Numbered lists for reserve cards */
.custom-habit-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}
.custom-habit-list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}
.custom-habit-list li::before {
    content: counter(habit-counter);
    counter-increment: habit-counter;
    position: absolute;
    left: 0;
    top: -2px;
    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-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
}
.custom-habit-list {
    counter-reset: habit-counter;
}