/* Hero sektion */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero_img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.9) 0%,
        rgba(0,0,0,0.4) 30%,
        rgba(0,0,0,0) 40%
    );
}

.hero_text {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero_h1_buttons_container {
    position: absolute;
    left: 80px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 560px;
}

.hero_text h1 {
    font-family: "Zalando Sans";
    font-weight: 700;
    font-size: 50px;
    color: white;
    margin: 0;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.hero_buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero_buttons a {
    font-family: "Zalando Sans";
    font-weight: 400;
    font-size: 16px;
    color: black;
    text-decoration: none;
    background: #C3CCA6;
    border-radius: 1000px;
    padding: 18px 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.hero_buttons a:nth-child(2){
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px)
}


.hero_text h2 {
    font-family: "Zalando Sans";
    font-weight: 400;
    font-size: 18px;
    color: black;
    line-height: 1.5;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(6px);
    border-radius: 24px 24px 6px 24px;
    padding: 18px 22px;
    margin: 0;
    position: absolute;
    right: 80px;
    bottom: 80px;
    max-width: 30vw;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}



/* Trustbadges block */

.trustbadges {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;

    position: sticky;
    top: 80px;
    left: 50%;
    transform: translate(-50%);
    margin-top: 10px;

    width: 600px;

    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 1000px;

    z-index: 10;

    font-size: 16px;
}



/* Info sektion */

.info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.eyebrow{
    display:block;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .6;
    margin-bottom: 10px;
}


.info_text h1 {
    font-family: "Zalando Sans SemiExpanded";
    font-size: 30px;
    line-height: 1.15;
    margin: 0;
    margin-bottom: 30px;
}

.info_text p{
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}


.info_image img {
    width: 100%;
    height: auto;
    border-radius: 14px;
}



/* Scroll info kort sektion */

.scroll_info {
    box-sizing: border-box;
    text-align: center;
    position: relative;
}

.scroll_info::after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 100%;
    pointer-events: none;

    background: linear-gradient(
        to left,
        #F1EDE7,
        rgba(241,237,231,0)
    );
}


.scroll_info_cards {
    display: flex;
    column-gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;

    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;

    user-select: none;
    -webkit-user-select: none;

    scroll-padding-left: 0px;
}

.scroll_info_cards::-webkit-scrollbar{
    display: none;              /* Chrome/Safari */
}

.scroll_info_card {
    display: flex;
    flex-direction: column;

    flex: 0 0 auto;
    margin: 0;

    scroll-snap-align: start;
    width: 450px;
    border-radius: 14px;
}

.scroll_info h1 {
    font-family: "Zalando Sans SemiExpanded";
    font-size: 30px;
    line-height: 1.15;
    margin: 0;
    margin-bottom: 30px;
}

.scroll_info_hint {
  margin: 10px 0 16px 0;
  font-size: 14px;
  opacity: 0.7;
  z-index: 10;
  user-select: none;
  justify-self: flex-end;
  position: absolute;
  right: 0;
  bottom: 100px;
}

.scroll_info_hint.hidden {
  opacity: 0;
  transform: translateX(-4px);
  transition: 0.2s ease;
  pointer-events: none;
}

.scroll_info_card {
    margin-bottom: 15px;
    padding: 30px;
    text-align: left;
}

.scroll_info_card h2 {
    margin: 0;
    font-size: 25px;
    font-family: "Zalando Sans SemiExpanded";
}

.scroll_info_card ul {
    margin: 0;
    margin-top: 30px;
    padding-left: 20px;
    line-height: 1.4;
    font-size: 16px;
    font-weight: 300;
    text-align: left;
}

.scroll_info li {
    margin-bottom: 10px;
}



/* Korta recensioner block */

.short_reviews {
    text-align: center;
}

.short_reviews h1 {
    margin: 0;
    margin-bottom: 50px;
    font-size: 30px;
    font-family: "Zalando Sans SemiExpanded";
}

.short_reviews_cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: center;
}

.short_reviews_card {
    text-align: left;

    display: flex;
    flex-direction: column;

    background: white;

    padding: 40px;
    border-radius: 20px;
}

.short_reviews_card_apostrof {
    width: 35px;
    height: auto;
    padding: 0;
    margin: 0;
}

.short_reviews_card p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    margin: 15px 0;
    font-style: italic;
    font-weight: 400;
}

