/* ========================================
   The Personal Trainer's Blueprint
   Main Stylesheet (PUSH Brand Style)
   ======================================== */

:root {
    --color-primary: #00AEC7;        /* PUSH blue (PMS 3125 actual) */
    --color-primary-hover: ##00AEC7;  /* Darker on hover */
    --color-dark: #1a1a1a;           /* Almost black for text */
    --color-secondary: #555555;      /* Secondary text */
    --color-tertiary: #888888;       /* Tertiary/subtle text */
    --color-light: #f5f5f5;          /* Light gray alternating sections */
    --color-border: #e6e6e6;         /* Subtle borders */
    --color-white: #ffffff;
    
    --font-heading: 'Montserrat', 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
    
    --font-size-base: 16px;
    --font-size-large: 18px;
    --font-size-h1: 3.75rem;
    --font-size-h2: 2.625rem;
    --font-size-h3: 1.5rem;
    
    --font-weight-regular: 400;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    --line-height-text: 1.65;
    --line-height-heading: 1.15;
    
    --spacing-unit: 1rem;
    --spacing-large: 3rem;
    --spacing-xlarge: 5rem;
}

/* ========================================
   Reset & Global
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    line-height: var(--line-height-text);
    color: var(--color-dark);
    background-color: var(--color-white);
    font-weight: var(--font-weight-regular);
}

/* ========================================
   Typography
   ======================================== */

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-heading);
    margin-bottom: var(--spacing-large);
    color: var(--color-dark);
    letter-spacing: -0.3px;
}

h1 {
    font-size: var(--font-size-h1);
    font-weight: 700;
}

h2 {
    font-size: var(--font-size-h2);
    font-weight: 700;
}

h3 {
    font-size: var(--font-size-h3);
    margin-bottom: 1rem;
    font-weight: var(--font-weight-semibold);
}

p {
    margin-bottom: 1.5rem;
    max-width: 75ch;
    color: var(--color-dark);
}

em {
    font-style: italic;
    color: var(--color-primary);
    font-weight: var(--font-weight-semibold);
}

/* ========================================
   Container & Layout
   ======================================== */

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

section {
    padding: var(--spacing-xlarge) 0;
    scroll-margin-top: 100px;
}

section.section {
    background-color: var(--color-white);
}

section.section-alt {
    background-color: var(--color-light);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

main {
    overflow: hidden;
}

/* ========================================
   Header & Navigation
   ======================================== */

.header {
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar {
    padding: 1.5rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    flex: 0 0 auto;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
    letter-spacing: 0.5px;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.navbar-menu a {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
}

.navbar-menu a:hover {
    color: var(--color-primary);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-dark);
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
}

/* ========================================
   Section: Hero
   ======================================== */

.hero {
    position: relative;
    padding: 5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,26,26,0.5), rgba(27,79,114,0.4));
    z-index: -1;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    width: 100%;
    position: relative;
    z-index: 10;
}

.hero-subtitle {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-white);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: var(--line-height-heading);
    letter-spacing: -0.5px;
}

.hero-tagline {
    font-size: 1.25rem;
    font-weight: var(--font-weight-regular);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Section Headers & Common Styles
   ======================================== */

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
    line-height: var(--line-height-heading);
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary);
    margin: 0 auto;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
}


.lead {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

/* ========================================
   Problem Section
   ======================================== */

.problem-section {
    background-color: var(--color-light);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.problem-content {
    max-width: 75ch;
    margin: 0 auto;
}

.problem-content h2 {
    font-size: var(--font-size-h2);
    font-weight: 700;
}

.problem-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
}

.problem-list li {
    font-size: 1.05rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
}

.problem-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

/* ========================================
   What Is Section
   ======================================== */

.whatis-section {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: var(--color-white);
    padding: var(--spacing-xlarge) 0;
    position: relative;
}

.whatis-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.whatis-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26,26,26,0.8), rgba(45,45,45,0.9));
    z-index: 1;
}

.whatis-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: none;
    margin: 0;
}

.whatis-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatis-image img {
    max-width: 100%;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.whatis-text {
    max-width: 75ch;
}

.whatis-text h2 {
    color: var(--color-white);
    margin-bottom: 2rem;
    font-size: 2.625rem;
}

.whatis-text p {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--color-white);
    margin-bottom: 1.75rem;
}

