/* Page styles for "Our Chiropractors - Family Tree Health" — extracted from about/our-chiropractors.html */

        html, body {
            margin: 0;
            padding: 0;
            height: 100%;
            overflow: hidden;
        }

        .snap-container {
            height: 100vh;
            overflow-y: scroll;
            scroll-snap-type: y mandatory;
            scroll-behavior: smooth;
        }

        .chiro-snap-section {
            scroll-snap-align: start;
            height: 100vh;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        /* Section colours */
        .snap-paul    { background: #0d2f3b; }
        .snap-melissa { background: #f0e8e0; }
        .snap-megan   { background: #2c4c3b; }
        .snap-chiara  { background: #faf6f0; }

        /* Dark theme */
        .theme-dark .snap-text h2        { color: #fff; }
        .theme-dark .snap-text .subtitle { color: rgba(255,255,255,0.6); }
        .theme-dark .snap-text p          { color: rgba(255,255,255,0.8); }
        .theme-dark .snap-text ul         { color: rgba(255,255,255,0.8); }
        .theme-dark .snap-photo           { border-color: rgba(255,255,255,0.15); box-shadow: 0 20px 50px rgba(0,0,0,0.25); }
        .theme-dark .scroll-hint          { color: rgba(255,255,255,0.4); }
        .theme-dark .scroll-hint svg      { fill: rgba(255,255,255,0.4); }

        /* Light theme */
        .theme-light .snap-text h2        { color: #2c4c3b; }
        .theme-light .snap-text .subtitle { color: #777; }
        .theme-light .snap-text p          { color: #555; }
        .theme-light .snap-text ul         { color: #555; }
        .theme-light .snap-photo           { border-color: rgba(0,0,0,0.06); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
        .theme-light .scroll-hint          { color: rgba(0,0,0,0.3); }
        .theme-light .scroll-hint svg      { fill: rgba(0,0,0,0.3); }

        .snap-inner {
            display: flex;
            align-items: center;
            gap: 60px;
            max-width: 1200px;
            width: 100%;
            padding: 40px;
        }

        .snap-inner.reverse { flex-direction: row-reverse; }

        .snap-photo {
            flex: 0 0 300px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            object-fit: cover;
            border: 6px solid;
            transition: transform 0.5s ease;
        }

        .snap-photo:hover { transform: scale(1.04); }

        .snap-text { flex: 1; }

        .snap-text .label {
            display: inline-block;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #8cc63f;
            margin-bottom: 12px;
        }

        .snap-text h2 {
            font-size: 3rem;
            font-weight: 700;
            margin: 0 0 8px;
            line-height: 1.1;
        }

        .snap-text .subtitle {
            font-size: 1.1rem;
            font-style: italic;
            margin-bottom: 22px;
        }

        .snap-text p {
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 14px;
        }

        .snap-text ul {
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 18px;
            padding-left: 20px;
        }

        .snap-text ul li { margin-bottom: 6px; }

        .btn-snap {
            display: inline-block;
            margin-top: 12px;
            padding: 14px 35px;
            background: #8cc63f;
            color: #fff;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(140,198,63,0.3);
        }

        .btn-snap:hover {
            background: #7ab32e;
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(140,198,63,0.4);
        }

        .scroll-hint {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            font-size: 0.8rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            animation: bounce 2s infinite;
        }

        .scroll-hint svg { width: 24px; height: 24px; }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(8px); }
        }

        .snap-dots {
            position: fixed;
            right: 25px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .snap-dots a {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(120,120,120,0.3);
            border: 2px solid rgba(120,120,120,0.4);
            transition: all 0.3s ease;
            display: block;
        }

        .snap-dots a:hover,
        .snap-dots a.active {
            background: #8cc63f;
            border-color: #8cc63f;
            transform: scale(1.3);
        }

        .snap-cta {
            scroll-snap-align: start;
            min-height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #0d2f3b;
            text-align: center;
            padding: 60px 20px;
        }

        .snap-cta h2 { font-size: 2.5rem; color: #fff; margin-bottom: 20px; font-weight: 700; }
        .snap-cta p { color: rgba(255,255,255,0.7); font-size: 1.2rem; margin-bottom: 30px; }

        @media (max-width: 900px) {
            .snap-inner {
                flex-direction: column !important;
                text-align: center;
                padding: 70px 25px 50px;
                gap: 25px;
            }
            .snap-photo { flex: none; width: 190px; height: 190px; }
            .snap-text h2 { font-size: 2.2rem; }
            .snap-text ul { text-align: left; display: inline-block; }
            .snap-dots { right: 10px; gap: 10px; }
            .snap-dots a { width: 9px; height: 9px; }
        }

        /* When the header becomes position:relative on mobile it takes
           up flow space. Switch body to a flex column so the snap
           container fills only the remaining viewport height. */
        @media (max-width: 768px) {
            html, body {
                overflow: hidden;
                height: 100%;
            }
            body {
                display: flex;
                flex-direction: column;
            }
            .snap-container {
                flex: 1 1 auto;
                height: auto;          /* let flex sizing take over */
                min-height: 0;         /* allow flex shrink below content */
            }
            .chiro-snap-section {
                height: 100%;          /* fill the snap-container's flex height */
                min-height: 100%;
            }
            .snap-cta {
                min-height: 60%;
            }
        }

        @media (max-width: 480px) {
            .snap-inner { padding: 60px 16px 40px; gap: 18px; }
            .snap-photo { width: 140px; height: 140px; }
            .snap-text h2 { font-size: 1.7rem; }
            .snap-text p, .snap-text ul { font-size: 0.92rem; }
            .snap-cta h2 { font-size: 1.7rem; }
        }
