/*
    
## ## ## ## ##  ##              ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ##          ##  ## ## ## ## ##  ## ## ## ## ##
##              ##              ##          ##  ##          ##  ##          ##  ## ##       ##  ##                    ##
##              ##              ##          ##  ##          ##  ##          ##  ##  ##      ##  ##                    ##
##    ## ## ##  ##              ##          ##  ## ## ## ##     ##          ##  ##    ##    ##  ## ## ## ## ##        ##
##          ##  ##              ##          ##  ##          ##  ##          ##  ##      ##  ##  ##                    ##
##          ##  ##              ##          ##  ##          ##  ##          ##  ##        ##    ##                    ##
## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ##          ##  ## ## ## ## ##        ##

/**** SITE SETTINGS ****/
html {
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    shape-rendering: optimizeSpeed;
    image-rendering: auto;
}
body * {
    box-sizing: border-box;
}
body {
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}
svg {
    shape-rendering: auto;
}

/* ACCESSIBILITY SETTINGS */
.skip-link {
    position: absolute;
    top: -5rem;
    left: 1rem;
    z-index: 9999;
}
.skip-link:focus {
    top: 1rem;
}

/* DEFAULT VALUES */ 
.content {
    padding: calc(1rem + 10vh) calc(1rem + 8vw);
    margin: auto;
}
.inner {
    max-width: 2500px;
    margin: auto;
}
.flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 3rem;
}
.grid {
    display: grid;
    justify-content: space-between;
}
img {
    width: 100%;
}
a {
    text-decoration: none;
}

/* BUTTON & SELECTION */
.button,
input[type=submit],
button {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 200;
    padding: 0.5rem 2rem;
    border-radius: 1rem;
    height: fit-content;
    width: fit-content;
    cursor: pointer;
    border: solid 1px var(--light-grey);
    transition: filter .2s ease-in-out;
}
.button:hover,
input[type=submit]:hover,
button:hover {
    border: solid 1px var(--turquoise);
}
#hero .button {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 0.5rem 2rem;
}

/* LIST & LIST ITEMS */
li, ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}
ul {
    flex-direction: column;
    align-items: baseline;
    padding: 0;
}

/**** SECTION 1: HEADER ****/
header {
    z-index: 2;
    position: fixed;
    padding: 50px 4rem 30px 4rem;
    height: 210px;
    width: 100%;
}
header.scroll {
    background: var(--white);
    padding: 0;
    height: fit-content;
}
header.scroll .topmenu .inner {
    padding: 5px 40px;
    height: 58px;
}
.nav-list .vertical a,
.nav-list .dropdown a,
header.scroll .nav-list .dropdown a {
    font-size: 1rem;
}
header.scroll .dropdown.vertical {
    background-color: #f0f0f0;
}
header.scroll .dropdown {
    top: 70%;
}
.topmenu .inner {
    width: 100%;
    height: fit-content;
    gap: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box; 
}
.bottommenu .inner {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center; 
    justify-content: center;
    box-sizing: border-box;
}

/* LOGO */
.logo-default {
    width: 360px;
    height: auto;
    filter: brightness(0) invert(1);
}
.logo-scroll {
    width: 45px;
    height: auto;
    display: none;
}
header.scroll .logo-default {
    display: none;
}
header.scroll .logo-scroll {
    display: block;
    scale: 1;
}
header.scroll .logo-scroll img {
    display: block;
}
header.scroll #menu img {
    filter: none;
}
header.scroll #menu i,
header.scroll #menu a {
    color: var(--light-grey);
}
header.scroll #burgermenu .line {
    background: var(--light-grey);
}

