* {
    box-sizing: border-box;
}

@font-face {
    font-family: 'David Libre';
    src: url('/public/fonts/davidlibre-bold-webfont.woff2') format('woff2'),
        url('/public/fonts/davidlibre-bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'David Libre';
    src: url('/public/fonts/davidlibre-regular-webfont.woff2') format('woff2'),
        url('/public/fonts/davidlibre-regular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('/public/fonts/poppins-bold-webfont.woff2') format('woff2'),
        url('/public/fonts/poppins-bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('/public/fonts/poppins-regular-webfont.woff2') format('woff2'),
        url('/public/fonts/poppins-regular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

::selection {
    color: white;
    background: #F38D31;
    /* WebKit/Blink Browsers */
}

::-moz-selection {
    color: white;
    background: #F38D31;
    /* Gecko Browsers */
}

html,
body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    overflow-x: hidden;
}

h1,
h2 {
    font-family: "David Libre", serif;
    color: #00527B;
    margin: 0;
}

p {
    font-size: 14px;
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.6vh;
}

h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 21.125rem;
    max-width: 100%;
    height: 2.5rem;
    font-size: 1.25rem;
    font-weight: 400;
    background: rgba(255, 255, 255, 0.5);
}

h3 {
    font-size: 32px;
    font-weight: 400;
    color: white;
}

hr {
    display: flex;
    width: 100%;
    height: 1px;
    background: white;
    border: none;
    margin: 3rem 0;
}

li, small {
    text-align: left;
}

small {
    display: inline-block;
}

strong {
    display: block;
    margin-top: 3rem;
}

body {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: url("/public/images/pescadorview_mobile.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 3.5vh 11.8vw;
}

header {
    text-align: left;
}

nav {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    width: 100vw;
    height: 100vh;
    background: #105A7C;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9;
    gap: 3rem;
}

@supports (-webkit-text-size-adjust:none) and (not (-ms-ime-align:auto))
and (not (-moz-appearance:none)) {
    nav {
        gap: 0;
    }

    nav a[onClick*="contact"] {
        margin: 3rem 0 !important;
    }
}

.nav-link {
    font-size: 2rem;
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.burger-menue {
    width: 44px;
    height: 29px;
    background: white;
}

.hamburger {
    position: relative;
    z-index: 99;
}

#contact,
#imprint {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    width: 100vw;
    height: 100vh;
    background: #F38D31;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    gap: 3rem;
}

#contact .btn--white {
    margin-top: 1rem;
}

.menu-page a {
    text-decoration: none;
    color: white;
}

.menu-page a:hover {
    text-decoration: underline;
}

#imprint {
    justify-content: flex-start;
    height: auto;
    padding: 5rem 11.8vw 3rem;
    color: white;
}

#imprint p {
    text-align: left;
    margin-bottom: 1rem;
}

main {
    width: 100%;
    height: calc(100vh - 50px - 29px - 3.5vh);
}

.logo-headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 6vh;
    height: calc((100vh - 50px - 29px - 3.5vh)/2);
}

.logo {
    position: relative;
    display: flex;
    width: 24.63768vw;
    max-width: 6.375rem;
    height: 13.28502vw;
    max-height: 3.4375rem;
    z-index: 2;
    margin-bottom: 3vh;
}

.flex-btns {
    display: flex;
    height: calc((100vh - 50px - 29px - 3.5vh)/2);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 6vh;
}

a[class*="btn"] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65.7vw;
    max-width: 15rem;
    height: 14vw;
    max-height: 3.196347032rem;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 12vw;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: all ease-in-out .2s;
}

a[class*="btn"]:hover {
    text-decoration: none;
    transition: all ease-in-out .2s;
    transform: scale(1.05);
}


.btn--orange {
    background: #F38D31;
}

.btn--white {
    color: #F38D31 !important;
    background: white;
}

.btn--white img {
    width: auto;
    height: 1.40625rem;
    margin-right: 1rem;
}

footer {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: auto;
    padding: 15px;
    background: white;
    left: 0;
    bottom: 0;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    color: #00527B;
}


/* -- Formatierung für Burger Menu -- */
button {
    padding: 0;
}

/*
button:focus-visible {
    background: rgba(0,0,0,0);
    border: none;
}
*/

.hamburger:focus {
    outline: none;
}

/* -- Mobile Landscape -- */
@media (max-height: 768px) and (orientation: landscape) {
    a[class*="btn"] {
        width: 250px;
        height: 60px;
    }
}

@media (min-width: 768px) {
    body {
        background: url(/public/images/pescadorview_desktop.webp);
        background-size: cover;
        background-position: center center;
    }

    p {
        font-size: 16px;
    }
    
    a[class*="btn"] {
        width: 250px;
        height: 60px;
    }

    /* .logo-headline {
        max-width: 300px;
    } */
}