/* SDHaarlounge Hoogvliet - Production CSS */
/* Built: 2025-10-20T06:15:05.618Z */
/* Combined CSS - All imports resolved */

/* SDHaarlounge Hoogvliet - Generated CSS */
/* Generated on: 2025-10-20T06:14:08.600Z */
/* Build mode: DEVELOPMENT */

/* assets/css/atoms/elements.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --link-color: #f5d5c8;
    --link-color-reversed: #0a0a0a;
    --cta-color: #00ff41;
    --cta-text-color: #0a0a0a;
    --heading-color: linear-gradient(135deg, #f5d5c8, #d49580);
    --card-bg: #111111;
    --card-border: #222222;
    --secondary-text: #9fb89a;
    --accent-color: #cccccc;
    --usp-bg: #ffffff;
    --usp-text: #000000;
    --header-bg: rgba(10, 10, 10, 0.98);
}

[data-theme="light"] {
    --bg-color: #ffffff;
    --text-color: #000000;
    --link-color: #000000;
    --link-color-reversed: #ffffff;
    --cta-color: #00ff41;
    --cta-text-color: #000000;
    --heading-color: linear-gradient(135deg, #d49580, #c87f5e);
    --card-bg: #f8f8f8;
    --card-border: #e0e0e0;
    --secondary-text: #8ba889;
    --accent-color: #333333;
    --usp-bg: #000000;
    --usp-text: #ffffff;
    --header-bg: rgba(255, 255, 255, 0.98);
}

body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--bg-color);
    overflow-x: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

h1:not([class]),
h2:not([class]),
h3:not([class]),
h4:not([class]),
h5:not([class]),
h6:not([class]) {
    font-family: "Inter", sans-serif;
    background: var(--heading-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5lh;
    line-height: 1;
    padding-bottom: 0.2rem;
}

h1:not([class]),
h2:not([class]) {
    margin-bottom: 0;
}

h3 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    text-align: center;
}

h3.name {
    color: var(--text-color);
    font-family: "Dancing Script", cursive;
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: -1.6rem;
    transform: rotate(-3deg);
}

h4 {
    font-size: 1.6rem;
    letter-spacing: -2px;
}

p:not([class]) {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 100;
    margin-bottom: 1.5rem;
    text-align: center;

    [data-theme="light"] & {
        font-weight: 400;
    }
}

a {
    color: var(--link-color);
    text-underline-offset: 6px;
    text-decoration-thickness: 1px;
    font-weight: 500;
    /* text-decoration-color: var(--secondary-text); */
}

strong {
    font-weight: 800;
}