/* NAVIGATION */
.empty {
    width: 245px;
}
#menu {
    display: flex;
    align-items: center;
    justify-content: end;
    width: 245px;
    gap: 1rem;
}
nav ul {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin: 0;
}
nav li {
    display: flex;
    justify-content: center;
    align-items: center;
}
.topmenu a {
    height: fit-content;
}
nav img {
  border: none;
  display: block;
}
.dropdown li {
    height: fit-content;
}
.dropdown li a {
    font-size: 1.1rem;
}
.topmenu #nav.visible {
    visibility: visible;
}
#nav .dropdown {
    padding: 0.5rem;
}
.nav-list img {
  width: 22px;
  height: auto;
}
.fa-caret-down {
    font-size: 0.9rem;
}
.fa-caret-down.scrolled {
    color: black;
}
.nav-list img {
    filter: brightness(0) invert(1);
}
.nav-list a {
    font-size: 20px;
}
.bottommenu.scrolled .nav-list img {
    filter: none; 
}
.vertical a:hover {
    color: var(--white);
}

/* DROPDOWN MENU */
.dropdown {
    visibility: collapse;
    display: none;
    position: absolute;
    align-items: center;
    padding: 10px 0;
    opacity: 0;
    top: 30%;
    gap: 0;
}
.dropdown a {
    padding: .5rem;
}
.dropdown.vertical {
    flex-direction: column;
}
.dropdown.horizontal {
    flex-direction: row;
}
.menuitem.horizontal:hover > .dropdown.horizontal,
.menuitem.vertical:hover > .dropdown.vertical {
    display: flex;
    visibility: visible;
    opacity: 1;
}
.bottommenu.scrolled .dropdown {
    background: #f0f0f0;
}
.bottommenu.scrolled #nav .dropdown a {
    color: var(--light-grey);
}
.bottommenu.scrolled #nav .dropdown a:hover {
    color: var(--light-grey);
}
.bottommenu.scrolled #nav .vertical a:hover {
     color: var(--light-grey);
}
.bottommenu.scrolled .fa-caret-down {
    color: var(--light-grey);
}

/* BURGERMENU */                  
#burgermenu {
    display: none;
    cursor: pointer;
    padding: 0;
    border-radius: 0;
    border: none;
}
#burgermenu .burger {
    position: relative;
    width: 60px;
    height: 25px;
}
#burgermenu .burger .line {
    width: 60px;
    height: 4px;
    position: absolute;
    transition: all 200ms;
}
#burgermenu .burger .line:nth-child(1) {
    top: 0;
}
#burgermenu .burger .line:nth-child(2) {
    top: calc(50% - 1px);
}
#burgermenu .burger .line:nth-child(3) {
    top: calc(100% - 2px);
}
#burgermenu[data-open="true"] .burger .line:nth-child(1) {
    top: calc(50% - 1px);
    transform: rotate(45deg);
}
#burgermenu[data-open="true"] .burger .line:nth-child(2) {
    top: calc(50% - 1px);
    transform: rotate(-45deg);
}
#burgermenu .burger .line {
    transition: top 0.2s 0.2s, transform 0.2s, opacity 0.2s;
}
#burgermenu[data-open="true"] .burger .line {
    transition: top 0.2s, transform 0.2s 0.2s, opacity 0.2s 0.15s;
    background: var(--light-grey);
}
#burgermenu[data-open="true"] > #menu a {
    color: var(--light-grey);
}

/**** SECTION 2: MAIN ****/

