/* ==========================================================
   NORIE ANNE PORTFOLIO
   COLOR PALETTE
   Brown + White + Khaki + Dark Navy + Black
========================================================== */


/* ==========================================================
   RESET
========================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background:
        #11100e;

    color:
        #f5f1e8;

    overflow-x: hidden;

    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}


/* ==========================================================
   COLOR VARIABLES
========================================================== */

:root {

    --black:
        #11100e;

    --soft-black:
        #181614;

    --brown:
        #5b4030;

    --brown-light:
        #8b6a52;

    --khaki:
        #c6b596;

    --khaki-light:
        #e6dcc9;

    --white:
        #f5f1e8;

    --navy:
        #101d32;

    --navy-light:
        #1b2b45;

    --gray:
        #aaa49a;

    --border:
        rgba(198, 181, 150, 0.22);
}


/* ==========================================================
   BACKGROUND
========================================================== */

.background-layer {
    position: fixed;

    inset: 0;

    width: 100%;
    height: 100%;

    z-index: -10;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(91, 64, 48, 0.30),
            transparent 32%
        ),

        radial-gradient(
            circle at 85% 75%,
            rgba(16, 29, 50, 0.60),
            transparent 38%
        ),

        #11100e;
}

.dot-field {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    opacity: 0.9;
}

#dotCanvas {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;
}


/* ==========================================================
   NAVIGATION
========================================================== */

.navbar {
    position: fixed;

    top: 20px;
    left: 50%;

    transform: translateX(-50%);

    width: min(
        1180px,
        calc(100% - 40px)
    );

    height: 64px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 8px 10px 8px 18px;

    border:
        1px solid var(--border);

    border-radius: 999px;

    background:
        rgba(17, 16, 14, 0.78);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    z-index: 100;

    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.25);
}


/* ==========================================================
   LOGO
========================================================== */

.logo {
    font-size: 25px;

    font-weight: 800;

    letter-spacing: -1px;

    color:
        var(--white);

    padding: 10px 14px;

    border-radius: 50%;

    transition:
        transform 0.35s ease,
        color 0.35s ease;
}

.logo span {
    color:
        var(--khaki);
}

.logo:hover {
    transform:
        rotate(360deg)
        scale(1.08);

    color:
        var(--khaki);
}


/* ==========================================================
   NAV LINKS
========================================================== */

.nav-links {
    display: flex;

    align-items: center;

    gap: 4px;

    padding: 4px;

    border-radius: 999px;

    background:
        rgba(245, 241, 232, 0.06);
}

.nav-pill {
    position: relative;

    padding:
        10px 18px;

    border-radius:
        999px;

    font-size: 13px;

    font-weight: 700;

    text-transform:
        uppercase;

    letter-spacing:
        0.8px;

    color:
        var(--khaki-light);

    overflow: hidden;

    transition:
        color 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease;
}

.nav-pill::before {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    left: 50%;
    bottom: -115px;

    transform:
        translateX(-50%)
        scale(0);

    border-radius: 50%;

    background:
        var(--khaki);

    transition:
        transform 0.55s
        cubic-bezier(
            0.34,
            1.56,
            0.64,
            1
        );

    z-index: -1;
}

.nav-pill:hover::before,
.nav-pill.active::before {
    transform:
        translateX(-50%)
        scale(1);
}

.nav-pill:hover,
.nav-pill.active {
    color:
        var(--black);

    transform:
        translateY(-2px);
}


/* ==========================================================
   MOBILE MENU BUTTON
========================================================== */

.mobile-menu-button {
    display: none;

    width: 44px;
    height: 44px;

    border: none;

    border-radius: 50%;

    background:
        var(--khaki);

    cursor: pointer;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;
}

.mobile-menu-button span {
    width: 17px;
    height: 2px;

    border-radius: 2px;

    background:
        var(--black);

    transition:
        transform 0.3s ease;
}

.mobile-menu-button.active span:first-child {
    transform:
        translateY(3.5px)
        rotate(45deg);
}

.mobile-menu-button.active span:last-child {
    transform:
        translateY(-3.5px)
        rotate(-45deg);
}


/* ==========================================================
   MOBILE MENU
========================================================== */

