:root {
    --background-dark-color: #000000;
    --background-light-color: #ffff;
    --background-highlight-color: #fff042;
    --background-member-color: #1c1c1c;

    --text-dark-color: black;
    --text-highlight-color: #fff042;
    --text-light-color: #F5F5F5;
    --text-member-color: #424242;

    --list-border-color: #939598;
}

@font-face {
font-family: "VinMonoPro-SemiBold";
src: url('../fonts/VinMonoProSemiBold/font.woff2') format('woff2'), url('../fonts/VinMonoProSemiBold/font.woff') format('woff');
}

body {
    background-color: var(--background-dark-color);
    font-family: "Roboto", sans-serif;
}

p, li {
    font-size: 19px;
    line-height: 26px;
    font-weight: 400;
}

a {
    text-decoration: none;
}

/* Sections */
.dark-section {
    background-color: var(--background-dark-color);
    color: var(--text-light-color);
    padding-top: 120px;
}

.dark-section .section-title {
    color: var(--text-highlight-color);
}

.dark-section a {
    color: var(--text-light-color);
}

.light-section {
    background-color: var(--background-highlight-color);
    color: var(--text-dark-color);
    padding-top: 120px;
}

.light-section a {
    color: var(--text-dark-color);
}

.section-title, .section-heading {
    font-family: "VinMonoPro-SemiBold";
    font-size: 26px;
    font-weight: 500;
    text-transform: uppercase;
}

.section-heading {
    margin-bottom: 24px;
}

#member, #eu {
    background-color: var(--background-member-color);
    color: var(--text-member-color);
}


/* Buttons */
button {
    border: 0;
    border-radius: 5px;
}

.main-button {
    display: flex;
    justify-content: center;
    width: 100%;
    background-color: var(--text-highlight-color);
    margin-top: 48px;
    transition: background-color 0.25s;
}

.main-button:hover {
    background-color: var(--text-light-color);
}

.main-button a {
    width: 100%;
    font-size: 22px;
    font-weight: 500;
    padding: 20px;
    color: var(--text-dark-color);
    text-transform: uppercase;
    text-decoration: none !important;
}

.small-button {
    display: flex;
    justify-content: center;
    width: fit-content;
    background-color: var(--text-highlight-color);
    margin-top: 20px;
    transition: background-color 0.25s;
}

.small-button:hover {
    background-color: var(--text-light-color);
}

.small-button a {
    font-size: 20px;
    font-weight: 500;
    padding: 8px;
    color: var(--text-dark-color);
    text-transform: uppercase;
}

/* Misc */
.game-overlay {
    display: flex;
    align-items: flex-end;
}

.game-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.game-content-mobile {
    display: none;
    flex-direction: column;
    margin-top: 50px;
}


/* List */
.list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.list-item {
    display: flex;
    border-top: 2px solid var(--list-border-color);
    padding-top: 20px;
}

.list-number {
    flex-basis: 70px;
    font-family: "VinMonoPro-SemiBold";
    color: var(--text-highlight-color);
    font-size: 58px;
    line-height: 70px;
    margin-right: 32px;
}


/* Navigation */
.navbar-brand {
    width: 69px;
}

.navbar-toggler {
    font-family: "VinMonoPro-SemiBold";
    color: var(--text-highlight-color);
    text-transform: uppercase;
    font-size: 24px;
}

.navbar-toggler:focus {
    outline: 0;
    box-shadow: 0 0 0 0;
}

.navbar {
    background-color: var(--background-dark-color);
    font-family: "VinMonoPro-SemiBold";
    z-index: 666;
}

.navbar-nav {
    align-items: center;
    margin: 0px 0; 
    overflow-y: hidden;
}

.nav-link {
    color: var(--text-highlight-color);
    font-size: 24px; 
    text-transform: uppercase; 
    margin-left: 5px; 
    margin-right: 5px;
    border-top: 5px solid transparent;
}

.nav-link:hover {
    color: var(--text-light-color);
    border-top: 5px solid var(--background-light-color);
}

.nav-item.active .nav-link {
    color: var(--text-light-color);
    border-top: 5px solid var(--background-light-color);
}


/* Video */
.video-container {
    position: relative;
}

.video-container video {
    position:relative;
    z-index:0;
}

.video-overlay {
    position:absolute;
    width:100%;
    bottom:50px;
    left:0;
    z-index:1;
}

.video-content {
    flex-direction: column;
    justify-content: space-between;
}

.video-logo-container {
    display: flex;
    flex-direction: column;
}

.video-text {
    max-width: 1000px;
    color: var(--text-light-color);
    font-size: 32px;
    font-family: "VinMonoPro-SemiBold";
    line-height: 35px;
    margin-top: 50px;
}

.video-text-mobile {
    margin-top: 50px;
    font-size: 26px;
    color: var(--text-light-color);
    font-family: "VinMonoPro-SemiBold";
    display: none;
}

.image-logo {
    max-width: 505px;
}


/* Image carousel */
.carousel-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0px;
    z-index: 10;
}

.carousel-overlay .section-title {
    padding-top: 120px;
}

