:root {
    --text-color: #333;
    --text-color-secondary: #af0000;
    --background-dark: #f3f3f3;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Montserrat';
}
html {
    overflow-x: hidden;
}
body, html {
    position: relative;
    max-width: 100vw;
}
body > div {
    display: flex;
    flex-direction: column;

    align-items: center;

    min-height: 100svh;
}
body > div > section {
    display: block;
}
body > div > footer {
    display: block;
}
footer {
    text-align: center;
    padding: 0.5rem 0 0.5rem 0;
    background-color: #000;
    margin-top: auto;
    width: 100%;

    align-self: flex-end;
}
footer p, footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 0.5rem;
    font-size: 1rem;
}
footer > div {
    margin-bottom: 0.5rem ;
    background-color: var(--text-color-secondary);
    height: fit-content;
    padding: 0.5rem;

    display: flex;
    justify-content: center;
}
footer > div > a {
    margin: 0 1rem;
    display: block;
    width: max-content;
}

/* Fonts */
h3,h4,h5,h6,p,a,li {
    color: var(--text-color);
}
h1 {
    color: var(--text-color-secondary);
    font-size: 2rem;
    text-align: center;

    margin-bottom: 2rem;
}
h2, .subtitle {
    color: var(--text-color-secondary);
}
h2 {
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
}
h3 {
    font-size: 1.3rem;
    margin-top: 1rem;
    margin-bottom: 4rem;
}
h4 {
    font-size: 1rem;
}
h5 {
    font-size: 1rem;
}
h6 {
    font-size: 1rem;
}
p, li {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 2rem ;
}
a {
    cursor: pointer;
}
.subtitle {
    font-size: 1rem;
    margin: 0.5rem 0;
    font-weight: 300;
}
.button-red, .button-white, .button-green {
    padding: 0.3rem 3rem;
    border: none;
    font-size: 1.5rem;
    border-radius: 2rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    margin-bottom: 1rem;
}
.button-white {
    color: #00000000;
    background-color: #fff;
}
.button-green {
    color: #fff;
    background-color: #5cb85c;
}
.button-red {
    color: #fff;
    background-color: var(--text-color-secondary);
}
a:has(button) {
    text-align: center;
    display: flex;
    justify-content: center;
    text-decoration: none;
}

/**/
#Hero {
    width: 100%;
    position: relative;
    max-height: 800px;
}
#Hero h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 600;
}
#Hero h4 {
    font-size: 1.5rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 3rem;
    margin-top: 1.5rem;
}
#HeroImg {
    max-width: 100vw;
    max-height: 800px;
}
#HeroImg img{
    width: 100%;
    height: 100%;
    max-height: 800px;

    object-position: 50% 100%;


    object-fit: cover;

    display: block;
}
#Hero .overlay, #Hero .overlay-dark {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 0;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#Hero .overlay {
    background-color: #08679046;
}
#Hero .overlay-dark {
    background-color: #6e6e6e46;
}
header {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    position: absolute;
    z-index: 1;
    width: 100%;
    background-color: #fff;
}
header img {
    max-height: 60px;
    padding: 0.1rem;
}
header h2 {
    margin-bottom: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    margin-right: auto;
    font-weight: 500;
}
.dm-nav h2 {
    color: #000;
}
.dm-nav > a {
    display: flex;
    align-items: center;
    font-size: 1rem;
    text-decoration: none;
    margin: 0 1rem;
    text-align: center;
}
.dm-nav > a:first-child {
    margin-right: auto;
}
.dm-nav > a ~ a:last-of-type {
    margin-right: 2rem;
}
nav.dm-nav > svg {
    margin-left: auto;
}
.dm-nav > a ~ svg {
    margin-left: 1rem;
}
header nav.dm-nav {
    width: 100%;
    margin-left: auto;
    border-bottom: none;
    
    padding-left: 4%;
    justify-content: flex-end;
}
header .dm-nav .dm-nav-menu {
    margin-left: auto;
}
ul.dm-nav-menu a{
    font-size: 1rem;
    font-weight: 600;
}
.headings {
    padding: 4rem 0 6rem 0;
}
.content {
    padding: 1rem 4vw;
    max-width: 1800px;
}
.content h5 {
    font-weight: 300;
    text-align: center;
    margin: 2rem 0;
}
.content ul {
    margin: 1.5rem;
}
.content > div:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.content div:has(>img) {
    width: 100%;
    max-width: 640px;
    margin-bottom: 2rem;
}
.content div > img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.content iframe {
    width: 100%;
    aspect-ratio: 4/3;
    margin: 2rem 0;

}
.content form {
    display: flex;
    flex-direction: column;

    width: 100%;
}
.content div {width: 100%;}
input, textarea {
    font-size: 1.2rem;
    margin-top: 0.5rem;

    padding: 0.5rem;
}
textarea {
    aspect-ratio: 4/2;
}
input:last-child {
    margin-top: 2rem;
    width: min-content;

    padding: 0.5rem 2rem;
    border: none;

    color: #fff;
    background-color: var(--text-color-secondary);
}
label {
    margin-top: 2rem;
}