.mobile-menu {
    position: fixed;

    top: 94px;

    left: 20px;
    right: 20px;

    padding: 8px;

    border:
        1px solid var(--border);

    border-radius: 25px;

    background:
        rgba(17, 16, 14, 0.95);

    backdrop-filter:
        blur(18px);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(-10px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        visibility 0.3s ease;

    z-index: 99;
}

.mobile-menu.active {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}

.mobile-menu a {
    display: block;

    padding: 15px 18px;

    border-radius: 18px;

    color:
        var(--khaki-light);

    font-weight: 700;

    text-transform:
        uppercase;

    font-size: 13px;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.mobile-menu a:hover {
    background:
        var(--khaki);

    color:
        var(--black);
}


/* ==========================================================
   GENERAL SECTION
========================================================== */

.section {
    width:
        min(
            1180px,
            calc(100% - 60px)
        );

    margin:
        0 auto;

    padding:
        120px 0;
}

.small-text {
    color:
        var(--khaki);

    font-size:
        12px;

    font-weight:
        800;

    letter-spacing:
        3px;

    margin-bottom:
        15px;
}

.section-heading {
    margin-bottom:
        55px;
}

.section-heading h2 {
    font-size:
        clamp(
            42px,
            6vw,
            76px
        );

    line-height:
        0.98;

    letter-spacing:
        -3px;
}

.section-heading h2 span {
    color:
        var(--khaki);
}


/* ==========================================================
   HERO
========================================================== */

.hero {
    width:
        min(
            1180px,
            calc(100% - 60px)
        );

    min-height:
        100vh;

    margin:
        0 auto;

    padding:
        150px 0 80px;

    display:
        grid;

    grid-template-columns:
        1.05fr 0.95fr;

    align-items:
        center;

    gap:
        60px;
}


/* ==========================================================
   HERO CONTENT
========================================================== */

.hero-content {
    position:
        relative;

    z-index:
        2;
}

.hero h1 {
    font-size:
        clamp(
            55px,
            7vw,
            100px
        );

    line-height:
        0.92;

    letter-spacing:
        -5px;

    margin-bottom:
        20px;

    color:
        var(--white);
}

.hero h1 span {
    display:
        block;

    color:
        var(--khaki);
}

.hero h2 {
    font-size:
        clamp(
            18px,
            2vw,
            25px
        );

    font-weight:
        500;

    color:
        var(--brown-light);

    margin-bottom:
        25px;
}

.hero-description {
    max-width:
        570px;

    color:
        var(--gray);

    font-size:
        16px;

    line-height:
        1.8;

    margin-bottom:
        35px;
}


/* ==========================================================
   BUTTONS
========================================================== */

.hero-buttons,
.contact-buttons {
    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        12px;
}

.btn {
    position:
        relative;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        12px;

    min-height:
        52px;

    padding:
        0 22px;

    border:
        1px solid var(--khaki);

    border-radius:
        999px;

    background:
        var(--khaki);

    color:
        var(--black);

    font-size:
        13px;

    font-weight:
        800;

    text-transform:
        uppercase;

    letter-spacing:
        0.8px;

    overflow:
        hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}

.btn::before {
    content:
        "";

    position:
        absolute;

    width:
        0;

    height:
        0;

    border-radius:
        50%;

    background:
        var(--navy);

    left:
        50%;

    top:
        50%;

    transform:
        translate(-50%, -50%);

    transition:
        width 0.45s ease,
        height 0.45s ease;
}

.btn:hover::before {
    width:
        300px;

    height:
        300px;
}

.btn:hover {
    color:
        var(--white);

    transform:
        translateY(-5px);

    box-shadow:
        0 12px 30px
        rgba(198, 181, 150, 0.25);
}

.btn span {
    position:
        relative;

    z-index:
        2;
}

.btn-outline {
    background:
        transparent;

    color:
        var(--khaki);
}

.btn-outline::before {
    background:
        var(--khaki);
}

.btn-outline:hover {
    color:
        var(--black);
}


/* ==========================================================
   TARGET ARROW
========================================================== */

.target-arrow {
    width:
        27px;

    height:
        27px;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        1px solid currentColor;

    border-radius:
        50%;

    font-size:
        15px;

    line-height:
        1;

    transition:
        transform 0.4s ease;
}

.btn:hover .target-arrow {
    transform:
        rotate(360deg)
        scale(1.15);
}


/* ==========================================================
   HERO IMAGE
========================================================== */

.hero-image {
    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    position:
        relative;

    animation:
        heroBounce
        1.4s
        cubic-bezier(
            0.34,
            1.56,
            0.64,
            1
        )
        both;
}

.hero-image-frame {
    position:
        relative;

    width:
        min(
            430px,
            85vw
        );

    aspect-ratio:
        4 / 5;

    overflow:
        hidden;

    border:
        2px solid
        rgba(
            198,
            181,
            150,
            0.7
        );

    border-radius:
        30px;

    background:
        var(--khaki);

    box-shadow:
        0 25px 60px
        rgba(0, 0, 0, 0.4);

    transition:
        transform 0.5s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        ),
        box-shadow 0.5s ease;
}

.hero-image-frame img {
    width:
        100%;

    height:
        100%;

    display:
        block;

    object-fit:
        cover;

    transition:
        transform 0.6s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        ),
        filter 0.5s ease;
}