.whatis-intro {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-white);
}

/* ========================================
   Audience Section (For / Not For)
   ======================================== */

.audience-section {
    background-color: var(--color-light);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.audience-card {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: 4px;
    border-left: 4px solid var(--color-primary);
}

.audience-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.audience-card p {
    font-size: 1rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.audience-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.audience-card li {
    font-size: 1rem;
    color: var(--color-secondary);
    margin-bottom: 1.25rem;
    padding-left: 1.75rem;
    position: relative;
    line-height: 1.6;
}

.audience-card i {
    position: absolute;
    left: 0;
    font-weight: 700;
}

.for-card i {
    color: #27ae60;
}

.not-for-card i {
    color: #e74c3c;
}

/* ========================================
   About Section
   ======================================== */

.about-section {
    background-color: var(--color-white);
}

.author-card {
    background: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(27, 79, 114, 0.1);
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    max-width: 850px;
    margin: 0 auto 3rem;
}

.author-image {
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-light), var(--color-border));
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.author-info {
    padding: 2.75rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.author-info h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.author-title {
    color: var(--color-primary)!important;
    font-weight: 600!important;
    font-size: 1rem!important;
    margin-bottom: 0.5rem!important;
    text-transform: uppercase!important;
    letter-spacing: 0.5px!important;
}

.author-credentials {
    color: var(--color-secondary)!important;
    font-style: italic!important;
    margin-bottom: 1.5rem!important;
    font-size: 0.95rem!important;
}

.author-info p {
    font-size: 0.95rem!important;
    margin-bottom: 1.5rem!important;
    color: var(--color-secondary)!important;
    line-height: 1.75!important;
}

.author-info p em {
    font-style: italic;
    color: var(--color-primary);
}

/* Author Quote Callout */
.author-quote {
    max-width: 850px;
    margin: 2rem auto;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, var(--color-light), rgba(27, 79, 114, 0.03));
    border-left: 5px solid var(--color-primary);
    border-radius: 0 10px 10px 0;
    position: relative;
    box-shadow: 0 5px 15px rgba(27, 79, 114, 0.08);
}



.author-quote blockquote {
    margin: 0;
    padding: 0;
    border: none;
    text-align: center;
}

.author-quote blockquote p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--color-dark);
    font-style: italic;
    font-weight: 500;
    margin-bottom: 1.25rem;
    text-align: center;
}

