@font-face {
    font-family: ArsenalSC-Regular;
    src: url("../fonts/ArsenalSC-Regular.ttf");
}

* {
    -moz-box-sizing: border-box; 
    box-sizing: border-box; 
    margin: 0;
    padding: 0;

    --min-height: 30px;
    --navbar-max-height: calc(2 * var(--min-height));

    --logo-height: 100px;
}

body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 24px;

    background-color: #442920;
}

header {
    /*position: relative;
    z-index: -5;*/
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    overflow: hidden;

    width: 100vw;

    text-align: center;

    /*background-color: #442920;*/
    background-color: #dcbc96;
}

.navbar {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;

    width: 100vw;
}

/* RESPONSIVE MENU */

.menu {
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: stretch;
}

.menu li {
    margin: 0.5vw;
    list-style: none;
    white-space: nowrap;
}

.menu li a {
    text-decoration: none;
    color: inherit;
}

.button {
    position: relative;

    cursor: pointer;

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

    padding: 0.4rem 0.7rem;

    font-size: 2rem;
    text-align: center;

    color: #dcbc96;

    border-radius: 15px;

    background-color: #4429204c;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
}

.button:hover {
    background-color: #ffffff24;
}

.social {
    position: relative;

    cursor: pointer;

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

.social > a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social > a > img {
    width: 50px;
}

.social > a > img:hover {
    opacity: 0.5;
}

/* On smartphones START */

/* checkbox trick */
#checkbox_toggle { display: none; }

.hamburger {
    position: relative;

    z-index: 100;

    display: none;
    user-select: none;
    
    padding: 1cqw;
    
    width: fit-content;
    height: fit-content;

    margin: 1cqw;

    border-radius: 5%;

    font-size: 3rem;
    color: #dcbc96;
    background-color: #442920a0;
    backdrop-filter: invert(1) blur(10px);
    -webkit-backdrop-filter: invert(1) blur(10px);
}

@media (max-width: 768px) {
    .navbar {
        container-type: normal;
    }

    .navbar > ul {
        position: fixed;
        right: 0;
        top: 0;

        display: flex;
        height: 100vh;
    }

    .home-button {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .menu {
        display: block;
        /*display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;*/

        overflow: hidden;
        max-width: 0px;

        padding-top: 4vh;

        transition: max-width 0.5s ease-in-out;

        font-size: 3rem;

        backdrop-filter: blur(100px);
        -webkit-backdrop-filter: blur(100px);
        background-color: #896e67ec;
    }

    input[type=checkbox]:checked ~ .menu {
        max-width: 100vw;
    }

    .menu > li {
        font-size: 2rem;
        text-align: left;
        padding: 2vw;
        width: 70vw;

        background-color: unset;
    }

    .button {
        backdrop-filter: unset;
        -webkit-backdrop-filter: unset;
        background-color: unset;
    }

    .button:hover {
        background-color: #ffffff24;
    }
}
/* On smartphones END */

header > .logo-background {
    /*position: relative;
    z-index: -4;*/
    position: absolute;

    object-fit: cover;
    min-height: 100%;
    width: 100%;
    height: auto;
    

    opacity: 0.7;
}

.logo-image::before {
    content: "";

    position: absolute;

    width: 85%;
    height: 85%;
    margin-top: 0;

    border-radius: 50%;

    /*background-color: #442920;*/
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    mask: radial-gradient(ellipse at center, #000000e2 60%, transparent);
    /*filter: blur(10px);*/
}

.logo-image {
    position: relative;

    width: 360px;
    height: 235.75px;
    padding: 10px 30px;
    margin: 10px 0;

   

    /*background-color: #4429204d;*/
    /*backdrop-filter: blur(10px);*/
}

.logo-image > img {
    position: relative;

    width: 300px;
    height: 215.75px;

    filter: drop-shadow(0 0 3px #442920)
            drop-shadow(0 0 3px #442920);
}

.logo-text {
    position: relative;

    width: 100%;

    padding: 1% 0 2% 0;

    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
}

.logo-text > h1, .logo-text > h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;

    color: #dcbc96;
    /*color: #dcbc96;*/

    /*text-shadow: 0 0 10px #442920,
                0 0 10px #442920,
                0 0 10px #442920;*/
}

.logo-text > h1 {
    font-size: 2.5rem;
}

.logo-text > h2 {
    font-size: 2rem;
    font-weight: lighter;
}

/* MAIN */

main {
    padding: 1ch 1ch 0 1ch;

    display: flex;
    flex-direction: column;
    align-items: center;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 100vw;

    color: #442920;
}

section > p {
    margin: 5px 5px 10px 5px;
    text-align: center;
}

.icon {
    margin-right: 0.5ch;
}

.icon.green {
    color: #00b000;
}

.icon.sep {
    font-size: inherit;
    font-size: 1.3rem;
    margin: 0 0.5ch;
    color: #8d7e79;
}

#offer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    padding: 10px 0;

    background-color: #33231e;
}

#offer > a {
    text-decoration: none;
}

#offer > a > div {
    position: relative;

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

    width: fit-content;
    height: 35vh;

    margin: 2px;

    overflow: hidden;

    border-radius: 5px;
}

#offer img {
    position: absolute;
    object-fit: cover;

    min-width: 100%;
    height: 100%;
    width: auto;

    transition: transform .2s;
}

#offer > a:hover img {
    transform: scale(1.1);
}

#offer p::before {
    z-index: -1;

    content: "";
    position: absolute;

    width: 100%;
    height: 100%;

    left: 0;

    /*backdrop-filter: blur(20px);
    filter: blur(20px);*/
    background-color: #44292062;
}

#offer p {
    z-index: 9;
    position: relative;

    padding: 0 5px;

    text-decoration: none;

    font-size: 2.5rem;
    text-align: center;

    color:#c7a680;

    text-shadow: 0px 0px 20px #442920, 0px 0px 20px #442920, 0px 0px 20px #442920;
}

.contact {
    /*display: flex;
    flex-direction: row;
    flex-wrap: wrap;*/

    color: #dcbc96;
}

.contact > .map {
    width: 100%;
}

.phone-number, .mailto {
    padding: 2px 5px;
    border-radius: 5px;

    text-decoration: none;
    
    color: #a2dc96;
    
    background-color: #4f3026;
}

footer {
    padding: 0 0 0 0;
    height: fit-content;

    color: #dcbc96;
    background-color: #251813;
}

.business-partner {
    width: 100%;

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

    display: flex;
    flex-direction: row;
    align-items: center;

    background-color: #452f26;
}

.business-partner > p {
    width: 55%;

    margin: 10px 0 10px 10px;
    padding-right: 10px;

    border-right: 1px solid #dcbc96;

    font-size: 0.8rem;
    text-align: right;
}

.business-partner > a {
    width: 45%;
    margin-left: 10px;
}

.business-partner > a > img {
    max-width: 80px;
}

footer > p {
    margin: 0;
    padding: 0;

    font-size: 1rem;
    text-align: center;
}

.signature {
    font-size: 0.8rem;
    color: #c7a680;
}

.signature > a {
    color: greenyellow;
}

.login {
    text-decoration: none;
    text-align: center;
    font-size: 2rem;

    color: #4f744a;
}