.hero-image-frame:hover {
    transform:
        translateY(-12px)
        scale(1.025);

    box-shadow:
        0 30px 70px
        rgba(0, 0, 0, 0.5),

        0 0 35px
        rgba(
            198,
            181,
            150,
            0.3
        );
}

.hero-image-frame:hover img {
    transform:
        scale(1.06);

    filter:
        brightness(1.06);
}


/* ==========================================================
   HERO BOUNCE
========================================================== */

@keyframes heroBounce {

    0% {
        opacity:
            0;

        transform:
            translateY(-120px)
            scale(0.82);
    }

    40% {
        opacity:
            1;

        transform:
            translateY(25px)
            scale(1.04);
    }

    60% {
        transform:
            translateY(-14px)
            scale(0.98);
    }

    75% {
        transform:
            translateY(8px)
            scale(1.01);
    }

    90% {
        transform:
            translateY(-3px)
            scale(1);
    }

    100% {
        opacity:
            1;

        transform:
            translateY(0)
            scale(1);
    }
}


/* ==========================================================
   ABOUT
========================================================== */

.about {
    display:
        grid;

    grid-template-columns:
        0.85fr 1.15fr;

    gap:
        80px;

    align-items:
        center;
}

.about-image .image-frame {
    width:
        min(
            430px,
            100%
        );

    aspect-ratio:
        4 / 5;

    overflow:
        hidden;

    border-radius:
        30px;

    border:
        1px solid var(--border);

    box-shadow:
        0 25px 60px
        rgba(0, 0, 0, 0.35);

    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}

.about-image .image-frame:hover {
    transform:
        translateY(-10px);

    box-shadow:
        0 30px 65px
        rgba(0, 0, 0, 0.5);
}

.about-image img {
    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    display:
        block;

    transition:
        transform 0.6s ease;
}

.about-image .image-frame:hover img {
    transform:
        scale(1.05);
}

.about-content h2 {
    font-size:
        clamp(
            38px,
            5vw,
            67px
        );

    line-height:
        1;

    letter-spacing:
        -3px;

    margin-bottom:
        30px;
}

.about-content h2 span {
    color:
        var(--khaki);
}

.about-content p:not(.small-text) {
    color:
        var(--gray);

    margin-bottom:
        18px;

    max-width:
        650px;
}


/* ==========================================================
   SKILLS
========================================================== */

.skills {
    position:
        relative;
}

.skills-grid {
    display:
        grid;

    grid-template-columns:
        repeat(
            4,
            1fr
        );

    gap:
        14px;
}

.skill-card {
    position:
        relative;

    min-height:
        300px;

    padding:
        28px;

    border:
        1px solid var(--border);

    border-radius:
        28px;

    background:
        rgba(
            245,
            241,
            232,
            0.045
        );

    overflow:
        hidden;

    transition:
        transform 0.4s ease,
        background 0.4s ease,
        border-color 0.4s ease;
}

.skill-card::before {
    content:
        "";

    position:
        absolute;

    width:
        180px;

    height:
        180px;

    right:
        -100px;

    bottom:
        -100px;

    border-radius:
        50%;

    background:
        var(--brown);

    opacity:
        0.2;

    transition:
        transform 0.5s ease;
}

.skill-card:hover {
    transform:
        translateY(-10px);

    background:
        rgba(
            198,
            181,
            150,
            0.09
        );

    border-color:
        rgba(
            198,
            181,
            150,
            0.5
        );
}

.skill-card:hover::before {
    transform:
        scale(2);
}

.skill-number {
    display:
        block;

    color:
        var(--khaki);

    font-size:
        13px;

    font-weight:
        800;

    margin-bottom:
        70px;
}

.skill-card h3 {
    font-size:
        22px;

    margin-bottom:
        14px;
}

.skill-card p {
    color:
        var(--gray);

    font-size:
        14px;

    line-height:
        1.7;
}

.card-arrow {
    position:
        absolute;

    right:
        25px;

    top:
        25px;

    width:
        34px;

    height:
        34px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        1px solid var(--border);

    border-radius:
        50%;

    color:
        var(--khaki);

    transition:
        transform 0.4s ease,
        background 0.4s ease;
}