.author-quote cite {
    display: block;
    font-size: 0.95rem;
    font-style: normal;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

/* ========================================
   Why Section (Cards)
   ======================================== */

.why-section {
    background-color: var(--color-light);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.why-card {
    background-color: var(--color-white);
    padding: 2rem;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.why-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.why-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.why-card p {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-secondary);
}

/* ========================================
   Email Section
   ======================================== */

.email-section {
    background-color: var(--color-light);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.email-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.email-subtitle {
    font-size: 1.1rem;
    color: var(--color-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.65;
}

.email-microcopy {
    font-size: 0.9rem;
    color: var(--color-tertiary);
    margin-top: 1.5rem;
    margin-left: auto;
    margin-right: auto;
}

.email-input-wrapper {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.email-input {
    font-size: 1rem;
    padding: 0.85rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: var(--font-body);
    flex: 1 1 auto;
    min-width: 200px;
    height: 44px;
    line-height: 1.5;
    color: var(--color-dark);
}

.email-input::placeholder {
    color: var(--color-tertiary);
}

.email-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(27, 79, 114, 0.1);
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-block;
    padding: 0.95rem 2.75rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 2px 8px rgba(27, 79, 114, 0.15);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    box-shadow: 0 4px 12px rgba(27, 79, 114, 0.25);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Legacy CTA button support */
.cta-button {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 0.95rem 2.75rem;
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    font-family: var(--font-body);
    box-shadow: 0 2px 8px rgba(27, 79, 114, 0.15);
}

.cta-button:hover {
    background-color: var(--color-primary-hover);
    box-shadow: 0 4px 12px rgba(27, 79, 114, 0.25);
}

.cta-button:active {
    transform: translateY(0.5px);
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 2rem 0;
    text-align: center;
    margin-top: var(--spacing-xlarge);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.8rem;
    font-weight: var(--font-weight-regular);
    color: var(--color-tertiary);
}

.footer-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: var(--font-weight-regular);
}

/* ========================================
   Responsive: Tablet & Mobile
   ======================================== */

/* ========================================
   Responsive: Tablet & Mobile
   ======================================== */

@media (max-width: 768px) {
    :root {
        --font-size-h1: 2.75rem;
        --font-size-h2: 1.875rem;
        --font-size-h3: 1.25rem;
        --spacing-xlarge: 3.5rem;
    }

    section {
        padding: 3rem 0;
    }

    .navbar {
        padding: 1rem 0;
    }

    .navbar-menu {
        gap: 1.25rem;
    }

    .navbar-menu a {
        font-size: 0.8rem;
    }

    .hero {
        min-height: auto;
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.875rem;
    }

    .audience-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-card {
        padding: 1.5rem;
    }

    .author-card {
        grid-template-columns: 1fr;
        margin-bottom: 2rem;
    }

    .author-image {
        height: 420px;
    }

    .author-image img {
        object-position: top;
    }

    .author-info {
        padding: 2rem 2rem;
    }

    .author-info h3 {
        font-size: 1.5rem;
    }

    .author-quote {
        padding: 2rem 1.5rem;
        margin: 2rem auto;
    }

    .author-quote blockquote p {
        font-size: 1.05rem;
    }

    .problem-content,
    .whatis-content,
    .author-card,
    .email-content {
        padding: 0 1rem;
    }

    .whatis-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .whatis-text h2 {
        font-size: 1.875rem;
    }
}

@media (max-width: 600px) {
    .navbar .container {
        flex-wrap: wrap;
    }

    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--color-white);
        gap: 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-menu li {
        border-bottom: 1px solid var(--color-border);
    }

    .navbar-menu a {
        display: block;
        padding: 1rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .brand-text {
        font-size: 1rem;
    }

    .email-input-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    #mc_embed_signup #mc-embedded-subscribe {
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    :root {
        --font-size-h1: 2rem;
        --font-size-h2: 1.5rem;
        --spacing-xlarge: 2.5rem;
        --spacing-large: 1.5rem;
    }

    section {
        padding: 2rem 0;
    }

    h1, h2, h3 {
        margin-bottom: 1.5rem;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
    }

    .hero-tagline {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.8rem;
    }

    p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .problem-list li,
    .audience-card li {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        padding-left: 1.25rem;
    }

    .audience-card {
        padding: 1.75rem 1.5rem;
        border-left-width: 3px;
    }

    .audience-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .audience-card p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .lead {
        font-size: 1.05rem;
    }

    .whatis-text p,
    .problem-content p {
        font-size: 1rem;
        line-height: 1.65;
    }

    .author-card {
        grid-template-columns: 1fr;
        margin-bottom: 1.5rem;
        box-shadow: 0 5px 15px rgba(27, 79, 114, 0.08);
    }

    .author-image {
        height: 420px;
    }

    .author-image img {
        object-position: top;
    }

    .author-info {
        padding: 1.75rem 1.5rem;
    }

    .author-info h3 {
        font-size: 1.35rem;
        margin-bottom: 0.4rem;
    }

    .author-title {
        font-size: 0.9rem!important;
        margin-bottom: 0.4rem!important;
    }

    .author-credentials {
        font-size: 0.85rem!important;
        margin-bottom: 1rem!important;
    }

    .author-info p {
        font-size: 0.9rem!important;
        margin-bottom: 1.25rem!important;
        line-height: 1.65!important;
    }

    .author-quote {
        padding: 1.5rem 1rem;
        margin: 1.5rem 0;
        border-left-width: 4px;
    }

    .author-quote::before {
        font-size: 2.5rem;
        left: 10px;
    }

    .author-quote blockquote p {
        font-size: 1rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }

    .author-quote cite {
        font-size: 0.85rem;
    }

    .why-icon {
        font-size: 2rem;
    }

    .why-card h3 {
        font-size: 1.1rem;
    }

    .why-card p {
        font-size: 0.9rem;
    }

    .email-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .email-input {
        padding: 0.75rem;
    }

    .btn {
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
    }
}

/* ========================================
   Utility: Transitions & Animations
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        animation-duration: 0.01ms!important;
        animation-iteration-count: 1!important;
        transition-duration: 0.01ms!important;
    }
}
