:root {
    --white: #efeffc;
    --black: #05050f;
    --accent: #4cd86b;
}

@font-face {
    font-family: 'Eau Sans';
    font-weight: 400;
    src: url('font/eau_sans_book.otf');
}

@font-face {
    font-family: 'Eau Sans';
    font-weight: 600;
    src: url('font/eau_sans_bold.otf');
}

@font-face {
    font-family: 'Eau Sans';
    font-weight: 900;
    src: url('font/eau_sans_black.otf');
}

* {
    font-family: 'Eau Sans', sans-serif;
    font-weight: 400;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    background: #fff;
}

header {
    background: #09150E;
    padding: 30px 5px;
}

header nav {
    color: var(--white);
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    width: 90%;
}

header nav ul {
    list-style-type: none;
    margin: 0;
    -webkit-margin-before: 0;
    -webkit-margin-after: 0;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0;
    -webkit-padding-start: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

header h1 {
    font-size: 1.1em;
    margin: 0;
    font-weight: 600;
    transition: 0.35s;
    cursor: default;
}

header h1:hover {
    color: var(--accent);
}

header nav ul li a {
    text-decoration: none;
    padding: 10px 20px;
    color: var(--black);
    border-radius: 20px;
    font-weight: 600;
    transition: 0.3s;
    background: var(--accent);
}

header nav ul li a:hover {
    background: #5aff7d;
}

.splash {
    background: linear-gradient(180deg, #05050f, #131329);
    color: var(--white);
    position: relative;
    height: 80svh;
    height: 80dvh;
    max-height: 1200px;
    max-width: 100%;
}

.splash-video {
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    height: 100%;
    width: 100%;
    z-index: 1;
    object-fit: cover;
}

.splash-video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

.splash-content-container {
    padding: 60px;
    position: relative;
    z-index: 5;
    background: linear-gradient(180deg, #05050fa1, #131329a1);
    height: 100%;
    display: flex;
    align-items: center;
}

.splash-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
    flex-grow: 1;
}

.splash .box {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-height: 500px;
}

.splash .box h2 {
    margin: 0px 0px 5px 0px;
    font-size: 1.75em;
    font-weight: 600;
    color: var(--white);
}

.splash .box p {
    margin-bottom: 25px;
    color: #CBCBD0;
}

.splash .image {
    height: 400px;
    background: transparent;
    display: block;
    max-width: 500px;
    border-radius: 10px;
    width: 100%;
}

.button {
    display: block;
    cursor: pointer;
    outline: none;
    border: none;
    text-decoration: none;
    background: var(--accent);
    color: var(--black);
    width: 150px;
    text-align: center;
    font-weight: 600;
    border-radius: 5px;
    font-size: 1.05em;
    padding: 15px 20px;
    transition: 0.5s;
}

.button:hover {
    background: #5aff7d;
}

.payments {
    text-align: center;
    padding: 15px;
    background: var(--white);
}

.payments-content {
    display: flex;
    max-width: 1000px;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    column-gap: 20px;
    row-gap: 20px;
    padding: 10px;
    box-sizing: border-box;
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
    text-align: center;
}

.payment-method {
    max-width: 100px;
    width: 100%;
}

.hours {
    padding: 60px 20px;
    background: #fff;
}

.hours-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.hours-content h2 {
    margin: 0px 0px 20px 0px;
    font-weight: 600;
    font-size: 1.5em;
    text-align: center;
}

.hours-content ul {
    list-style-type: none;
    max-width: 500px;
    width: 100%;
    padding: 25px;
    background: var(--white);
    display: block;
    margin: 20px auto;
    border-radius: 10px;
    border-top: 10px solid var(--accent);
}

.hours-content ul li {
    display: flex;
    justify-content: space-between;
}

.hours-content ul li:not(:last-child) {
    margin-bottom: 10px;
}

.hours-content ul li.closed {
    color: #8B8B8F;
}

.hours-content ul .day {
    font-weight: 600;
    display: block;
}

.hours-content ul .hour {
    display: block;
}

.features {
    background: var(--accent);
    padding: 40px 20px;
    color: #0c3704;
}

.features-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-evenly;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.feature h3 {
    margin: 0;
    font-weight: 600;
    margin-top: 10px;
}

.feature p {
    margin: 0;
}


.info {
    padding: 40px 20px;
    background: #fff;
}

.location-content h2 {
    margin: 0px;
    font-weight: 600;
    font-size: 1.5em;
    text-align: center;
}

.info-content p {
    color: #727277;
    text-align: left;
    margin: 8px 0px 25px 0px;
}

.info-content {
    max-width: 1200px;
    width: 100%;
    margin: 40px auto;
}

.info-content-right p {
    color: #727277;
    text-align: right;
    margin: 8px 0px 25px 0px;
}

.info-content-right {
    max-width: 1200px;
    width: 100%;
    text-align: right;
    margin: 40px auto;
}


.location {
    padding: 60px 20px;
    background: var(--white);
}

.location-content h2 {
    margin: 0px;
    font-weight: 600;
    font-size: 1.5em;
    text-align: center;
}

.location-content p {
    color: #727277;
    text-align: center;
    margin: 8px 0px 25px 0px;
}

.location-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

#map {
    width: 100%;
    min-height: 600px;
    margin-bottom: 30px;
    border-radius: 10px;
}

dialog {
    border: none;
    outline: none;
    padding: 25px 25px 10px 25px;
    width: 90%;
    max-width: 600px;
    border-radius: 5px;
    border-top: 8px solid var(--accent);
}

dialog #close-modal {
    float: right;
    margin-top: -15px;
    cursor: pointer;
    color: #1e1e2a;
}

dialog #close-modal:hover {
    color: #000;
}

dialog h2 {
    font-weight: 600;
    margin: 0px 0px 6px 0px;
}

dialog p {
    color: #49494C;
    margin: 0px 0px 15px 0px;
}

dialog form label {
    display: block;
    padding: 5px;
    margin: 8px 0px;
    font-weight: 600;
    font-size: 14px;
}

dialog form input {
    display: block;
    width: 100%;
    outline: none;
    padding: 10px 10px;
    margin-top: 3px;
    border-radius: 5px;
    border: none;
    background: #E0E0DC;
    font-weight: 500;
    transition: 0.25s;
    box-sizing: border-box;
    min-width: 100%;
    text-align: left;
    color: #000;
    min-height: 33px;
}

dialog form input:focus {
    background: #E5E5E9;
}

dialog form input.error {
    background: #F3C3C7;
}

dialog .button {
    margin: 15px auto;
    font-size: 16px;
    max-width: 250px;
    width: 100%;
}

dialog::backdrop {
    background-color: #00000098;
}

#modal-message {
    margin: 20px;
    line-height: 22px;
}

#modal-message h3 {
    font-weight: 600;
    margin: 10px 0px;
    padding: 5px 0px;
    border-bottom: 2px dotted;
}

#modal-message span {
    font-weight: 600;
}

@media screen and (max-width: 600px) {
    .splash .splash-content {
        flex-direction: column;
    }
    .features-content {
        flex-direction: column;
        gap: 40px;
    }
    .info-content {
        text-align: center;
    }
    .info-content p {
        text-align: center;
    }
    .info-content-right {
        text-align: center;
    }
    .info-content-right p {
        text-align: center;
    }
}