.content-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* assets/css/atoms/animations.css */
@keyframes slide-in-left {
    0% {
        transform: translateX(100%) scale(0.8);
        opacity: 0;
    }
    100% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

@keyframes image-roll {
    0% {
        transform: rotate(30deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes slide-out-left {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@keyframes roll-out-right {
    0% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(100%) scale(0.8);
        opacity: 0;
    }
}

@keyframes image-roll-out {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes parallax-scroll {
    0% {
        transform: translateY(0) scale(1);
        filter: blur(0px);
        opacity: 0.2;
    }
    30% {
        transform: translateY(-15vh) scale(1.08);
        filter: blur(3px);
        opacity: 0.12;
    }
    100% {
        transform: translateY(-40vh) scale(1.2);
        filter: blur(8px);
        opacity: 0.05;
    }
}

@keyframes parallax-scroll-light {
    0% {
        transform: translateY(0) scale(1);
        filter: blur(0px);
        opacity: 0.15;
    }
    30% {
        transform: translateY(-15vh) scale(1.08);
        filter: blur(3px);
        opacity: 0.18;
    }
    100% {
        transform: translateY(-40vh) scale(1.2);
        filter: blur(8px);
        opacity: 0.08;
    }
}

/* Story section animations */
@keyframes slide-in-right {
    0% {
        transform: translateX(-100%) scale(0.8);
        opacity: 0;
    }
    100% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

@keyframes slide-out-right {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes roll-out-left {
    0% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-100%) scale(0.8);
        opacity: 0;
    }
}

@keyframes image-roll-reverse {
    0% {
        transform: rotate(-30deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

/* assets/css/molecules/header.css */
.header {
    position: fixed;
    top: 37px;
    width: 100%;
    background: var(--header-bg);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom: 1px solid var(--card-border);
}

.header.scrolled {
    top: 0;
}
/* assets/css/molecules/logo.css */
.logo {
    align-items: flex-end;
    aspect-ratio: 1 / 1;
    background-color: #fff;
    border: solid 1px rgba(0, 0, 0, 0.2);
    border-radius: 100%;
    display: flex;
    height: 12rem;
    justify-content: flex-end;
    left: -4.2rem;
    padding: 0 0 0.9rem;
    position: absolute;
    top: -3.2rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 12rem;
    .scrolled & {
        top: -2.4rem;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    img {
        height: 9rem;
        width: 9rem;

        @media (min-width: 1024px) {
            height: 13rem;
            width: 13rem;
        }
    }

    @media (min-width: 1024px) {
        height: 16rem;
        width: 16rem;
    }
}
/* assets/css/molecules/navbar.css */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

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


.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem 0 8rem;

    @media (min-width: 1024px) {
        padding: 0;
    }
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    align-items: center;
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.booking-btn {
    background: var(--cta-color);
    color: var(--cta-text-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.theme-toggle {
    align-items: center;
    background: var(--card-bg);
    border-radius: 50px;
    border: 1px solid var(--card-border);
    cursor: pointer;
    display: flex;
    font-size: 1.2rem;
    height: 40px;
    justify-content: center;
    padding: 0.5rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 40px;

    @media (min-width: 768px) {
        position: absolute;
        right: 2.4rem;
        top: 50%;
        transform: translateY(-50%);   
    }
}

@media (max-width: 768px) {
    .nav {
        justify-content: flex-end;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: flex;
        margin-left: 0.8rem;
        z-index: 1001;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}


/* assets/css/molecules/usps.css */
.usp-bar {
    background: var(--usp-bg);
    color: var(--usp-text);
    padding: 0.5rem 0;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.usp-bar a {
    color: var(--link-color-reversed);
}

.usp-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 0 2rem;
    flex-wrap: wrap;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .usp-content {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .usp-item {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .usp-content {
        flex-direction: column;
    }

    .usp-item {
        display: none;
        font-size: 0.7rem;
    }

    .usp-item:last-child {
        align-self: flex-end;
        display: flex;
    }
}

/* assets/css/molecules/footer.css */
/* CTA Section */
.cta-section {
    text-align: center;
    padding: 4rem 0;
    background: var(--card-bg);
}

.cta-section h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: -2px;
    color: var(--text-color);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;

    @media (min-width: 768px) {
        flex-direction: row;
    }
}

.cta-button {
    display: inline-block;
    background: var(--heading-color);
    color: #000;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    &.booking-btn {
        background: var(--cta-color);
    }
}

/* Footer Styling */
.footer {
    background: var(--card-bg);
    border-top: 1px solid var(--card-border);
    padding: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3rem;
    padding: 2rem 2rem 4rem;
    align-items: start;
}

/* Footer Logo Section */
.footer-logo {
    aspect-ratio: 1 / 1;
    align-items: center;
    background-color: #fff;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    max-width: 12rem;
}

.footer-logo img {
    max-width: 10rem;
}

/* Footer Sections */
.footer-contact,
.footer-hours,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-contact h4,
.footer-hours h4,
.footer-social h4 {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Contact Details */
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    background: var(--heading-color);
    color: var(--link-color-reversed);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(212, 149, 128, 0.3);
    transition: all 0.3s ease;
}

.contact-text {
    line-height: 1.6;
    color: var(--accent-color);
}

.contact-text strong {
    color: var(--text-color);
    font-weight: 600;
}

.route-link,
.phone-link {
    color: var(--secondary-text);
}

/* Hours List */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hour-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hour-icon {
    color: var(--secondary-text);
    flex-shrink: 0;
}

.hour-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hour-text .day {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.9rem;
}

.hour-text .time {
    color: var(--accent-color);
    font-size: 0.85rem;
}

/* Social Buttons */
.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-btn.facebook {
    background: var(--card-bg);
    color: #4267b2;
    border-color: #4267b2;
}

.social-btn.facebook:hover {
    background: #4267b2;
    color: var(--link-color-reversed);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 103, 178, 0.3);
}

.social-btn.instagram {
    background: var(--card-bg);
    color: #e4405f;
    border-color: #e4405f;
}

.social-btn.instagram:hover {
    background: linear-gradient(
        45deg,
        #f09433 0%,
        #e6683c 25%,
        #dc2743 50%,
        #cc2366 75%,
        #bc1888 100%
    );
    color: var(--link-color-reversed);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(228, 64, 95, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--card-border);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    color: var(--accent-color);
    font-size: 0.85rem;
}

[data-theme="dark"] .footer-bottom-content {
    color: var(--secondary-text);
}

.footer-bottom-content p {
    margin: 0;
    font-size: 0.9rem;
    color: inherit;
}

.footer-experience {
    color: #f5d5c8 !important;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 1.5rem;
        text-align: left;
    }

    /*.footer-logo {
        align-items: center;
        text-align: center;
    }

    .contact-detail {
        justify-content: left;
        text-align: left;
    }

    .hours-list {
        align-items: center;
    }

    .hour-item {
        justify-content: center;
    }

    .social-buttons {
        align-items: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }*/
}

@media (max-width: 480px) {
    .footer-main {
        padding: 2rem 1rem;
    }

    .footer-logo {
        display: none;
    }
}

/* Legacy styles for compatibility */
.fb-follow-simple,
.ig-follow-simple {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #9fb89a;
    border: none;
    border-radius: 20px;
    text-decoration: none;
    color: white;
    font-family: "Arial", sans-serif;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.fb-follow-simple:hover,
.ig-follow-simple:hover {
    background: #8ba889;
    text-decoration: none;
    color: white;
}

/* assets/css/organisms/hero.css */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 9.5rem;
    padding-bottom: 3rem;

    @media (min-width: 768px) {
        padding-top: 6rem;
    }
}

.hero-background-image {
    background: var(--bg-color);
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 120%;
    width: 100vw;
    will-change: transform, filter, opacity;
    z-index: -1;

    img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        opacity: 0.2;
        transition: all 0.3s ease-out;

        [data-theme="light"] & {
            opacity: 0.1;
        }
    }
}

.hero-image {
    position: relative;
    img {
        aspect-ratio: 1 / 1;
        border-radius: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top -44px left 0;
        width: 100%;
    }
}

.hero-image-overlay {
    align-items: center;
    aspect-ratio: 1 / 1;
    background: var(--heading-color);
    border-radius: 50%;
    color: #fff;
    display: flex;
    font-size: clamp(1.3rem, 3vw, 3rem);
    font-weight: 900;
    justify-content: center;
    letter-spacing: -1px;
    line-height: 1;
    padding: 1rem;
    position: absolute;
    right: -1.5rem;
    text-align: center;
    text-transform: uppercase;
    top: -2rem;
    animation: float 4s ease-in-out infinite;

    @media (min-width: 768px) {
        padding: 1.6rem;
    }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    z-index: 1;
}

@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.hero-text .welcome {
    font-size: 1rem;
    color: var(--secondary-text);
    margin-bottom: 0.8rem;
    font-weight: 800;
}

.hero-text h1 {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 0.9;
    padding-bottom: 0.6rem;
    letter-spacing: -3px;
}

.hero-text .tagline {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 1.6rem;
    font-weight: 100;
    max-width: 400px;

    [data-theme="light"] & {
        font-weight: 400;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    white-space: nowrap;

    @media (min-width: 1280px) {
        flex-direction: row;
        gap: 2rem;
    }
}

.contact-item {
    display: flex;
    flex-direction: column;
}

.contact-item label {
    color: var(--secondary-text);
    margin-bottom: 0.6rem;
    font-weight: 500;
}

.contact-item span {
    color: var(--text-color);
    font-weight: 100;

    [data-theme="light"] & {
        font-weight: 400;
    }
}

.contact-item.socials {
    flex-direction: row;
    gap: 1rem;

    @media (min-width: 1280px) {
        flex-direction: column;
        white-space: nowrap;
    }
}

/* ANIMATIONS */
.hero-background-image img {
    animation: parallax-scroll linear both;
    animation-timeline: scroll(root);

    [data-theme="light"] & {
        animation: parallax-scroll-light linear both;
        animation-timeline: scroll(root);
    }
}

.hero-text {
    @media (min-width: 768px) {
        animation: slide-out-left linear both;
        animation-timeline: scroll(root);
        animation-range: 0vh 60vh;
    }
}

.hero-image {
    animation: slide-in-left linear both;
    animation-timeline: scroll(root);
    animation-range: 0vh 50vh;

    img {
        animation: image-roll linear both;
        animation-timeline: scroll(root);
        animation-range: 0vh 50vh;
    }

    @media (min-width: 768px) {
        animation:
            slide-in-left 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards,
            roll-out-right linear both;
        animation-delay: 0.8s, 0s;
        animation-timeline: auto, scroll(root);
        animation-range:
            auto,
            0vh 60vh;

        img {
            animation:
                image-roll 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards,
                image-roll-out linear both;
            animation-delay: 0.8s, 0s;
            animation-timeline: auto, scroll(root);
            animation-range:
                auto,
                0vh 60vh;
        }
    }
}

/* assets/css/organisms/services.css */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--card-border);
}

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

.service-icon {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 2rem;
    border: solid 1px var(--text-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--bg-color);
    img {
        height: 3.2rem;
        width: 3.2rem;
    }
}

/* assets/css/organisms/price.css */
.pricing-section {
    margin-top: 8rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.pricing-category {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--card-border);
}

.pricing-category h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: left;
    color: var(--text-color);
    padding: 1rem 0;
    border-bottom: 1px solid var(--card-border);
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--card-border);
}

.price-item:last-child {
    border-bottom: none;
}

.service-name {
    color: var(--accent-color);
    font-weight: 500;
}

.price {
    color: var(--text-color);
    font-weight: 700;
    font-size: 1.1rem;
}

/* assets/css/organisms/story.css */
.story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

/* First story section - image left, text right */
.story-section:first-of-type {
    @media (min-width: 768px) {
        margin-bottom: -4rem;
    }
}

@media (min-width: 768px) {
    .story-section:first-of-type .story-image {
        animation: slide-in-right 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94)
            forwards;
        animation-timeline: view();
        animation-range: entry 30% entry 70%;
    }

    .story-section:first-of-type .story-image img {
        animation: image-roll-reverse 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94)
            forwards;
        animation-timeline: view();
        animation-range: entry 30% entry 70%;
    }
}

@media (min-width: 768px) {
    .story-section:first-of-type .story-text {
        animation: slide-in-left 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
            forwards;
        animation-delay: 0.3s;
        animation-timeline: view();
        animation-range: entry 30% entry 70%;
    }
}

/* Second story section - text left, image right */
@media (min-width: 768px) {
    .story-section:nth-of-type(2) .story-text {
        animation: slide-in-right 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
            forwards;
        animation-delay: 0.3s;
        animation-timeline: view();
        animation-range: entry 30% entry 70%;
    }
}

@media (min-width: 768px) {
    .story-section:nth-of-type(2) .story-image {
        animation: slide-in-left 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94)
            forwards;
        animation-timeline: view();
        animation-range: entry 30% entry 70%;
    }

    .story-section:nth-of-type(2) .story-image img {
        animation: image-roll 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        animation-timeline: view();
        animation-range: entry 30% entry 70%;
    }
}

/* Third story section - same as first (image left, text right) */
.story-section:nth-of-type(3) .story-image img {
    object-position: bottom -60px right 10px;
}

@media (min-width: 768px) {
    .story-section:nth-of-type(3) .story-image {
        animation: slide-in-right 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94)
            forwards;
        animation-timeline: view();
        animation-range: entry 30% entry 70%;
    }

    .story-section:nth-of-type(3) .story-image img {
        animation: image-roll-reverse 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94)
            forwards;
        animation-timeline: view();
        animation-range: entry 30% entry 70%;
    }
}

@media (min-width: 768px) {
    .story-section:nth-of-type(3) .story-text {
        animation: slide-in-left 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
            forwards;
        animation-delay: 0.3s;
        animation-timeline: view();
        animation-range: entry 30% entry 70%;
    }
}

.story-image {
    position: relative;
}

.story-image img {
    aspect-ratio: 1 / 1;
    border-radius: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

@media (max-width: 768px) {
    .story-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .content-container {
        padding: 0 1rem;
    }
}

