@font-face {
  font-family: 'OpenSans';
  src: url('OpenSans-Medium.ttf') format('truetype');
}
/* DESKTOP */
@media (min-width: 1050px) {
    .menu-toggle {
        display: none;
    }
	
	#mobileButton{
		display: none;
	}
	
	.description{
        font-size: 18px; 
        line-height: 1.5; 
	}
}
/* MOBILE */
@media (max-width: 1050px) {
	#desktopButton{
		display: none;
	}
	
    .image-text-wrapper,
    .image-text-wrapper-right {
        flex-direction: column; 
        align-items: center; 
        text-align: center; 
        gap: 20px; 
    }
	
	.description{
		width: 90%; 
        max-width: 600px; 
        padding: 10px; 
        font-size: 18px; 
        line-height: 1.5; 
	}
	
    .screenshot-container {
        order: -1; 
    }

	.nav-content ul {
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        padding: 20px 0;
        text-align: center;
    }
	
	.nav-content ul.active {
        display: flex; 
    }

    .nav-content ul li {
        padding: 10px 0;
    }

    
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        font-size: 24px;
        color: white;
    }
}
/*aspect ratio lost, replace pictures*/
@media (max-width: 450px) {
	
}

/*******************/
/*HEADER-NAVIGATION*/
/*******************/

html{
	scroll-behavior: smooth;
}

header {
	font-family: 'OpenSans', sans-serif;
	font-weight: 200;
    color: white; 
    text-align: center; 
    padding: 0px 0; 
    position: relative; 
    overflow: hidden; 
}

nav {
	position: fixed; 
    top: 0; 
	left: 0;
	width: 100%; 
	z-index: 100; 
	background-color: rgba(0, 0, 6, 0.777); 
    padding: 2px; 
}

.nav-content {
    display: flex;
    align-items: center; 
    padding: 0 20px;
		
	width: auto;
	height: 64px;
	
	background-image: url("bgheadertest.png");
	background-size: cover; 
	background-repeat: no-repeat;
	background-position: center;
}

nav ul {
    display: flex; 
    list-style: none;
    margin: 0;
    padding: 0;
	gap: 0px;
}

nav li {
    margin: 0 15px; 
}

nav a {
	color: #eee; 
	text-decoration: none; 
	font-size: 18px;
}

.logo {
    display: block; 
	margin-right: auto;
}
.logo img {
    height: 72px; 
    width: auto; 
}

.cta-button {
	cursor: pointer;
	
	background: none; 
	border: none;
		
	background-image: url("button1t.png"); 
	background-size: cover; 
	background-repeat: no-repeat;
	background-position: center;
	
	min-width: 180px;
	min-height: 50px;

	margin-left: auto; 
	margin-right: -8px;
}

.cta-button:hover {
	filter: brightness(1.2); 
    transform: scale(1.1); 
    transition: all 0.2s ease;
}
.cta-button:active {
    transform: scale(0.95); 
    transition: transform 0.1s ease;
}

.cta-mobile-button {
	cursor: pointer;
	
	background: none; 
	border: none;

	background-image: url("button1t.png"); 
	background-size: cover; 
	background-repeat: no-repeat;
	background-position: center;
	
	min-width: 233px;
	min-height: 65px;
	
	display: block; 
	margin: auto; 
	
	margin-top: 10px;
}

.cta-mobile-button:hover {
	filter: brightness(1.2); 
    transform: scale(1.1); 
    transition: all 0.2s ease;
}
.cta-mobile-button:active {
    transform: scale(0.95); 
    transition: transform 0.1s ease;
}

/******************/
/********BODY*******/
/*******************/

body {
	color: #eee;
	
	background-image: url("bgTestRock.jpg");
	background-size: contain; 
	background-repeat: repeat;
	background-position: center;
}

#video-section {
	position: relative; 
    width: 100%;
    margin: 20px 0; 
    overflow: hidden; 
}

