:root {
    --color-background: #fffdf8;
    --color-card: #ffffff;

    --color-brown: #493024;
    --color-green: #55a832;
    --color-green-dark: #397c24;
    --color-yellow: #ffc72c;

    --color-text: #332a25;
    --color-text-light: #6d625b;

    --shadow:
        0 18px 50px rgba(73, 48, 36, 0.10);
}


/* =========================================================
   ZÁKLAD
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-family: "Nunito", sans-serif;
}

body {
    margin: 0;

    color: var(--color-text);
    background:
        radial-gradient(
            circle at 50% 20%,
            #fffefb 0,
            var(--color-background) 55%,
            #f7f2e8 100%
        );
}

a {
    color: inherit;
}


/* =========================================================
   PROVIZORNÍ STRÁNKA
========================================================= */

.temporary-page {
    min-height: 100vh;

    padding: 50px 20px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   KARTA
========================================================= */

.temporary-card {
    width: min(100%, 760px);

    padding: 55px 70px;

    text-align: center;

    background: var(--color-card);

    border-radius: 32px;

    box-shadow: var(--shadow);
}


/* =========================================================
   LOGO
========================================================= */

.temporary-logo {
    width: min(100%, 330px);
    height: auto;

    display: block;

    margin: 0 auto 42px;
}


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

.temporary-content h1 {
    margin: 0 0 24px;

    color: var(--color-brown);

    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;

    line-height: 1.12;
}

.temporary-content h1 span {
    color: var(--color-green);
}

.temporary-content p {
    max-width: 590px;

    margin:
        0
        auto
        18px;

    color: var(--color-text-light);

    font-size: 17px;
    line-height: 1.65;
}

.temporary-content .temporary-lead {
    color: var(--color-text);

    font-size: 20px;
    font-weight: 700;
}


/* =========================================================
   KONTAKT
========================================================= */

.temporary-contact {
    margin-top: 38px;

    padding: 28px 30px;

    background: #f6faee;

    border-radius: 22px;
}

.temporary-contact h2 {
    position: relative;

    margin: 0 0 20px;
    padding-bottom: 10px;

    color: var(--color-brown);

    font-size: 24px;
    font-weight: 800;
}

.temporary-contact h2::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 55px;
    height: 4px;

    border-radius: 10px;

    background: var(--color-green);

    transform:
        translateX(-50%)
        rotate(-2deg);
}

.temporary-contact address {
    font-style: normal;
}

.temporary-contact p {
    margin: 12px 0;

    font-size: 17px;
    line-height: 1.55;
}

.temporary-contact a {
    text-decoration: none;

    color: var(--color-green-dark);
    font-weight: 700;
}

.temporary-contact a:hover,
.temporary-contact a:focus-visible {
    text-decoration: underline;
}


/* =========================================================
   FACEBOOK
========================================================= */

.facebook-button {
    width: fit-content;

    margin:
        28px auto
        0;

    padding:
        13px
        22px;

    display: inline-flex;
    align-items: center;

    gap: 12px;

    border-radius: 14px;

    color: #fff;
    background: #3578d4;

    font-size: 16px;
    font-weight: 800;

    text-decoration: none;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.facebook-button:hover,
.facebook-button:focus-visible {
    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(53, 120, 212, .22);
}

.facebook-button__icon {
    width: 29px;
    height: 29px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #fff;

    color: #3578d4;

    font-size: 21px;
    font-weight: 800;
}


/* =========================================================
   POZNÁMKA
========================================================= */

.temporary-note {
    margin:
        30px
        0
        0;

    color: var(--color-text-light);

    font-size: 14px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 600px) {

    .temporary-page {
        padding:
            24px
            15px;
    }

    .temporary-card {
        padding:
            38px
            22px;

        border-radius:
            24px;
    }

    .temporary-logo {
        width:
            min(100%, 270px);

        margin-bottom:
            32px;
    }

    .temporary-content h1 {
        font-size:
            32px;
    }

    .temporary-content .temporary-lead {
        font-size:
            18px;
    }

    .temporary-content p {
        font-size:
            16px;
    }

    .temporary-contact {
        padding:
            24px 18px;
    }

    .temporary-contact p {
        font-size:
            16px;
    }

}