:root {
    --line-light: rgb(187, 187, 187);
    --line-deep: rgb(80, 80, 80);
    --font-light: rgb(245, 245, 245);
    --font-deep: rgb(168, 168, 168);
    --bg: rgb(80, 80, 80);
    --bg-deep: rgb(46, 46, 46);
}

body {
    font-family: "Montserrat", sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    transition-duration: 500ms;
    transition-timing-function: ease-in-out;
}

.career {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 1em;
    color: var(--font-light);
    font-weight: 300;
    padding: 1.5em;
    font-size: small;
}
.career a {
    text-decoration: none;
    color: var(--font-light);
    font-size: 0.75em;
    font-weight: 600;
    text-align: center;
}
.career a:hover {
    color: var(--font-deep);
    background-color: var(--bg);
}

.title {
    font-size: 1.5em;
    font-weight: 500;
    width: 100%;
    color: white;
    text-align: left;
    border-bottom: 2px solid var(--line-light);
    margin-bottom: 1em;
}
.container {
    width: 100vw;
    height: 100vh;
    margin: 0;
    background-color: var(--line-deep);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    z-index: 0;
    overflow-x: hidden;
    overflow-y: auto;
}
/* hide scrollbar */
.container::-webkit-scrollbar {
width: 0px;
background: transparent;
}
svg {
    height: 300px;
    width: 100%;
    transition: 1s ease-out;
}

#wave {
    stroke: var(--line-light);
    stroke-width: 30px; /* Adjust the wave width */
    stroke-linecap: round;
    fill: none;
}

.controls {
    position: fixed;
    bottom: -18vh;
    right: -20vw;
    width: 100%;
    /*transform: rotate3d(-15, 0, 10, -54deg);*/
    transform: rotate3d(-15, 0, 10, -54deg);
    transition-duration: 500ms;
    transition-timing-function: ease-in-out;
    z-index: 99;
    background: linear-gradient(0deg,var(--bg) 80%, rgb(255, 255, 255, 0) 100%);
}

.controls[enabled] {
    bottom: 0;
    right: 0;
    padding-bottom: 50vh;
    transform: rotate3d(0, 0, 0, 0);
}

.navi-container {
    position: fixed;
    margin: 0;
    width: 100%;
    background-color: var(--line-deep);
    display: flex;
    justify-content: center;
    align-items: center;
}

.navi {
    display: grid;
    gap: 1em;
    font-size: 3em;
    font-weight: 300;
    color: var(--font-light);
    width: 300px;
}
.navi span {
    cursor: pointer;
    text-align: center;
}
.navi span:hover {
    color: var(--font-deep);
    background-color: var(--bg-deep);
}

.content-container {
    width: 100%;
    max-width: 640px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10em;
    justify-content: flex-start;
    transform: translate3d(0, 0, -100px);
}
.content-container > div {
    width: 100%;
}

.collections {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1em;
    flex-direction: row;
}
.collections a {
    text-decoration: none;
    color: var(--font-light);
    font-size: 0.75em;
    font-weight: 300;
    text-align: center;
}
.collections a:hover {
    color: var(--font-deep);
    background-color: var(--bg);
}

.show-box {
    width: 200px;
    height: 150px;
    background-color: var(--bg-deep);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    border-radius: 1em;
    background-size: 100%;
    background-repeat: no-repeat;
}
.collection-title {
    font-size: 1.5em;
    font-weight: 300;
    color: var(--font-light);
    line-height: 38px;
    width: 100%;
}

.contacts {
    display: flex;
    max-width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1em;
    color: var(--font-light);
    font-size: 2em;
    font-weight: 300;
}
.contacts form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}
.contacts label {
    font-size: 0.5em;
    font-weight: 300;
    text-align: left;
    width: 90%;
    padding-top: 1em;
}
.contacts input, .contacts textarea {
    width: 90%;
    background-color: var(--bg-deep);
    color: var(--font-light);
    border: none;
    border-radius: 0.5em;
    padding: 0.5em;
    font-size: 0.5em;
    font-weight: 300;
    font-family: "Montserrat", sans-serif;
}
.contacts textarea {
    resize: none;
    height: auto;
}
.contacts button {
    background-color: var(--bg-deep);
    color: var(--font-light);
    border: none;
    border-radius: 0.5em;
    padding: 0.5em;
    cursor: pointer;
}

.sns-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 1em;
    color: var(--font-light);
    font-size: 2em;
    font-weight: 300;
    padding-top: 2.5em;
}
.sns {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 1em;
    color: var(--font-light);
    font-size: 2em;
    font-weight: 300;
}
#instagram-embed-0 {
    width: 250px !important;
    height: 460px !important;
    min-width: unset !important;
    margin: 0 !important;
}
.footer {
    margin: 0em;
    color: var(--font-light);
    font-size: 0.75em;
    font-weight: 300;
    background-color: var(--bg);
    height: 5em;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (orientation: portrait) {
    .sns-box {
        flex-direction: column;
    }
}