section.menu {
    column-gap: 0;
    margin: 4%;
    padding: 0 0;

    max-width: min(100vw, 1800px);
    background-color: var(--background-dark);
}
.menu > div {
    break-inside: avoid;
}
.menu div:has(img) {
    height: 100%;
    aspect-ratio: 16/9;
    margin-bottom: 0;
    max-width: none;
}
.menu div:has(h2){
    padding: 1rem 1.5rem;
}
.menu h2 {
    margin-bottom: 1rem;
}
.menu img {
    display: block;
}
.menu li {
    margin-bottom: 0.5rem;
}
.menu ul {
    margin: 0;
    margin-left: 1rem;
}

#PDF {
    background-color: #af0000;
    width: 100%;
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4%;
}
#PDF div {
    background-image: url("../images/5838928.jpg");
    opacity: 0.2;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    z-index: 1;
}
#PDF a {
    display: inline-block;
    margin-bottom: 0;
    color: #af0000;
    position: relative;
    z-index: 2;
}
#PDF h3 {
    margin-top: 0;
    margin-bottom: 0;
    color: #fff;
    position: relative;
    z-index: 2;
}
.social, .social a {
    color: var(--text-color-secondary);
    text-decoration: none;
    font-size: 1.2rem;

    font-weight: normal;
    width: 100%;
    margin: 1rem 0;
}
.social a {
    margin-left: 0.5rem;
}

.background-blue {
    background-color: var(--text-color-secondary);
}
.content > div.gallery {
    display: block;
}
.gallery {
    columns: 3;
    column-gap: 2rem;
}
.gallery div {
    margin-bottom: 2rem;
}

/**/
.column-2 {
    columns: 2;
    column-gap: 1rem;
}
.column-2 div {
    break-inside: avoid;
}
.column-3 {
    columns: 3;
    column-gap: 2rem;
}
.column-4 {
    columns: 4;
    column-gap: 2vw;
}

#Sluurpy {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* Desktop */
@media (max-width: 1707px) and
(min-width: 1280px) {
    .content > div:first-child > h3:first-child {
        column-span: all;
    }
}
@media (min-width: 1280px) {
    .hideDesktop {
        visibility: hidden !important;
        position: absolute !important;
    }

    .menu > div {
        aspect-ratio: 16/9;
        width: 100%;
    }

    .menu li {
        width: 100%;
        padding-right: 0.5rem;
    }
    
    #PDF h3 {
        margin-right: 4%;
    }
}
/* Smaller than Desktop */
@media (max-width: 1279px) {
    .gallery {
        columns: 2;
    }

    .menu {
        max-width: 100vw;
    }
    .menu.column-2 > div:first-child {
        columns: unset;
    }

    #PDF {
        flex-direction: column;
    }
    #PDF h3 {
        margin-bottom: 4%;
    }

    section.menu div > img {
        object-fit: contain;
        width: 100%;
        height: unset;
    }
}
/* Tablet */
@media (max-width: 1279px) and 
(min-width: 800px) {
    .hideTablet {
        visibility: hidden !important;
        position: absolute !important;
    }

    .menu div:has(img) {
        height: unset;
    }

    /* Font */
    h2 {
        font-size: 1.7rem;
    }
    /**/
    .content {
        padding: 1rem 4rem;
    }
    .content iframe {
        margin-top: 0;
    }
    section.column-2 {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    section.column-2 > div:first-child {
        columns: 2;
        column-gap: 2rem;
    }
    section.column-2 > div:first-child > h3 {
        column-span: all;
    }

    /**/
    .column-4 {
        columns: 2;
    }
}
/* Larger then Mobile */
@media (min-width: 800px) {
    ul.dm-nav-menu {
        margin: 1rem ;
    }
}
/* Mobile */
@media (max-width: 799px) {
    .hideMobile {
        visibility: hidden !important;
        position: absolute !important;
    }

    .menu div:has(img) {
        height: unset;
    }
        
        /* Fonts */
    h1, h2 {
    font-size: 1.7rem;
    text-align: center;
    }
    header h2 {
        font-size: 1.5rem;
        width: min-content;
    }
    h3 {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    }
    h4 {
    font-size: 1rem;
    }
    h5 {
    font-size: 1rem;
    }
    h6 {
    font-size: 1rem;
    }
    p, li {
    font-size: 1.1rem;
    line-height: 1.4;
    margin: 2rem 0;
    margin-top: 0;
    }
    .subtitle {
    font-size: 0.9rem;
    margin: 0.5rem 0;
    font-weight: 300;
    }
    .button-red {
    padding: 0.3rem 3rem;
    border-radius: 2rem;
    font-weight: 700;
    align-self: center;
    }

    /**/
    .dm-nav {
        flex-wrap: wrap;
    }
    .dm-nav > a:has(h2) {
        width: 100%;
        margin-left: 0;
        padding-right: 4%;
    }
    .dm-nav > a h2 {
        width: max-content;
        margin: 0 auto
    }
    .dm-nav > a ~ a:last-of-type {
        margin-right: 1rem;
    }

    #HeroImg {
        aspect-ratio: 1/1;
    }

    .content {
        padding: 1rem;
    }

    .column-2, .column-4 {
        columns: unset;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .headings {
        padding: 2rem 1rem 1.5rem 1rem;
    }

    .details h3 {
        margin: 2rem 0 2rem 0;
        text-align: center;
    }

    .gallery {
        columns: 1;
    }

    #PDF a {
        font-size: 1.3rem;
    }
}
@font-face {
    font-family: Lemon Tuesday;
    src: url(/assets/fonts/Lemon\ Tuesday.otf);
}