/* HERO */
#hero .inner{
    height: 120vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: end;
}
#hero .content {
    position: absolute;
    text-wrap: balance;
    z-index: 1;
}
#hero img {
    object-fit: cover;
    height: 120vh;
}
#hero h1 {
    font-size: calc(1rem + 4vw);
    line-height: 1.2;
    margin: 1rem 0;
    width: 80%;
    font-weight: 200;
}
.right h2 {
    font-size: calc(1rem + 1vw);
    margin-bottom: 1rem;
}
.teaser {
    align-items: center;
}
#about .inner {
    align-items: center;
}
#about .border {
    border-bottom: 1px solid #646462;
    margin-bottom: 5rem;
    padding-bottom: 5rem;
}
#about .button {
    margin-top: 1rem;
}
#about h2 {
    font-size: 2.9rem;
    font-weight: 300;
}
#about p {
    font-size: 18px;
}
#about .background-image-one img {
    padding-left: 0;
    padding-right: 3%;
    margin-left: 6%;
    margin-right: 0%;
    padding-bottom: 3%;
    background-size:  50% 100%, 50% 100%;
    background-repeat: no-repeat, no-repeat;
    background-image: linear-gradient(0deg, var(--beige) 0%, var(--beige) 90%, transparent 90%, transparent 100%), linear-gradient(-90deg, var(--beige) 0%, var(--beige) 90%, transparent 90%, transparent 100%);
    background-position: right top, left top;
}
#about .background-image-two img{
    margin-left: 0%;
    margin-right: 6%;
    padding-left: 3%;
    padding-bottom: 3%;
    padding-right: 0%;
    position: relative;
    background-image: linear-gradient(0deg, var(--turquoise) 0%, var(--turquoise) 90%, transparent 90%, transparent 100%), linear-gradient(90deg, var(--turquoise) 0%, var(--turquoise) 90%, transparent 90%, transparent 100%);
    background-size: 50% 100%, 50% 100%;
    background-repeat: no-repeat, no-repeat;
    background-position: left top, right top;
}
#about .background-image-three img{
    padding-left: 0;
    padding-right: 3%;
    margin-left: 6%;
    margin-right: 0%;
    padding-bottom: 3%;
    background-size: 50% 100%, 50% 100%;
    background-repeat: no-repeat, no-repeat;
    background-image: linear-gradient(0deg, var(--light-brown) 0%, var(--light-brown) 90%, transparent 90%, transparent 100%), linear-gradient(-90deg, var(--light-brown) 0%, var(--light-brown) 90%, transparent 90%, transparent 100%);
    background-position: right top, left top;
}
#about .background-image-four img {
    margin-left: 0%;
    margin-right: 6%;
    padding-left: 3%;
    padding-bottom: 3%;
    padding-right: 0%;
    position: relative;
    background-image: linear-gradient(0deg, var(--green) 0%, var(--green) 90%, transparent 90%, transparent 100%), linear-gradient(90deg, var(--green) 0%, var(--green) 90%, transparent 90%, transparent 100%);
    background-size: 50% 100%, 50% 100%;
    background-repeat: no-repeat, no-repeat;
    background-position: left top, right top;
}


/* SLIDER */
.slider-container {
    width: 100%;
    margin: auto;
    overflow: hidden;
    position: relative;
}
.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.slide {
    min-width: 100%;
    box-sizing: border-box;
    height: 90vh;
    display: flex;
    justify-content: center;
}
.slide img {
    object-fit: cover;
}
.prev, 
.next {
    cursor: pointer;
    position: absolute;
    z-index: 1;
    top: 40%;
    width: 5rem;
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    user-select: none;
    transition: 0.6s ease;
}
.next {
    right: 0;
}
.left,
.right {
    width: 100%;
}

/* TEASERBOX */
#teaserbox .grid{
    gap: 1rem;
    grid-auto-columns: 1fr;
}
.box {
    grid-row: 1;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    gap: 1rem;
}
#teaserbox .box p,
#teaserbox .box h3 {
    text-align: center;
    padding: 1rem;
    margin: 0;
}
.all {
    display: flex;
    justify-content: space-between;
    margin: 0 0 1rem 0;
}
.all div {
    display: flex;
    align-items: center;
}
.all a {
    display: flex;
    gap: 1rem;
}
.all span,
.all i {
    font-size: 1.5rem;
}
.all a {
    align-items: center;
    gap: 1rem;
}
.all a:hover i {
    transform: rotate(-35deg);
}

