.suomi {
    display: none;
}

.suomi.active {
    display: block;
}

.english {
    display: none;
}

.english.active {
    display: block;
}

.svenska {
    display: none;
}

.svenska.active {
    display: block;
}

body {
    font-family: 'Barlow', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #28282d;
    /* scroll-snap-type: y mandatory; */
    overflow-y: scroll;
}

header {
    position: fixed;
    width: 100%;
    background: #ffffff;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

hr {
    border: 1px solid black;
    width: 80%;
}

a {
    color: #28282d;
    font-weight: 500;
    text-decoration: none;
}

a:hover {
    text-decoration: underline dashed;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.hero {
    height: 100svh;
    display: flex;
    align-items: end;
    justify-content: center;
    text-align: center;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    background-color: #f54b4b;
    background-attachment: fixed;
    background-size: 100% auto;
    position: relative;
    overflow-x: hidden;
}

.hero-image {
    pointer-events: none;
    position: absolute;
    width: 100%;
    bottom: 30%;
    overflow-x: hidden;
    content: url("metsa.avif");
}

.hero-number {
    position: absolute;
    top: 1em;
    left: 150px;
    width: 100px;
    height: 100px;
    border: 4px solid #28282d;
    background-color: white;
    border-radius: 100px;
    box-sizing: border-box;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    position: absolute;
    top: 1em;
    left: 1em;
    width: 100px;
    height: 100px;
    z-index: 2;
}

.hero-content {
    z-index: 1;
    background: white;
    color: #f54b4b;
    max-width: 33%;
    padding: 20px;
    margin-bottom: 2em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
}

.hero-content h1 {
    color: #d5a6c0;
    margin-bottom: 0.2em;
}

.hero-content p {
    margin-top: 0.2em;
    margin-left: 1em;
    margin-right: 1em;
}

.section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 100vh;
    text-align: center;
    scroll-snap-align: start;
    padding: 40px;
    box-sizing: border-box;
    flex-direction: row;
}

.section:nth-child(even) {
    flex-direction: row-reverse;
}

.section img {
    flex-grow: 1;
    max-width: 400px;
    border: 10px solid white;
    margin: 0 20px;
}

.section-content {
    flex-grow: 3;
    max-width: 600px;
    font-size: 1.5rem;
    text-align: justify;
    margin: 1em;
    -webkit-hyphens: manual;
    -moz-hyphens: manual;
    -ms-hyphens: manual;
    hyphens: manual;
}

.section-content h4 {
    margin-bottom: -1rem;
}

#about {
    background: #f54b4b;
    color: #fff;
}

#values {
    background: #d5a6c0;
}

#why {
    background: #f5c8c3;
}

#what {
    background: #fff;
}

#contact {
    background: #d5a6c0;
}

.btn {
    display: inline-block;
    background: #f54b4b;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
}

footer {
    text-align: center;
    padding: 20px;
    background: #f54b4b;
}

/* Hamburger Icon */
.hamburger {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 30px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger div {
    width: 100%;
    height: 5px;
    background: #fff;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active div {
    background: #f54b4b;
}

.hamburger.active div:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
}

.hamburger.active div:nth-child(2) {
    opacity: 0;
}

.hamburger.active div:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
}

/* Menu Styles */
.menu {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100%;
    background: #fff;
    color: #28282d;
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    transition: right 0.3s;
    z-index: 10;
}

.menu a {
    color: #28282d;
    text-decoration: none;
    padding: 15px;
    /* display: block; */
    font-size: 18px;
}

.menu a:hover {
    background: #d5a6c0;
}

.menu.active {
    right: 0;
}

@media screen and (max-width: 800px) {
    .hero-content {
        max-width: 90%;
        margin-bottom: 1em;
        padding: 0;
    }

    .hero-content h1 {
        font-size: 4rem;
    }

    .hero-content p {
        font-size: 2rem;
    }

    .hero-image {
        position: absolute;
        width: 100%;
        bottom: 50%;
        left: 0;
        content: url("metsamobile.avif");
    }

    .hero-logo {
        top: 0.2em;
        left: 0.2em;
    }

    .hero-number {
        top: 0.2em;
        left: 3em;
    }

    .section img {
        display: none;
    }

    #about img, #what img {
        display: flex;
        width: 50%;
        margin-bottom: 1rem;
    }
    #about, #what {
        flex-direction: column-reverse;
        height: 100%;
    }

    .section {
        padding: 0;
    }

    .section-content {
        font-size: 1.2rem;
    }

    #values {
        background: linear-gradient(0deg, #d5a6c0d2, #d5a6c0d2), url("kirsikka.avif");
        background-size: cover;
        background-repeat: no-repeat;
    }

    #why {
        height: 100%;
    }

    #contact {
        background: linear-gradient(0deg, #d5a6c0d2, #d5a6c0d2), url("taakse.avif");
        background-size: cover;
        background-repeat: no-repeat;
    }
}