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

:root {
    --brand-main: #0d9488; /* Teal 600 */
    --brand-light: #ccfbf1; /* Teal 50 */
    --ui-base-dark: #1f2937; /* Gray 800 */
    --ui-base-light: #f9fafb; /* Gray 50 */
    --tone-highlight: #f59e0b; /* Amber 500 */
    
    --font-heading: 'Montserrat', sans-serif;
    --font-text: 'Open Sans', sans-serif;
    
    --gradient-primary: linear-gradient(135deg, #0d9488 0%, #115e59 100%);
    --gradient-soft: linear-gradient(180deg, #f9fafb 0%, #ccfbf1 100%);
}

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

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

/* Custom Semantic Classes */
.vision-nav-wrapper {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 50;
}

.content-limit-bounds {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.eye-intro-wrap {
    color: #ffffff;
    padding: 6rem 0;
}

.health-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-panel-box {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.info-panel-box:hover {
    transform: translateY(-5px);
}

.action-trigger-btn {
    display: inline-block;
    background-color: var(--tone-highlight);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.action-trigger-btn:hover {
    background-color: #d97706; /* Amber 600 */
}

.visual-stats-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
    padding: 4rem 0;
}

.stat-figure-block {
    text-align: center;
}

.stat-number-huge {
    font-size: 3rem;
    font-weight: 700;
    color: var(--brand-main);
    font-family: var(--font-heading);
}

.footer-base-wrap {
    background-color: var(--ui-base-dark);
    color: var(--ui-base-light);
    padding: 4rem 0 2rem 0;
    margin-top: auto;
}

/* Form Styles */
.reserve-input-field {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    margin-top: 0.5rem;
    font-family: var(--font-text);
}

.reserve-input-field:focus {
    outline: none;
    border-color: var(--brand-main);
    box-shadow: 0 0 0 3px var(--brand-light);
}

/* Numbered lists with colored circles */
.custom-numbered-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.custom-numbered-list > li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.custom-numbered-list > li > span.num-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: var(--brand-main);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
    font-size: 0.85rem;
}

/* Content pages */
.legal-text-wrapper {
    min-height: calc(100vh - 300px);
    padding: 4rem 0;
}

.legal-text-wrapper p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Mobile Menu Setup */
#mobile-menu-drawer {
    display: none;
}
#mobile-menu-drawer.is-active {
    display: block;
}

/* Cookie Banner */
#cookie-banner {
    background-color: var(--ui-base-dark);
    color: white;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
}
.cookie-btn-accept {
    background-color: var(--brand-main);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
}
.cookie-btn-decline {
    background-color: #4B5563;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
}