/* 
 * styles.css for "Spring för själ och kropp" - Zyvonirate
 * A complete, responsive design system for the running journey landing page
 */

/* ====== BASE STYLES ====== */

:root {
    /* Primary Color Palette */
    --primary-green: #6DBE45;
    --light-blue: #CDEBEF;
    --off-white: #F1FAF7;
    --accent-orange: #EF8354;
    --dark-text: #333333;
    --medium-text: #555555;
    --light-text: #777777;
    
    /* Gradients */
    --green-gradient: linear-gradient(135deg, #6DBE45 0%, #52a22d 100%);
    --blue-gradient: linear-gradient(135deg, #CDEBEF 0%, #a8d8de 100%);
    --orange-gradient: linear-gradient(135deg, #EF8354 0%, #d66e42 100%);
    
    /* Typography */
    --heading-font: 'Merriweather Sans', sans-serif;
    --body-font: 'Open Sans', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
    
    /* Borders and Shadows */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--space-sm);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--space-sm);
}

a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-orange);
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    margin-left: var(--space-md);
    margin-bottom: var(--space-sm);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: var(--space-sm);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-green);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--medium-text);
    max-width: 700px;
    margin: var(--space-sm) auto 0;
}

/* ====== BUTTONS ====== */

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-medium);
    border: none;
    font-family: var(--body-font);
}

.primary-btn {
    background: var(--green-gradient);
    color: white;
    box-shadow: var(--shadow-sm);
}

.primary-btn:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.hero-btn {
    background: var(--orange-gradient);
    color: white;
    font-size: 1.1rem;
    padding: 1rem 2.2rem;
    box-shadow: 0 4px 20px rgba(239, 131, 84, 0.3);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(239, 131, 84, 0.4);
    color: white;
}

.form-btn {
    background: var(--primary-green);
    color: white;
    width: 100%;
    padding: 1rem;
}

.form-btn:hover {
    background: var(--green-gradient);
    color: white;
}

.newsletter-btn {
    background: var(--accent-orange);
    color: white;
}

.newsletter-btn:hover {
    background: var(--orange-gradient);
    color: white;
}

.plan-btn {
    width: 100%;
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
}

.plan-btn:hover {
    background: var(--primary-green);
    color: white;
}

.featured-btn {
    background: var(--primary-green);
    color: white;
}

.featured-btn:hover {
    background: var(--green-gradient);
    transform: translateY(-2px);
}

/* ====== HEADER & NAVIGATION ====== */

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
}

#header.scrolled {
    box-shadow: var(--shadow-md);
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
}

nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
}

.nav-menu li {
    margin-left: var(--space-md);
}

.nav-menu li a {
    color: var(--dark-text);
    font-weight: 500;
    padding: 0.5rem;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width var(--transition-medium);
}

.nav-menu li a:hover::after,
.nav-menu li a:focus::after {
    width: 100%;
}

.nav-menu .cta-button {
    margin-left: var(--space-md);
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--dark-text);
    margin: 3px 0;
    transition: var(--transition-fast);
}

/* ====== HERO SECTION ====== */

.section-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: scale(1.1);
}

.hero-parallax-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    max-width: 800px;
    padding: var(--space-md);
    position: relative;
    z-index: 1;
    color: white;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.hero-wave svg {
    width: 100%;
    height: 120px;
}

/* ====== PROGRAM SECTION ====== */

.section-program {
    padding: var(--space-xl) 0;
    background-color: var(--off-white);
    position: relative;
}

.program-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.program-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--light-blue);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-lg);
    width: 100%;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    border-radius: var(--border-radius-lg) 0 var(--border-radius-lg) var(--border-radius-lg);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
    border-radius: 0 var(--border-radius-lg) var(--border-radius-lg) var(--border-radius-lg);
}

.week-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.timeline-content {
    width: 45%;
    padding: var(--space-md);
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
}

.timeline-content h3 {
    color: var(--primary-green);
    margin-top: var(--space-md);
    font-size: 1.4rem;
}

.timeline-details {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.physical-goal, .mental-goal {
    flex: 1;
    min-width: 200px;
    padding: var(--space-sm);
    border-radius: var(--border-radius-sm);
}

.physical-goal {
    background-color: rgba(109, 190, 69, 0.1);
}

.mental-goal {
    background-color: rgba(239, 131, 84, 0.1);
}

.physical-goal h4, .mental-goal h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* ====== BENEFITS SECTION ====== */

.section-benefits {
    padding: var(--space-xl) 0;
    background: white;
    position: relative;
}

.benefits-container {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: space-between;
}

.benefit-column {
    flex: 1;
    min-width: 300px;
}

.benefit-column h3 {
    text-align: center;
    margin-bottom: var(--space-md);
    color: var(--primary-green);
}

.benefit-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--space-md);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--space-sm);
}

.benefit-card h4 {
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--medium-text);
    font-size: 0.95rem;
}

.physical-benefits .benefit-card {
    border-left: 4px solid var(--primary-green);
}

.mental-benefits .benefit-card {
    border-left: 4px solid var(--accent-orange);
}

.benefit-3d {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-3d-content {
    position: relative;
    width: 300px;
    height: 300px;
    perspective: 1000px;
}

.rotating-element {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: rotate3d 20s infinite linear;
}

.rotating-element img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
}

@keyframes rotate3d {
    0% {
        transform: rotateY(0) rotateX(10deg);
    }
    100% {
        transform: rotateY(360deg) rotateX(10deg);
    }
}