.short_reviews_card_profile {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    gap: 20px;
}

.short_reviews_card_profile p {
    font-size: 16px;
    font-weight: 600;
    font-style: normal;
}

.short_reviews_card_profile img {
    width: 50px;
    height: auto;
}

.short_reviews a {
    margin-top: 50px;
}



/* Videoplayer block */

.video_player {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video_player video {
    width: 600px;
    height: auto;
    border-radius: 14px;
}



/* Quality block */

.quality {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.quality h1 {
    margin: 0;
    margin-bottom: 30px;
    font-size: 30px;
    font-family: "Zalando Sans SemiExpanded";
    text-align: left;
    width: 40%;
}

.quality p {
    width: 60%;
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    text-align: center;
}



/* Bigtitle block */

.bigtitle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bigtitle h1 {
    margin: 0;
    margin-bottom: 50px;
    font-size: 30px;
    font-family: "Zalando Sans SemiExpanded";
}



/* VLT block */

.vlt {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.vlt h1 {
    margin: 0;
    margin-bottom: 20px;
    font-size: 30px;
    font-family: "Zalando Sans SemiExpanded";
}

.vlt h2 {
    margin: 0;
    margin-bottom: 50px;
    font-size: 18px;
    font-family: "Zalando Sans";
    font-weight: 400;
}

.vlt img {
    width: 80%;
    height: auto;
    border-radius: 14px;
}





@media (max-width: 1000px) {

    /* Hero sektion */

    .hero {
        position: relative;
        width: 100%;
        height: 100vh;
        overflow: hidden;
    }

    .hero_img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to top,
            rgba(0,0,0,0.9) 0%,
            rgba(0,0,0,0.4) 30%,
            rgba(0,0,0,0) 40%
        );
    }

    .hero_text {
        position: absolute;
        inset: 0;
        z-index: 2;
    }

    .hero_h1_buttons_container {
        position: absolute;
        left: 30px;
        bottom: 30px;
        display: flex;
        flex-direction: column;
        gap: 28px;
        max-width: 90vw;
    }

    .hero_text h1 {
        font-family: "Zalando Sans";
        font-weight: 700;
        font-size: 30px;
        color: white;
        margin: 0;
        text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    }

    .hero_buttons {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }

    .hero_buttons a {
        font-family: "Zalando Sans";
        font-weight: 400;
        font-size: 16px;
        color: black;
        text-decoration: none;
        background: #C3CCA6;
        border-radius: 1000px;
        padding: 18px 22px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
    }

    .hero_buttons a:nth-child(2){
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(6px)
    }


    .hero_text h2 {
        display: none;
    }



    /* Trustbadges block */

    .trustbadges {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;

        position: fixed;
        top: 80px;
        left: 50%;
        transform: translate(-50%);
        margin-top: 5px;

        width: 90%;

        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(8px);
        border-radius: 1000px;

        z-index: 10;

        font-size: 16px;
    }

    .trustbadges p {
        margin: 8px 0;
    }

    .trustbadges_hide {
        display: none;
    }



    /* Info sektion */

    .info {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        width: 90%;
    }

    .eyebrow{
        display:block;
        font-size: 13px;
        letter-spacing: .08em;
        text-transform: uppercase;
        opacity: .6;
        margin-bottom: 10px;
    }

    .info_text {
        grid-row: 2;
        width: 100%;
    }

    .info_text h1 {
        width: 100%;
        font-family: "Zalando Sans SemiExpanded";
        font-size: 30px;
        line-height: 1.15;
        margin: 0;
        margin-bottom: 30px;
    }

    .info_text p{
        width: 95%;
        font-size: 16px;
        line-height: 1.7;
        margin: 0;
    }

    .info_image {
        grid-row: 1;
        width: 100%;
    }

    .info_image img {
        width: 100%;
        height: auto;
        border-radius: 14px;
    }



    /* Scroll info kort sektion */

    .scroll_info {
        box-sizing: border-box;
        text-align: center;
        position: relative;
        width: 90%;
    }

    .scroll_info::after{
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 60px;
        height: 100%;
        pointer-events: none;

        background: linear-gradient(
            to left,
            #F1EDE7,
            rgba(241,237,231,0)
        );
    }


    .scroll_info_cards {
        display: flex;
        column-gap: 30px;
        overflow-x: auto;
        overflow-y: hidden;

        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;

        user-select: none;
        -webkit-user-select: none;

        scroll-padding-left: 0px;
    }

    .scroll_info_cards::-webkit-scrollbar{
        display: none;              /* Chrome/Safari */
    }

    .scroll_info_card {
        display: flex;
        flex-direction: column;

        flex: 0 0 auto;
        margin: 0;

        scroll-snap-align: start;
        width: 65%;
        border-radius: 14px;
    }

    .scroll_info h1 {
        font-family: "Zalando Sans SemiExpanded";
        font-size: 30px;
        line-height: 1.15;
        margin: 0;
        margin-bottom: 30px;
    }

    .scroll_info_hint {
    margin: 10px 0 16px 0;
    font-size: 14px;
    opacity: 0.7;
    z-index: 10;
    user-select: none;
    justify-self: flex-end;
    position: absolute;
    right: 0;
    bottom: 115px;
    }

    .scroll_info_hint.hidden {
    opacity: 0;
    transform: translateX(-4px);
    transition: 0.2s ease;
    pointer-events: none;
    }

    .scroll_info a {
        margin-top: 30px;
    }

    .scroll_info_card {
        margin-bottom: 15px;
        padding: 30px;
        text-align: left;
        border: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 14px;
    }

    .scroll_info_card h2 {
        margin: 0;
        font-size: 25px;
        font-family: "Zalando Sans SemiExpanded";
    }

    .scroll_info_card ul {
        margin: 0;
        margin-top: 30px;
        padding-left: 20px;
        line-height: 1.4;
        font-size: 16px;
        font-weight: 300;
        text-align: left;
    }

    .scroll_info li {
        margin-bottom: 10px;
    }



    /* Korta recensioner block */

    .short_reviews {
        text-align: center;
        width: 90%;
    }

    .short_reviews h1 {
        margin: 0;
        margin-bottom: 50px;
        font-size: 30px;
        font-family: "Zalando Sans SemiExpanded";
    }

    .short_reviews_cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: center;
    }

    .short_reviews_card {
        text-align: left;

        display: flex;
        flex-direction: column;

        background: white;

        padding: 40px;
        border-radius: 20px;
    }

    .short_reviews_card_apostrof {
        width: 35px;
        height: auto;
        padding: 0;
        margin: 0;
    }

    .short_reviews_card p {
        font-size: 16px;
        line-height: 1.7;
        margin: 0;
        margin: 15px 0;
        font-style: italic;
        font-weight: 400;
    }

    .short_reviews_card_profile {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: left;
        gap: 20px;
    }

    .short_reviews_card_profile p {
        font-size: 16px;
        font-weight: 600;
        font-style: normal;
    }

    .short_reviews_card_profile img {
        width: 50px;
        height: auto;
    }

    .short_reviews a {
        margin-top: 50px;
    }



    /* Videoplayer block */

    .video_player {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .video_player video {
        width: 90%;
        height: auto;
        border-radius: 14px;
    }



    /* Quality block */

    .quality {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 90%;
    }

    .quality h1 {
        margin: 0;
        margin-bottom: 30px;
        font-size: 30px;
        font-family: "Zalando Sans SemiExpanded";
        text-align: left;
        width: 100%;
    }

    .quality p {
        width: 100%;
        margin: 0;
        font-size: 16px;
        line-height: 1.7;
        text-align: left;
    }



    /* VLT block */

    .vlt {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        align-items: center;
        width: 90%;
    }

    .vlt_text {
        grid-row: 2;
    }

    .vlt h1 {
        margin: 0;
        margin-bottom: 20px;
        font-size: 30px;
        font-family: "Zalando Sans SemiExpanded";
    }

    .vlt h2 {
        margin: 0;
        margin-bottom: 50px;
        font-size: 18px;
        font-family: "Zalando Sans";
        font-weight: 400;
    }

    .vlt img {
        width: 60%;
        height: auto;
        border-radius: 14px;
        margin: 0 auto;
        grid-row: 1;
    }



    /* Bigtitle block */

    .bigtitle {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 90%;
    }

    .bigtitle h1 {
        margin: 0;
        margin-bottom: 50px;
        font-size: 30px;
        font-family: "Zalando Sans SemiExpanded";
        text-align: center;
    }
}