.skill-card:hover .card-arrow {
    transform:
        rotate(360deg);

    background:
        var(--khaki);

    color:
        var(--black);
}


/* ==========================================================
   PROJECTS
========================================================== */

.projects {
    overflow:
        hidden;
}

.project-layout {
    display:
        grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap:
        60px;

    align-items:
        center;
}

.project-information {
    max-width:
        520px;
}

.project-label {
    display:
        inline-block;

    color:
        var(--khaki);

    font-size:
        11px;

    font-weight:
        800;

    letter-spacing:
        2px;

    margin-bottom:
        18px;
}

.project-information h3 {
    font-size:
        clamp(
            60px,
            8vw,
            100px
        );

    line-height:
        0.9;

    color:
        var(--white);

    margin-bottom:
        25px;

    letter-spacing:
        -5px;
}

.project-information p {
    color:
        var(--gray);

    margin-bottom:
        30px;

    line-height:
        1.8;
}


/* ==========================================================
   PROJECT AUTOMATIC GALLERY
========================================================== */

.project-gallery {
    position:
        relative;

    width:
        100%;

    overflow:
        hidden;

    padding:
        30px 0;

    border-radius:
        35px;

    border:
        1px solid var(--border);

    background:
        rgba(
            16,
            29,
            50,
            0.28
        );
}

.project-gallery::before,
.project-gallery::after {
    content:
        "";

    position:
        absolute;

    top:
        0;

    bottom:
        0;

    width:
        90px;

    z-index:
        3;

    pointer-events:
        none;
}

.project-gallery::before {
    left:
        0;

    background:
        linear-gradient(
            to right,
            #11100e,
            transparent
        );
}

.project-gallery::after {
    right:
        0;

    background:
        linear-gradient(
            to left,
            #11100e,
            transparent
        );
}

.gallery-track {
    display:
        flex;

    gap:
        20px;

    width:
        max-content;

    animation:
        projectMove
        24s
        linear
        infinite;
}

.project-gallery:hover
.gallery-track {
    animation-play-state:
        paused;
}


/* ==========================================================
   PROJECT RECTANGULAR IMAGES
   LANDSCAPE ON ALL SCREEN SIZES
========================================================== */

