/* ____________________________________________________RESETS */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--lighest-orange-color);
}

:root {
    --lighest-orange-color: #f2d6b3;
    --light-orange-color: #f2a679;
    --brownish-color: #a6634b;
    --brown-color: #261010;
    --grey-color: #594242;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Cal Sans", sans-serif;
    font-style: normal;
}

body a {
    text-decoration: none;
}

nav>ul {
    list-style: none;
    padding-inline-start: 0px;
}


/* ____________________________________________________HEADER */

.logo-sec {
    display: flex;
    align-items: center;
    color: black;
    height: 70px;
}

.logo {
    height: 100%;
    margin-left: 5vh;
    margin-bottom: 1vh;
}

.header {
    background-color: var(--light-orange-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.links {
    display: flex;
    gap: 6vh;
    margin-right: 10vh;
}

.link {
    font-size: 15px;
    font-weight: 900;
    color: var(--brown-color);
    transition: color ease 0.3s;
}

.link:hover {
    color: var(--brownish-color);
}

.use {
    font-size: 15px;
    font-weight: 900;
    color: var(--brownish-color);
}

/* ____________________________________________________MAIN */

/* ____________________________________________________SLIDER */

.slider-sec {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    height: 250px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    text-align: center;
    background: #ccc;
    font-size: 24px;
    box-sizing: border-box;
}

.slide img {
    width: 100%;
}

.nav-btn {
    background-color: rgba(255, 255, 255, 0.273);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    padding: 10px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    font-size: 20px;
}

.prev img {
    transform: scaleX(-1);
}

.prev {
    z-index: 1;
    left: 10px;
}

.next {
    right: 10px;
}



/* ____________________________________________________HERO */

.hero-sec {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--grey-color);
    height: 300px;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.booking-link {
    text-align: center;
    font-size: 24px;
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid var(--lighest-orange-color);
    color: var(--lighest-orange-color);
    width: 240px;
    transition: transform 0.3s ease;
}

.booking-link:hover {
    transform: scale(1.05);
}

.hero-h {
    margin-block-end: 0;
    color: var(--lighest-orange-color);
    padding: 0 5px;
    font-size: 48px;
}

.burger {
    width: 50px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

/* ____________________________________________________DIALOG */

dialog::backdrop {
    background-color: rgba(0, 0, 0, 0.5);
}

#dialogMassage {
    flex-direction: column;
    position: fixed;
    top: 60%;
    left: 20%;
    transform: translate(-20%, -40%);
    padding: 2rem;
    border: none;
    background: var(--lighest-orange-color);
}

.wrap-dialog-btn {
    display: flex;
    justify-content: flex-end;
}

.close-dialog {
    all: unset;
    cursor: pointer;
    padding: 5px 0;
}

.imgs-resistor {
    max-width: 100%;
    max-height: 400px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.dialog-sec {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 600px;
    background-color: var(--lighest-orange-color);
    gap: 30px;
}

.dialog-h {
    color: var(--brown-color);
    font-size: 34px;
}

.dialog-btns {
    background-color: var(--light-orange-color);
    height: 60%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
}

.btn-dialog {
    all: unset;
    overflow: hidden;
    height: 250px;
    width: 200px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn-dialog:hover {
    transform: scale(1.05);
}

#img1 {
    height: 100%;
    transform: translateX(-90px);
}

#img2 {
    height: 100%;
    transform: translateX(-20px);
}

#img3 {
    height: 100%;
    transform: translateX(-80px);
}

#img4 {
    height: 100%;
    transform: translateX(-100px);
}

#img5 {
    height: 100%;
    transform: translateX(-100px);
}

/* ____________________________________________________ARTICLE */

.art {
    gap: 40px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.art-text-c {
    color: var(--brown-color);
    max-width: 750px;
}

.art-img {
    width: 300px;
}

span {
    font-weight: 700;
}

/* ____________________________________________________ARTICLE OM FIRMET */

.art-firm {
    padding: 40px 0;
    background-color: var(--light-orange-color);
    color: var(--brown-color);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    justify-content: center;
}


/* ____________________________________________________PERSONALE */

.sec-h-pers {
    color: var(--brown-color);
}

.sec-h-pers>h2 {
    text-align: center;
}

.sec-pers {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;

}

.img-portrat {
    width: 240px;
    height: 240px;
    overflow: hidden;
    border-radius: 120px;
}

.img-portrat img {
    width: 100%;
}

.portrat-besc {
    max-width: 240px;
    text-align: center;
}

/* ____________________________________________________VÆLG DIN MASSAGE*/

.sec-massage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 800px;
    background-color: var(--lighest-orange-color);
    gap: 30px;
}


