/****** CSS RESET ******/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: normal;
}

h1, h2, h3, h4, h5, h6, p {
    font-size: 100%;
}

ol, ul, li {
    list-style: none;
}

figure {
    font-size: 0;
    line-height: 0;
}

img, video {
    width: 100%;
}

a {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/****** STYLES ******/

:root {
    --main-bg-color: #fff;
    --main-text-color: #041d35;
    --main-gradient: linear-gradient(90deg, rgb(161, 122, 99), rgb(217, 166, 130), rgb(199, 158, 133), rgb(194, 140, 112), rgb(231, 197, 165), rgb(168, 135, 125));
    font-size: 16px;
}

body {
    -webkit-user-select: none; /* Safari, Chrome, Opera */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* Internet Explorer/Edge */
    user-select: none;         /* Standard */
    min-height: 100svh;
    padding: 100px 0 16px;

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

    background-color: var(--main-bg-color);
}

main {
    width: 90vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

section {
    margin-bottom: 80px;
}


h1, h2, h3, h4, a, p {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    
    color: var(--main-text-color);
    /* background-image: var(--main-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}


/*** LOGO ***/

.logo {
    display: flex;
    justify-content: center;
    align-items: center;

    max-width: 66vw;
    margin-bottom: 64px;
}

.logo img {
    max-height: 18svh;
    max-width: 66vw;
    width: auto;
}

/*** INFO ***/

.info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    width: 100%;
}

.info h2 {
    font-size: 3rem;
    line-height: 110%;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-weight: 100; /*Thin*/
    width: 100%;
}

.info p {
    font-size: 1.25rem;
    font-weight: 100; /*Thin*/
}

.divider {
    width: 2px;
    height: 200px;
    background-color: var(--main-text-color);
    /* margin: 96px auto 48px; */

    background-image: var(--main-gradient);
    -webkit-text-fill-color: transparent;

    margin: 0 32px;
}

/*** VIDEO ***/

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Seitenverhältnis */
    height: 0;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


/*** BUTTON ***/

.button-container{
    width: 100%;
    display: grid;
    justify-items: center;
    align-items: center;
}


.draw-border {
  box-shadow: inset 0 0 0 1px #d9a682;
  color: var(--main-text-color);
  transition: color 0.25s 0.0833333333s;
  position: relative;
}
.draw-border::before, .draw-border::after {
  border: 0 solid transparent;
  box-sizing: border-box;
  content: "";
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  bottom: 0;
  right: 0;
}
.draw-border::before {
  border-bottom-width: 2px;
  border-left-width: 2px;
}
.draw-border::after {
  border-top-width: 2px;
  border-right-width: 2px;
}
.draw-border:hover {
  color: var(--main-text-color);
}
.draw-border:hover::before, .draw-border:hover::after {
  border-color: #d9a682;
  transition: border-color 0s, width 0.25s, height 0.25s;
  width: 100%;
  height: 100%;
}
.draw-border:hover::before {
  transition-delay: 0s, 0s, 0.25s;
}
.draw-border:hover::after {
  transition-delay: 0s, 0.25s, 0s;
}

.button {
    background: none;
    padding: 24px 48px;
    width: max-content;

    font-size: 1rem;
    font-weight: 200;
    text-transform: uppercase;

    transition: transform 0.3s ease-out;
}

/*** FOOTER ***/

footer {
    border-top: 1px solid #d9a682;
    padding: 32px 0;
    width: 90vw;
}

footer h3 {
    font-size: 1rem;
    font-weight: 200; /*ExtraLight*/
    text-transform: uppercase;
    text-align: center;
}


/*** ANIMATIONS ***/

@keyframes slideUpFadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
        
    }
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

.logo {
    animation: slideUpFadeIn 1s ease-out 0.25s forwards;
    opacity: 0;
}

.video {
    animation: slideUpFadeIn 1s ease-out 0.5s forwards;
    opacity: 0;
}

.divider {
    animation: slideUpFadeIn 0.5s ease-out 0.75s forwards;
    opacity: 0;
}

h2 {
    animation: slideUpFadeIn 0.5s ease-out 1s forwards;
    opacity: 0; 
}

.button{
    animation: slideUpFadeIn 0.5s ease-out 1.25s forwards;
    opacity: 0;
}

/*** RESPONSIVE ***/

@media (max-width: 1024px) {

    .logo img {
        max-width: 50vw;
    }

    .info h2 {
        font-size: 2rem;
    }

    .divider {
        width: 1px;
    }
}

@media (max-width: 768px) {
    .logo img {
        max-height: none;
    }

    .info {
        flex-wrap: wrap;
    }

    .info h2 {
        font-size: 2.75rem;
    }

    .divider {
        display: none;
        /* width: 100%;
        height: 1px;
        margin: 40px auto 48px; */
    }

    .info h2 {
        text-align: center;
        margin-bottom: 40px;
    }
}


@media (max-width: 480px) {
    :root {
        font-size: 10px;
    }

    body {
        padding: 64px 0 16px;
    }

    section {
        margin-bottom: 72px;
    }

    .logo img {
        max-width: 66vw;
    }

    .button {
        padding: 16px 24px;
        font-size: 1.5rem;
    }


    footer {
        margin-top: auto;
    }

    footer h3 {
        font-size: 1.25rem;
    }
}