.project-image {
    flex:
        0 0 280px;

    width:
        280px;

    height:
        150px;

    flex-shrink:
        0;

    border-radius:
        25px;

    overflow:
        hidden;

    border:
        1px solid
        rgba(
            198,
            181,
            150,
            0.35
        );

    background:
        var(--brown);

    box-shadow:
        0 15px 35px
        rgba(0, 0, 0, 0.35);

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

.project-image:hover {
    transform:
        translateY(-12px)
        scale(1.035);

    box-shadow:
        0 25px 50px
        rgba(0, 0, 0, 0.5),

        0 0 30px
        rgba(
            198,
            181,
            150,
            0.3
        );
}

.project-image img {
    width:
        100%;

    height:
        100%;

    display:
        block;

    object-fit:
        cover;

    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}

.project-image:hover img {
    transform:
        scale(1.08);

    filter:
        brightness(1.08);
}


/* ==========================================================
   PROJECT MOVEMENT
========================================================== */

@keyframes projectMove {

    from {
        transform:
            translateX(0);
    }

    to {
        transform:
            translateX(
                -1200px
            );
    }
}


/* ==========================================================
   CONTACT
========================================================== */

.contact {
    text-align:
        center;

    min-height:
        65vh;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;
}

.contact .section-heading {
    margin-bottom:
        35px;
}

.contact .section-heading h2 {
    max-width:
        850px;
}

.contact-buttons {
    justify-content:
        center;
}


/* ==========================================================
   FOOTER
========================================================== */

footer {
    width:
        min(
            1180px,
            calc(100% - 60px)
        );

    margin:
        0 auto;

    padding:
        30px 0 45px;

    border-top:
        1px solid var(--border);

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    color:
        var(--gray);

    font-size:
        13px;
}

.footer-arrow {
    width:
        42px;

    height:
        42px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        1px solid var(--khaki);

    border-radius:
        50%;

    color:
        var(--khaki);

    transition:
        transform 0.4s ease,
        background 0.4s ease,
        color 0.4s ease;
}

.footer-arrow:hover {
    transform:
        translateY(-5px)
        rotate(360deg);

    background:
        var(--khaki);

    color:
        var(--black);

    box-shadow:
        0 0 25px
        rgba(
            198,
            181,
            150,
            0.3
        );
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1000px) {

    .hero {
        grid-template-columns:
            1fr;

        text-align:
            center;

        padding-top:
            140px;
    }

    .hero-content {
        display:
            flex;

        flex-direction:
            column;

        align-items:
            center;
    }

    .hero-description {
        max-width:
            650px;
    }

    .about {
        grid-template-columns:
            1fr;

        gap:
            50px;
    }

    .about-image {
        display:
            flex;

        justify-content:
            center;
    }

    .about-content {
        text-align:
            center;
    }

    .about-content .btn {
        margin:
            10px auto;
    }

    .skills-grid {
        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }

    .project-layout {
        grid-template-columns:
            1fr;

        gap:
            45px;
    }

    .project-information {
        max-width:
            700px;

        text-align:
            center;

        margin:
            0 auto;
    }
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 768px) {

    .navbar {
        width:
            calc(100% - 30px);

        top:
            15px;

        height:
            58px;

        padding:
            7px 8px 7px 14px;
    }

    .nav-links {
        display:
            none;
    }

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

    .section,
    .hero {
        width:
            calc(100% - 36px);
    }

    .hero {
        padding-top:
            120px;

        padding-bottom:
            60px;

        gap:
            45px;
    }

    .hero h1 {
        font-size:
            clamp(
                48px,
                14vw,
                75px
            );

        letter-spacing:
            -4px;
    }

    .hero h2 {
        font-size:
            18px;
    }

    .hero-description {
        font-size:
            14px;

        line-height:
            1.7;
    }

    .hero-buttons {
        justify-content:
            center;
    }

    .hero-image-frame {
        width:
            min(
                330px,
                82vw
            );

        border-radius:
            25px;
    }

    .section {
        padding:
            85px 0;
    }

    .section-heading {
        margin-bottom:
            35px;
    }

    .section-heading h2 {
        font-size:
            clamp(
                40px,
                12vw,
                60px
            );

        letter-spacing:
            -2px;
    }

    .skills-grid {
        grid-template-columns:
            1fr;
    }

    .skill-card {
        min-height:
            260px;
    }

    .skill-number {
        margin-bottom:
            45px;
    }

    .project-information h3 {
        font-size:
            70px;

        letter-spacing:
            -4px;
    }


    /* ======================================================
       MOBILE PROJECT GALLERY
       KEEP LANDSCAPE
    ====================================================== */

    .project-gallery {
        width:
            100%;

        padding:
            20px 0;

        border-radius:
            28px;
    }

    .gallery-track {
        gap:
            14px;
    }

    .project-image {
        flex:
            0 0 280px;

        width:
            280px;

        height:
            150px;

        flex-shrink:
            0;

        border-radius:
            21px;
    }

    .project-image img {
        width:
            100%;

        height:
            100%;

        object-fit:
            cover;
    }


    /* Keep movement consistent with
       280px image + 14px gap */

    @keyframes projectMove {

        from {
            transform:
                translateX(0);
        }

        to {
            transform:
                translateX(
                    -1176px
                );
        }
    }


    footer {
        width:
            calc(100% - 36px);

        gap:
            20px;
    }

    footer p {
        max-width:
            260px;
    }
}


/* ==========================================================
   SMALL PHONES
========================================================== */

@media (max-width: 480px) {

    .hero {
        width:
            calc(100% - 28px);
    }

    .section {
        width:
            calc(100% - 28px);
    }

    .hero h1 {
        font-size:
            45px;
    }

    .small-text {
        font-size:
            10px;

        letter-spacing:
            2px;
    }

    .hero-buttons,
    .contact-buttons {
        width:
            100%;

        flex-direction:
            column;
    }

    .btn {
        width:
            100%;
    }

    .hero-image-frame {
        width:
            88vw;
    }


    /* ======================================================
       SMALL PHONE PROJECT IMAGE
       STILL LANDSCAPE
    ====================================================== */

    .project-gallery {
        width:
            100%;

        padding:
            20px 0;
    }

    .project-image {
        flex:
            0 0 260px;

        width:
            260px;

        height:
            140px;

        border-radius:
            20px;
    }

    .project-image img {
        width:
            100%;

        height:
            100%;

        object-fit:
            cover;
    }

    .gallery-track {
        gap:
            14px;
    }

    @keyframes projectMove {

        from {
            transform:
                translateX(0);
        }

        to {
            transform:
                translateX(
                    -1096px
                );
        }
    }


    footer {
        flex-direction:
            column;

        text-align:
            center;
    }
}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior:
            auto;
    }

    .hero-image {
        animation:
            none;
    }

    .gallery-track {
        animation:
            none;
    }

    * {
        transition-duration:
            0.01ms !important;
    }
}