/* Base Styles */
:root {
    --color-primary: #2e7d32;
    --color-primary-dark: #1b5e20;
    --color-secondary: #ff6f00;
    --color-secondary-dark: #e65100;
    --color-tertiary: #0277bd;
    --color-light: #f5f5f5;
    --color-dark: #212121;
    --color-gray: #757575;
    --color-gray-light: #bdbdbd;
    --color-success: #43a047;
    --color-error: #e53935;
    
    --font-primary: 'Raleway', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.15);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.section-heading.text-left {
    text-align: left;
}

.section-heading.light h2,
.section-heading.light .section-subheading {
    color: var(--color-light);
}

.section-subheading {
    font-size: 1.1rem;
    color: var(--color-gray);
    max-width: 700px;
    margin: 0 auto;
}

.accent-line {
    width: 80px;
    height: 4px;
    background-color: var(--color-primary);
    margin: 1.5rem auto;
    border-radius: 2px;
}

.accent-line.light {
    background-color: var(--color-light);
}

.section-heading.text-left .accent-line {
    margin-left: 0;
}

.btn-primary, .btn-secondary, .btn-hero, .btn-hero-secondary, .btn-kursus, .btn-lokation, .btn-submit, .btn-newsletter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
}

.btn-primary, .btn-submit, .btn-newsletter {
    background-color: var(--color-primary);
    color: white;
}

.btn-primary:hover, .btn-submit:hover, .btn-newsletter:hover {
    background-color: var(--color-primary-dark);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: white;
}