/* CALL TO ACTION */
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0 0 0;
}
.form h3 {
    font-size: calc(1rem + 1vw);
    margin: 0;
}
.form h4 {
    font-size: calc(1rem + .5rem);
    margin: 0;
}
.form p {
    font-size: 18px;
}
.info {
    justify-content: space-between;
    gap: .5rem;
}
.info input {
    width: 100%;
    padding: .5rem 1rem;
    border: none;
    font-size: 1rem;
}
textarea {
    padding: .5rem 1rem;
    font-size: 1rem;
    border: none;
    resize: none;
}
#recaptcha {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.alert {
    display: none;
    padding: 10px 0;
}
.alert i {
    padding-right: 5px;
}
.option {
    gap: 1rem;
    padding: 1rem 0;
    align-items: center;
}
.option .number,
.option .address {
    display: flex;
    align-items: center;
    margin-top: 1rem;
    font-size: 18px;
    gap: 1rem;
}
.buttons {
    gap: 1rem;
}

/* TEASER */
.teaser {
    gap: 2rem;
    padding: 2rem;
    margin: 5rem 0;
}
.teaser div:nth-of-type(1) {
    grid-column: 1;
}
.teaser div:nth-of-type(2) {
    grid-column: 2;
}
.teaser div:nth-of-type(3) {
    grid-column: 3;
}
.teaser i{
    font-size: 2rem;
    height: 5rem;
    width: 5rem;
    border-radius: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.teaser h3 {
    font-size: calc(1rem + .5vw);
    margin: .5rem 0;
}
.teaser p {
    margin: 0;
}
li i {
    font-size: 5px;
}
a i {
    font-size: 2rem;
}
#linkblock {
    min-width: 30%;
    flex-direction: column;
    gap: 0;
}
#linkblock h3 {
    font-size: 20px;
}
#linkblock li::before {
    content: "•";
}
#linkblock #more::before {
    content: none;
}
#selection {
    display: flex;
    align-items: center;
    width: fit-content;
    cursor: pointer;
    gap: 1rem;
    padding: 0;
    border-radius: 0;
    border: none;
}
#selection span {
    display: flex;
    align-items: center;
    cursor: pointer;
    height: 2rem;
}
#selection label {
    cursor: pointer;
}
#more {
    visibility: collapse;
    opacity: 0;
}

/**** SECTION 3: FOOTER ****/

/* TOPFOOTER */
#topfooter {
    padding-top: 2rem;
    padding-bottom: 4rem;
}
#topfooter nav ul {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
}
#topfooter nav li {
    height: fit-content;
}
#topfooter nav a {
    padding: 0;
}
#topfooter h3 {
    margin: 0 0 .3rem;
}
#topfooter p {
    margin: 0;
    font-size: 18px;
    font-weight: 200;
}
#topfooter a {
    font-size: 18px;
    font-weight: 200;
}
.footer-box {
    display: flex;
    flex-direction: row;
}
.socials {
    display: flex;
    flex-direction: row;
    align-items: end;
}
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: start;
}

#topfooter .fa-cart-shopping {
    font-size: 1.2rem;
}
.social-icons ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-icons img {
  width: 22px;
  height: auto;
  margin: 5px;
}
.fa-cart-shopping {
    padding-right: 0.8rem;
}
#topfooter .footer-links {
    justify-content: end;
    gap: 0;
}

/* BOTTOMFOOTER */
#bottomfooter {
    text-align: center;
    padding-top: .5rem;
    padding-bottom: .5rem;
}
#bottomfooter p {
    margin: 0.5rem;
}

/* COOKIE POPUP */
#popup {
    position: fixed;
    margin: 2rem;
    bottom: 0;
    right: 0;
    z-index: 4;
    padding: 1rem 2rem;
    max-width: 25rem;
    border-radius: 2rem;
}
#accept,
#decline {
    font-size: 1rem;
    font-weight: 600;
}
#popup h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}
.select {
    gap: 1rem;
    justify-content: left;
    margin-top: 2rem;
}
.select .button {
    width: 100%;
}