/* =========================================================
   TØRSLEFF – INFO SIDE (ISOLERT)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700;800&display=swap');

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

/* =========================================================
   TOP STRIP (logo)
   ========================================================= */

.wix-top {
    background: #dedada;
    border-bottom: 1px solid rgba(0, 0, 0, .10);
}

.wix-logo {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 16px 12px;
    display: flex;
    justify-content: flex-start;
}

.wix-logo img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    display: block;
}

/* =========================================================
   COLORS
   ========================================================= */

:root {
    --pink: #e06575;
    --pink-hover: #f08a97;
    --text-dark: rgba(0, 0, 0, .78);
    --text-body: rgba(0, 0, 0, .62);
}

/* =========================================================
   PAGE
   ========================================================= */

body.wix-simple {
    background: #ffffff;
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* wrapper */
.wix-simple-wrap {
    max-width: 980px;
    margin: 0 auto;
    padding: 70px 20px 100px;
}

/* =========================================================
   TITLE
   ========================================================= */

.wix-simple-wrap h1 {
    margin: 0 0 28px;
    font-size: clamp(34px, 4.3vw, 56px);
    line-height: 1.1;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.3px;
}

/* =========================================================
   TEXT
   ========================================================= */

.wix-simple-text p {
    margin: 0 0 22px;
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-body);
}

/* =========================================================
   BUTTON
   ========================================================= */

.wix-simple-btn {
    margin-top: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 68px;
    padding: 0 46px;
    background: var(--pink);
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
    border-radius: 2px;
    box-shadow: 0 2px 0 rgba(0, 0, 0, .12);
}

.wix-simple-btn:hover {
    background: var(--pink-hover);
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .wix-simple-wrap {
        padding: 40px 16px 70px;
    }

    .wix-simple-text p {
        font-size: 18px;
    }

    .wix-simple-btn {
        min-height: 60px;
        font-size: 20px;
        padding: 0 32px;
    }
}