.btn-hero {
    background-color: var(--color-secondary);
    color: white;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.btn-hero:hover {
    background-color: var(--color-secondary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-hero-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(10px);
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-md);
}

.btn-hero-secondary:hover {
    background-color: rgba(255, 255, 255, 0.25);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-kursus {
    background-color: var(--color-secondary);
    color: white;
}

.btn-kursus:hover {
    background-color: var(--color-secondary-dark);
    color: white;
}

.btn-lokation {
    background-color: var(--color-tertiary);
    color: white;
}

.btn-lokation:hover {
    background-color: #01579b;
    color: white;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.scrolled {
    background-color: white;
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo img {
    height: 48px;
    width: auto;
}

.primary-navigation {
    margin-left: auto;
    margin-right: 2rem;
}

.nav-list {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    color: var(--color-dark);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.header-cta {
    min-width: 150px;
}

.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
}

.hamburger {
    width: 40px;
    height: 40px;
}

.line {
    fill: var(--color-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: url('images/hero.jpg') no-repeat center center/cover;
    padding: 0 1rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Om Os Section */
.om-os-section {
    padding: 6rem 0;
    background-color: white;
}

.om-os-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.om-os-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.om-os-image::before {
    content: '';
    display: block;
    padding-top: 75%;
}

.om-os-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.om-os-image:hover img {
    transform: scale(1.05);
}

.om-os-content h3 {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.om-os-features {
    margin: 2rem 0;
}

.feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(46, 125, 50, 0.1);
    border-radius: 50%;
}

.feature-icon svg {
    fill: var(--color-primary);
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.feature-text p {
    margin-bottom: 0;
    color: var(--color-gray);
}

/* Kurser Section */
.kurser-section {
    padding: 6rem 0;
    background-color: var(--color-primary);
    color: white;
}

.kurser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.kursus-card {
    background-color: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.kursus-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.kursus-image {
    height: 200px;
    overflow: hidden;
}

.kursus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.kursus-card:hover .kursus-image img {
    transform: scale(1.1);
}

.kursus-content {
    padding: 1.5rem;
    color: var(--color-dark);
}

.kursus-content h3 {
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.kursus-details {
    margin: 1.5rem 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 1rem;
}

.kursus-details li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.kursus-details li span:first-child {
    font-weight: 600;
    color: var(--color-gray);
}

.kursus-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.kursus-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* Fordele Section */
.fordele-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

.fordele-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.fordel-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.fordel-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.fordel-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(46, 125, 50, 0.1);
    border-radius: 50%;
}

.fordel-icon svg {
    fill: var(--color-primary);
}

.fordel-card h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.fordel-card p {
    color: var(--color-gray);
    margin-bottom: 0;
}

/* Instruktorer Section */
.instruktorer-section {
    padding: 6rem 0;
    background-color: var(--color-tertiary);
    color: white;
}

.instruktorer-slider {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
}

.instruktor-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: grid;
    grid-template-columns: 300px 1fr;
    box-shadow: var(--shadow-md);
}

.instruktor-image {
    height: 100%;
    overflow: hidden;
}

.instruktor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instruktor-info {
    padding: 2rem;
}

.instruktor-title {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.instruktor-bio {
    margin-bottom: 1.5rem;
}

.instruktor-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.instruktor-specialties span {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.slider-prev, .slider-next {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-prev:hover, .slider-next:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.slider-prev svg, .slider-next svg {
    fill: white;
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
    margin: 0 1rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: white;
    transform: scale(1.2);
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background-color: white;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-quote {
    margin-bottom: 1rem;
}

.testimonial-quote svg {
    fill: var(--color-primary);
    opacity: 0.6;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.testimonial-author p {
    margin-bottom: 0;
    font-size: 0.85rem;
    color: var(--color-gray);
}

/* Lokationer Section */
.lokationer-section {
    padding: 6rem 0;
    background-color: var(--color-primary-dark);
    color: white;
}

.lokationer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.lokation-card {
    background-color: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.lokation-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.lokation-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.lokation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lokation-card:hover .lokation-image img {
    transform: scale(1.1);
}

.lokation-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--color-secondary);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
}

.lokation-info {
    padding: 1.5rem;
    color: var(--color-dark);
}

.lokation-info h3 {
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.lokation-details {
    margin: 1.5rem 0;
}

.lokation-details li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--color-gray);
    font-size: 0.9rem;
}

.lokation-details li svg {
    fill: var(--color-primary);
}

/* Maps Section */
.maps-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

.maps-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
}

.kontakt-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.kontakt-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
}

.kontakt-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(46, 125, 50, 0.1);
    border-radius: 50%;
}

.kontakt-icon svg {
    fill: var(--color-primary);
}

.kontakt-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.kontakt-text p {
    color: var(--color-gray);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Kontakt Section */
.kontakt-section {
    padding: 6rem 0;
    background-color: white;
}

.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.kontakt-features {
    margin-top: 2rem;
}

.kontakt-feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.kontakt-form-container {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.kontakt-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--color-gray-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.checkbox-group input {
    width: 20px;
    height: 20px;
}

.checkbox-group label {
    font-size: 0.85rem;
    color: var(--color-gray);
}

.btn-submit {
    margin-top: 1rem;
    width: 100%;
    padding: 1rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 4rem 0;
    background-color: var(--color-tertiary);
    color: white;
}

.newsletter-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.newsletter-content h2 {
    margin-bottom: 0.5rem;
}

.newsletter-content p {
    margin-bottom: 0;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    min-width: 300px;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: var(--font-secondary);
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
    outline: none;
    border-color: white;
}

.btn-newsletter {
    background-color: white;
    color: var(--color-tertiary);
    font-weight: 600;
}

.btn-newsletter:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--color-tertiary);
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-branding p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 400px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-links h3,
.footer-kontakt h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-links h3::after,
.footer-kontakt h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--color-primary);
    margin-top: 0.75rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: white;
}

.footer-kontakt ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-kontakt ul li svg {
    fill: var(--color-primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .header-container {
        height: 70px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .om-os-grid,
    .kontakt-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .om-os-image::before {
        padding-top: 60%;
    }
    
    .instruktor-card {
        grid-template-columns: 1fr;
    }
    
    .instruktor-image {
        height: 300px;
    }
    
    .newsletter-container {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .header-cta {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .primary-navigation {
        position: fixed;
        top: 70px;
        right: 0;
        width: 100%;
        height: 0;
        background-color: white;
        overflow: hidden;
        transition: height 0.3s ease;
        box-shadow: var(--shadow-md);
        margin-right: 0;
    }
    
    .primary-navigation.active {
        height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 1rem;
    }
    
    .nav-list li {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-container,
    .fordele-container,
    .lokationer-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.slide-in-left {
    animation: slideInLeft 0.5s ease forwards;
}

.slide-in-right {
    animation: slideInRight 0.5s ease forwards;
}

.slide-in-up {
    animation: slideInUp 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}