.benefits-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.benefits-wave svg {
    width: 100%;
    height: 120px;
}

/* ====== HOW IT WORKS SECTION ====== */

.section-how-it-works {
    padding: var(--space-xl) 0;
    background: white;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
}

.step-card {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    background: var(--off-white);
    border-radius: var(--border-radius-lg);
    padding: var(--space-md);
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-medium);
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: var(--space-md) auto;
}

.animated-icon .animated-path {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: dash 2s ease-in-out forwards infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

.step-card h3 {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
}

.step-card p {
    color: var(--medium-text);
    font-size: 0.95rem;
}

/* ====== REVIEWS SECTION ====== */

.section-reviews {
    padding: var(--space-xl) 0;
    background-color: var(--off-white);
    position: relative;
}

.reviews-slider {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.reviews-track {
    display: flex;
    transition: transform var(--transition-slow);
}

.review-card {
    flex: 0 0 100%;
    padding: var(--space-md);
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-sm);
}

.reviewer-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: var(--space-sm);
    border: 3px solid var(--light-blue);
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-info h4 {
    margin-bottom: 0.25rem;
}

.emotion-index {
    display: flex;
    align-items: center;
}

.emotion-label {
    font-size: 0.85rem;
    color: var(--light-text);
    margin-right: 0.5rem;
}

.emotion-bar {
    width: 100px;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
}

.emotion-fill {
    height: 100%;
    background: var(--primary-green);
    border-radius: 3px;
}

.review-content {
    font-style: italic;
    color: var(--medium-text);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: var(--space-md);
}

.slider-prev, .slider-next {
    background: transparent;
    border: none;
    color: var(--primary-green);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition-fast);
}

.slider-prev:hover, .slider-next:hover {
    color: var(--accent-orange);
}

.slider-dots {
    display: flex;
    gap: 8px;
    margin: 0 var(--space-sm);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.dot.active {
    background: var(--primary-green);
}

.reviews-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.reviews-wave svg {
    width: 100%;
    height: 120px;
}

/* ====== SUBSCRIPTION SECTION ====== */

.section-subscription {
    padding: var(--space-xl) 0;
    background-color: var(--off-white);
}

.subscription-plans {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.plan-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-medium);
    position: relative;
}

.plan-card:hover {
    transform: translateY(-10px);
}

.plan-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-green);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-green);
    color: white;
    font-size: 0.9rem;
    padding: 0.3rem 1rem;
    border-radius: 0 0 0 var(--border-radius-md);
}

.plan-header {
    background: var(--light-blue);
    padding: var(--space-md);
    text-align: center;
}

.plan-header h3 {
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.plan-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.2rem;
    margin-top: var(--space-sm);
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.period {
    font-size: 0.9rem;
    color: var(--medium-text);
}

.plan-features {
    padding: var(--space-md);
}

.plan-features ul {
    list-style: none;
    margin: 0;
}

.plan-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.plan-cta {
    padding: 0 var(--space-md) var(--space-md);
    text-align: center;
}

.trial-note {
    font-size: 0.85rem;
    color: var(--light-text);
    margin-top: 0.5rem;
}

.subscription-cta {
    text-align: center;
    margin-top: var(--space-lg);
}

.subscription-cta h3 {
    margin-bottom: var(--space-md);
    color: var(--dark-text);
}

/* ====== CONTACT SECTION ====== */

.section-contact {
    padding: var(--space-xl) 0;
    background: white;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.contact-form-container, .map-container {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    background: var(--off-white);
    padding: var(--space-md);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--space-sm);
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius-sm);
    font-family: var(--body-font);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
    position: relative;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: width var(--transition-medium);
}

.form-group input:focus ~ .focus-border,
.form-group textarea:focus ~ .focus-border {
    width: 100%;
}

.map {
    height: 300px;
    margin-bottom: var(--space-md);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map iframe {
    border-radius: var(--border-radius-lg);
}

.newsletter-container {
    background: var(--light-blue);
    padding: var(--space-md);
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.newsletter-container h3 {
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.newsletter-container p {
    font-size: 0.95rem;
    margin-bottom: var(--space-sm);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius-sm);
    font-family: var(--body-font);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-orange);
}

/* ====== FOOTER ====== */

#footer {
    background: var(--dark-text);
    color: white;
    padding: var(--space-lg) 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    margin-bottom: var(--space-md);
}

.footer-logo-img {
    height: 60px;
    filter: brightness(0) invert(1);
    transition: transform var(--transition-medium);
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer-links {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.footer-links a {
    color: white;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-orange);
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ====== MEDIA QUERIES ====== */

@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .program-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: 100%;
        margin: 0;
        border-radius: var(--border-radius-lg);
    }
    
    .week-badge {
        left: 20px;
        transform: none;
    }
    
    .benefit-3d {
        order: -1;
        margin-bottom: var(--space-md);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-sm);
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: var(--space-lg);
        transition: right var(--transition-medium);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 0 0 var(--space-md) 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .plan-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 576px) {
    .timeline-content {
        padding: var(--space-sm);
    }
    
    .timeline-details {
        flex-direction: column;
    }
    
    .physical-goal, .mental-goal {
        width: 100%;
    }
    
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    
    .step-card {
        width: 100%;
        max-width: 320px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: var(--space-sm);
    }
}

/* ====== ANIMATION STYLES ====== */

[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 0.8s;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="flip-left"] {
    transform: perspective(2500px) rotateY(15deg);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0) scale(1) rotate(0) perspective(0);
}