﻿/* Shared stylesheet for ZOOM Health site */

/* Fonts */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('/assets/fonts/Inter/Inter-Regular.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    src: url('/assets/fonts/Inter/Inter-SemiBold.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    src: url('/assets/fonts/Inter/Inter-Bold.woff2') format('woff2');
    font-display: swap;
}

:root {
    --teal: #00a5a9;
    --green: #4caf50;
    --ink: #222;
    --bg: #f6fefb;
    --card: #ffffff;
    --muted: #6b7280;
}

* {
    box-sizing: border-box;
}

html:focus-within {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--ink);
    font-size: 18px;
    line-height: 1.75;
}

/* ===== Nav ===== */
.nav {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.nav-wrap {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #1c1c1c;
}

    .nav-brand img {
        height: 36px;
        width: auto;
        display: block;
    }

    .nav-brand strong {
        font-weight: 700;
        letter-spacing: 0.2px;
        font-size: 1.1rem;
    }

.nav-links {
    display: flex;
    gap: 18px;
    align-items: center;
}

    .nav-links a {
        color: #1c1c1c;
        text-decoration: none;
        padding: 10px 12px;
        border-radius: 8px;
        font-weight: 500;
    }

        .nav-links a[aria-current="page"] {
            background-color: #f0f0f0;
        }

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    color: #1c1c1c;
    font-size: 1.1rem;
    padding: 10px 12px;
    border-radius: 8px;
}

@media (max-width: 760px) {
    .nav-links {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 8px 16px 16px;
        background-color: #ffffff;
    }

        .nav-links.open {
            display: flex;
        }

    .nav-toggle {
        display: block;
    }
}

/* ===== Hero ===== */
header {
    background: linear-gradient(to right, var(--teal), var(--green));
    color: #fff;
    padding: 56px 20px 64px;
    text-align: center;
}

    header h1 {
        margin: 0;
        font-size: 2.6rem;
        line-height: 1.15;
    }

    header p {
        font-size: 1.25rem;
        margin: .6rem 0 0;
        opacity: .95;
    }

/* ===== Sections ===== */
.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #c4e9e4, transparent);
    margin: 60px auto;
    max-width: 80%;
}

section {
    padding: 50px 25px;
    max-width: 900px;
    margin: auto;
}

    section h2 {
        color: #1c7d4c;
        font-size: 2rem;
        margin: 0 0 20px;
        text-align: left;
    }

.logo {
    display: block;
    margin: 36px auto 44px;
    max-height: 80px;
}

.highlight {
    background: #e6f5f3;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    font-size: 1.05em;
}

/* ===== Solutions ===== */
.solution {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 60px;
}

.solution-feature {
    border-left: 6px solid var(--green);
    padding: 25px 30px;
    background: var(--card);
    box-shadow: 0 4px 14px rgba(0,165,169,.1);
    border-radius: 14px;
}

    .solution-feature h3 {
        font-size: 1.6em;
        color: var(--teal);
        margin: 0 0 10px;
    }

    .solution-feature p {
        font-size: 1.05em;
        margin: 0 0 20px;
    }

/* Pseudo-element icons (use actual Unicode chars to avoid escape issues) */
.visit-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1em;
    color: #fff;
    background: var(--teal);
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

    .visit-link::after {
        content: "↗"; /* North East Arrow */
        font-family: 'Inter', 'Segoe UI Symbol', 'Apple Color Emoji', 'Noto Color Emoji', 'Segoe UI Emoji', sans-serif;
    }

ul {
    list-style: none;
    padding-left: 0;
    font-size: 1.05em;
}

li {
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
}

    li::before {
        content: "✓"; /* Check Mark */
        position: absolute;
        left: 0;
        color: var(--green);
        font-weight: 700;
        font-family: 'Inter', 'Segoe UI Symbol', 'Apple Color Emoji', 'Noto Color Emoji', 'Segoe UI Emoji', sans-serif;
    }

/* ===== CTA & Footer ===== */
.cta {
    background: #e0f2ed;
    padding: 40px;
    text-align: center;
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto 64px;
}

    .cta a {
        display: inline-block;
        margin-top: 18px;
        padding: 14px 28px;
        background: var(--teal);
        color: #fff;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.05em;
    }

footer {
    background: #f0f9f5;
    padding: 24px;
    text-align: center;
    font-size: 1em;
}

/* ===== Signup Form Styling (ZOOM Health) ===== */
.signup-form {
    background: var(--card);
    padding: 32px 28px;
    border-radius: 12px;
    max-width: 1024px;
    margin: 40px auto;
    box-shadow: 0 4px 14px rgba(0,165,169,.08);
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

    .signup-form h1 {
        font-size: 2rem;
        color: var(--teal);
        margin-bottom: 24px;
        text-align: center;
    }

    .signup-form label {
        display: flex;
        flex-direction: column;
        font-weight: 600;
        margin-bottom: 16px;
        color: var(--ink);
    }

    .signup-form input[type="text"],
    .signup-form input[type="tel"],
    .signup-form input[type="email"],
    .signup-form select {
        padding: 12px 14px;
        font-size: 1rem;
        border: 1px solid #ccc;
        border-radius: 8px;
        margin-top: 6px;
        transition: border-color 0.2s, box-shadow 0.2s;
    }

        .signup-form input[type="text"]:focus,
        .signup-form input[type="tel"]:focus,
        .signup-form input[type="email"]:focus,
        .signup-form select:focus {
            border-color: var(--teal);
            box-shadow: 0 0 0 3px rgba(0,165,169,0.15);
            outline: none;
        }

    
    .signup-form .checkbox-label {
        display: inline-flex;
        flex-direction: row;
        align-items: center;
        gap: 0.5em;
        cursor: pointer;
        margin-bottom: 16px;
    }

    .checkbox-label input[type="checkbox"] {
        margin: 0;
        transform: scale(1.1);
        flex-shrink: 0;
    }

    .checkbox-label span {
        /* This overrides any external rule forcing the span to be a block */
        display: inline;
    }


    .signup-form button[type="submit"] {
        background: var(--teal);
        color: #fff;
        padding: 14px 22px;
        border: none;
        border-radius: 8px;
        font-size: 1.1rem;
        font-weight: 700;
        cursor: pointer;
        transition: background 0.2s, transform 0.1s;
    }

        .signup-form button[type="submit"]:hover {
            background: var(--green);
            transform: translateY(-1px);
        }

    .signup-form .error {
        color: #d9534f;
        font-weight: 600;
        margin-top: 8px;
    }

    .signup-form .success {
        color: var(--green);
        font-weight: 600;
        margin-top: 12px;
        text-align: center;
    }

.payment-link {
    display: none;
    text-align: center;
    margin-top: 24px;
}

    .payment-link a {
        display: inline-block;
        background: var(--teal);
        color: #fff;
        padding: 12px 24px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: background 0.2s;
    }

        .payment-link a:hover {
            background: var(--green);
        }

@media (max-width: 1024px) {
    .signup-form {
        padding: 24px 16px;
        margin: 20px 16px;
    }
}