.sec-massage-t {
    background-color: var(--light-orange-color);
    height: 60%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.types-massage {
    gap: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 600px;
}

.btn-massage {
    all: unset;
    overflow: hidden;
    height: 200px;
    width: 150px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn-massage:hover {
    transform: scale(1.05);
}

.info-om-mt {
    color: var(--brown-color);
    max-width: 40%;
}

.info-om-mt p {
    font-size: 18px;
}

.useM {
    border: 5px solid var(--brown-color);
    transform: scale(1.05);
}

/* ____________________________________________________KONTAKT */

.kontakt-sec {
    margin-bottom: 120px;
}


.kontakt-h {
    color: var(--brown-color);
    font-size: 34px;
    text-align: center;
}

.form-kontakt {
    display: flex;
    flex-direction: column;
    margin: 30px auto;
    width: 300px;
    gap: 20px;
}

.input {
    padding: 10px;
    border-radius: 10px;
}

.correct {
    color: green;
}

.wrong {
    color: red;
}

.kontakt-btns {
    justify-content: space-between;
    display: flex;
    margin: 0 auto;
    width: 500px;
}

.submit-kontakt {
    background-color: rgb(69, 255, 69);
    height: 40px;
    border-radius: 20px;
    padding: 0 40px;
}

.submit-kontakt:hover {
    background-color: rgb(59, 215, 59);
}

.submit-kontakt p {
    padding: 0;
    margin: 0;
}

.unsubmit-kontakt {
    background-color: rgb(255, 69, 69);
    height: 40px;
    border-radius: 20px;
    padding: 0 40px;
}

.unsubmit-kontakt:hover {
    background-color: rgb(215, 59, 59);
}

.unsubmit-kontakt p {
    padding: 0;
    margin: 0;
}

/* ____________________________________________________FOOTER */

footer {
    background-color: var(--light-orange-color);
    margin-top: 50px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-logo h2 {
    margin-block-start: -30px;
    padding-left: 35px;
}

.sec-footer {
    display: flex;
    justify-content: space-around;
    align-items: start;
}

.wrapper-footer {
    width: 40%;
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    padding-right: 20px;
}

.kontakt {
    margin-top: 30px;
}

.kontakt p {
    margin-block-end: 0;
    margin-block-start: 10px;
}

.telefon {
    margin-top: 30px;
}

.f-logo {
    width: 200px;
}

.social-media {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding-bottom: 60px;
}

.social-media a {
    transition: transform 0.3s ease;
}

.social-media a:hover {
    transform: scale(1.10);
}

/* ____________________________________________________MEDIA SCREEN */

@media screen and (max-width: 1200px) {

    #dialogMassage {
        top: 60%;
        left: 20%;
        transform: translate(-10%, -40%);
    }

    .sec-massage {
        height: auto;
    }

    .sec-massage-t {
        padding: 20px 10px;
    }

    .dialog-sec {
        height: auto;
        margin-bottom: 40px;
    }

    .dialog-btns {
        height: auto;
        padding: 40px 0;
    }

    .btn-dialog {
        width: 150px;
        height: 200px;
    }

    .art {
        height: auto;
        padding: 0 10px;
    }

    footer,
    .art-firm {
        padding: 0 10px;
    }


    .logo {
        margin-left: 1vh;
    }

    .info-om-mt {
        max-width: 100%;
    }

}


@media screen and (max-width: 750px) {

    .kontakt-btns {
        width: auto;
        padding: 0 20px;
    }

    .kontakt-h {
        font-size: 24px;
    }

    .social-media {
        margin-top: -40px;
        justify-content: flex-end;
    }

    .hero-h {
        text-align: center;
        font-size: 34px;
    }

    .dialog-h {
        font-size: 24px;
    }

    .links {
        gap: 0;
        flex-direction: column;
        width: 100px;
        margin-right: 5vh;
    }

    .nav {
        z-index: 1;
        display: none;
        background: var(--light-orange-color);
        position: absolute;
        top: 50px;
        right: 0;
        padding: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.64);
    }

    .nav.open {
        display: flex;
    }

    .burger {
        display: flex;
    }

}