#video-section video {
    width: 100%;
    height: auto; 
	max-height: 1080px;
    display: block; 
	object-fit: contain; 
	
	margin-top: 30px;
}

.separator-header{
	width: auto;
	height: 28px;
	
	background-image: url("seperator_pretzel.png");
	background-size: contain; 
	background-repeat: repeat-x;
	background-position: center;
	
	margin-top: -11px;
	margin-bottom: -50px;
	position: relative;
	
	z-index: 55; 
}

.separator-video{
	width: auto;
	height: 28px;
	
	background-image: url("seperator_pretzel.png");
	background-size: contain; 
	background-repeat: repeat-x;
	background-position: center;

	margin-top: -35px;
	position: relative;
	
	z-index: 10; 
}

.separator-bottom{
	width: 100%;
	height: 64px;
	
	background-image: url("seperator_bottom.png");
	background-size: contain; 
	background-repeat: repeat-x;
	background-position: center;

	z-index: 10; 
}

/**********/
/*IMG+TEXT*/
/**********/

.description{
	font-family: 'OpenSans', sans-serif;
	font-weight: 200;
	flex-grow: 1;
}

.image-text-wrapper {
    display: flex;
    align-items: center; 
    justify-content: left-side;
    max-width: 1600px;
    margin: 0 auto; 
    gap: 5px; 
}

.image-text-wrapper-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    max-width: 1600px;
    margin: 0 auto; 
    gap: 5px; 
    padding: 10px; 
}

.screenshot-container {
    position: relative;
    display: block;
    max-width: 800px;
    max-height: 450px;
    overflow: hidden;
	flex-shrink: 0; 
}


@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.screenshot-container img {
    display: block; 
    width: auto;  /
    height: auto; 
    max-width: 100%;
    max-height: 100%;
	opacity: 0;
    transform: scale(0.8); 
}

.screenshot-container img.show {
    animation: popIn 0.5s ease forwards; /* Apply the animation */
}

.overlayFrame {
	position: absolute;
	top: 0;
	left: 0; 
	width: 100%;
	height: 100%; 
}

/************/
/***FOOTER***/
/************/

footer {
	font-family: 'OpenSans', sans-serif;
	font-weight: 200;
    display: flex;
    flex-direction: column; 
    align-items: center; 
    text-align: center; 
}

footer h1{
	font-weight: 200;
	font-size: 12px;
}

.footer-content {
    display: flex;
    flex-direction: column; 
    align-items: center;
}

.footer-content a {
    margin-top: 5px; 
}

.footer-buttons{
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex; 
    gap: 10px; 
}

.footer-button-discord {
    cursor: pointer;
    background: none; 
    border: none; 
    padding: 0; 
    width: 42px; 
    height: 42px; 

    background-image: url("discord-brands-solid.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    display: inline-block; 
}

.footer-button-steam {
    cursor: pointer;
    background: none; 
    border: none; 
    padding: 0; 
    width: 42px; 
    height: 42px; 

    background-image: url("square-steam-brands-solid.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    display: inline-block; 
}

.footer-button-trello {
    cursor: pointer;
    background: none; 
    border: none; 
    padding: 0; 
    width: 42px; 
    height: 42px; 

    background-image: url("trello-brands-solid.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    display: inline-block; 
}

.footer-button-youtube {
    cursor: pointer;
    background: none; 
    border: none; 
    padding: 0; 
    width: 42px; 
    height: 42px; 

    background-image: url("youtube-brands-solid.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    display: inline-block; 
}

.footer-button-contact {
    cursor: pointer;
    background: none; 
    border: none; 
    padding: 0; 
    width: 42px; 
    height: 42px; 

    background-image: url("envelope-solid.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    display: inline-block; 
}

.footer-buttons button:hover {
    filter: brightness(1.2); 
    transform: scale(1.1); 
    transition: all 0.2s ease;
}
.footer-buttons button:active {
    transform: scale(0.95); 
    transition: transform 0.1s ease;
}