.carousel-gradient {
    position: absolute;
    width: 100%;
    height: 69%;
    bottom: 0px;
    z-index: 5;
	background: rgb(0,0,0);
	background: linear-gradient(180deg, rgba(0,0,0,0) 69%, rgba(0,0,0,0.85) 100%);
}

.carousel-controls {
    display: flex;
    align-items: center;
    align-self: end;
}

.carousel-controls i {
    color: var(--text-light-color);
    font-size: 40px;
}

.carousel-controls i:hover {
    color: var(--text-highlight-color);
}

.carousel-indicator {
    font-family: "VinMonoPro-SemiBold";
    font-size: 25px;
    font-weight: 400;
}

.carousel-controls button {
    border: 0;
    background: 0 0;
}

#office .carousel-item {
    max-height: 90vh;
}

.office-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}


/* Partner */
#partner a{
    text-decoration: underline;
    transition: font-weight 0.25s;
}

#partner a:hover{
    font-weight: 900;
}


/* Jobs */
#jobs a{
    text-decoration: underline;
    transition: font-weight 0.25s;
}

#jobs a:hover{
    font-weight: 900;
}

.job-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.job-item {
    display: flex;
    position: relative;
    background-color: var(--background-light-color);
    padding: 16px;
    border-radius: 5px;
}

.job-item:hover {
    background-color: var(--background-dark-color);
    color: var(--text-light-color)
}

.job-item:hover .job-icon{
    background-color: var(--background-highlight-color);
    color: var(--text-dark-color)
}

.job-link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.job-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--background-dark-color);
    color: var(--text-highlight-color);
    width: 100px;
    height: 100px;
    border-radius: 5px;
}

.job-plus {
    margin-left: auto;
    color: var(--text-highlight-color);
    font-size: 60px;
    font-weight: 900;
}

.job-icon img{
    width: 69px;
    height: 69px;
}

.job-info-container {
    display: flex;
    flex-direction: column;
    justify-content: end;
    margin-left: 64px;
}

.job-title {
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 0px;
    font-family: "VinMonoPro-SemiBold";
}

.job-description {
    font-size: 19px;
    font-weight: 500;
    line-height: 24px;
}

/* Job detail */
#job-detail-info {
    padding-top: 0px;
}

#job-detail-info img{
    width: 100%;
    height: 850px;
    object-fit: cover;
    filter: grayscale(100%);
}

.job-detail-info-wrapper {
    position: relative;
}

.job-detail-overlay {
    position: absolute;
    width: 100%;
    bottom: 50px;
    z-index: 10;
}

#job-detail-info .job-title {
    color: var(--text-highlight-color);
}

.job-details {
    font-size: 19px;
    font-weight: 400;
    line-height: 12px;
    margin-top: 19px;
}

label {
    font-size: 19px;
    font-weight: 400;
}

form a {
    text-decoration: underline;
}

.form-text{
    color: var(--text-light-color);
}

.form-success, .form-fail{
    font-size: 24px;
    font-weight: 600;
}

.form-success{
    color: var(--bs-form-valid-color);
}

.form-fail{
    color: var(--bs-form-invalid-color);
}

.job-detail-logo{
    max-height: 350px;
}

label:has(+ input:required):after {
  content: ' *';
  color: var(--text-highlight-color);
}

label:has(+ select:required):after {
  content: ' *';
  color: var(--text-highlight-color);
}


/* Footer */
#contact, #contact a {
    font-size: 20px;
}

#contact p {
    line-height: 15px;
}

.member-container {
    display: flex;
    justify-content: center;
    padding-top: 20px;
}

.member-item {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
}
.member-item img {
    opacity: 0.15;
    max-height: 95px;
    transition: opacity 0.25s;
}

.member-item img:hover {
    opacity: 1.0;
}

.eu-container {
    display: flex;
    justify-content: center;
    padding: 16px;
}

.eu-container img {
    width: 40px;
}

.back-to-top {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    opacity: 0;
    right: 15px;
    bottom: 95px;
    z-index: 20;
    width: 50px;
    height: 50px;

    background-color: var(--background-dark-color);
    color: var(--text-highlight-color);

    border-radius: 5px;
    border: solid 2px;

    transition: opacity 0.3s ease;
}

.back-to-top:hover {
    background-color: var(--background-highlight-color);
    color: var(--text-dark-color);
}

.back-to-top i {
    font-size: 28px;
}

.back-to-top.active {
    opacity: 1;
}

/* Page not found */
#not-found a{
    text-decoration: underline;
    transition: font-weight 0.25s;
}

.wrapper{
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.spacer{
    flex-grow: 1;
}

@media (max-width: 1000px) {

    .dark-section, .light-section, .carousel-overlay .section-title  {
        padding-top: 80px;
    }

    .game-content-mobile {
        display: flex;
    }

    .image-logo {
        margin: 64px;
        align-self: center;
    }

    .video-text, .game-content, .job-icon {
        display: none;
    }

    .video-overlay{
        bottom: 0px;
    }

    .video-text-mobile {
        display: block;
    }

    .job-info-container {
        margin: 0;
        justify-content: start;
    }
} 