@charset "utf-8";
/* CSS Document */

body
{
	background-color: #242323;
	margin: 0;
	min-width: 650px;
	min-height: 650px;overflow-x: auto;
}

h1
{
	color: white;
	font-family: "Raleway", sans-serif;
  	font-optical-sizing: auto;
  	font-weight: 600;
	font-size: 60px;
	text-align: center;
}

h2
{
	color: white;
	font-family: "Sarabun", sans-serif;
  	font-weight: 400;
  	font-style: normal;
	font-size: 36px;
}

h3
{
	color: white;
	font-family: "Raleway", sans-serif;
  	font-optical-sizing: auto;
  	font-weight: 600;
	font-size: 48px;
	text-align: left;
	margin: 0;
}

#logo{
	float: left;
	background-color: #007CA0;
	position: sticky;
	line-height: 0;
	padding-top: 60px;
	padding-bottom: 60px;
	padding-left: 35px;
	padding-right: 35px;
	margin: 0;
	opacity: 1.0;
}

#splashscreen{
	position:relative;
	z-index: -1;
	overflow: hidden;
}

#splashvideo{
	width: 100vw;
}

#name{
	font-size: 80px;
}

#nametag
{
	position: absolute;
	top: 250px; /*distance from top*/
	left: 10%; /*distance from side*/
	line-height: 5px; /*distance between lines*/
	text-shadow: 1px 3px 3px black;
}

.header{
 	position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 1.0);
    height: 120px;
    width: 100%;
    margin: 0;
    transition: background-color 0.3s ease-in-out;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:0;
    box-sizing: border-box;
}

.transparent {
	background-color: rgba(255, 255, 255, 0.4) !important;
	filter: drop-shadow(1px 3px 5px black);
}

.headerLinks{
    display: flex;
    gap: 40px;
    white-space: nowrap; /* Prevents text wrapping */
    overflow-x: visible; /* Allows content to go off screen */
	margin-right: 30px;
	margin-left: 30px;
}

.header a{
}

.menutoggle {
    display: none; /* Hide by default */
    font-size: 30px;
    cursor: pointer;
    color: black;
}

a:link, a:visited{
	font-family: "Sarabun", sans-serif;
  	font-weight: 400;
  	font-style: normal;
	color: black;
	text-decoration: none;
}

a:hover{
	text-decoration: underline;
	transition: black 0s ease-out 1s; /*  1s delay on mouseout */
}

a.active, a:active{
	text-decoration: underline;
}

img.social{
	width: 25px;
	position: relative;
	transform: translateY(-2px)
}

h1.sectionTitle{
	text-align: center;
}

a.demoinfo{
	color: white;
	text-decoration: underline;
}

p{
	font-family: "Sarabun", sans-serif;
  	font-weight: 400;
  	font-style: normal;
}

p.demobreakdown{
	font-family: "Sarabun", sans-serif;
  	font-weight: 400;
  	font-style: normal;
	color: white;
	padding-left: 10%;
}

.embed-container { 
	position: relative; 
	width: 80%; /* Make it take up 80% of screen width */
	padding-bottom: 45%; /* Adjusted for correct aspect ratio (16:9 within 50% width) */
	height: 0; 
	overflow: hidden; 
	margin-left: 10%;
	} 
.embed-container iframe, 
.embed-container object, 
.embed-container embed { 
	position: absolute; 
	top: 0; 
	left: 0; 
	width: 100%; 
	height: 100%;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Creates 2 columns */
    gap: 15px; /* Spacing between images */
    justify-content: center;
    max-width: 80%;
    margin: auto; /* Centering the gallery */
}

.gallery-item {
    position: relative;
    overflow: hidden;
    width: 100%; /* Ensures it fills the grid column */
    aspect-ratio: 16 / 9; /* Ensures consistent image proportions */
    display: block;
    text-decoration: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease-in-out;
}

.gallery-item:hover img {
    filter: brightness(50%); /* Darkens image */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Raleway", sans-serif;
    font-size: 24px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.gallery-item:hover .overlay {
    opacity: 1; /* Show title on hover */
}

/* Responsive Design */
@media (max-width: 690px) {
    .gallery {
        grid-template-columns: 1fr; /* Switch to a single column on smaller screens */
    }
	.twocolumns{
		grid-template-columns: 1fr;
		text-align: center;
	}
}

a.button {
    background-color: #007CA0;
    color: white;
    padding: 0.5em 1em;
    font-family: "Sarabun", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    border: none;
    text-decoration: none;
    display: block;
    text-align: center;
    cursor: pointer;
    margin: 20px auto 20px;    /* Centers the block element */
    width: fit-content;   /* Ensure it fits the content size */
}

.button:hover {
    background-color: #006885;
	text-decoration: underline;
}

.line{
	width: 80%;
	height: 2px;
	border-color: white;
	color: white;
	background-color: white;
	position:relative;
	top: 10px;
}

.twocolumns{
  	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	align-items: flex-start;
	padding: 0 10%;
	max-width: 1200px;
	margin: auto;
}

/* Create two equal columns that sits next to each other */
.leftcolumn {
  	display: block;
}

.rightcolumn{
	display: block;
}

p.body{
	font-family: "Sarabun", sans-serif;
  	font-weight: 400;
  	font-style: normal;
	color: white;
	padding: 0;
	margin: 0;
}

img.portrait{
	max-width: 100%;
	height: auto;
	border: 2px solid white;
}

.mainVideo{
	width: 80%;
	display: block;
	margin: auto;
	padding-top: 140px;
}

.breakdownVideo{
	width: 100%;
	margin: auto;
}

img.softwareicons{
	width: 50px;
	position: relative;
	padding: 20px 2px 0px;
}

.contactInfo{
	line-height:2em;
	margin-left: 10%;
	color: #6E6E6E;
	margin-top: -30px;
	padding-bottom: 25px;
}

.contactInfoHead{
  	font-family: "Raleway", sans-serif;
  	font-weight: 600;
  	font-style: normal;
	font-size: 1.5em;
	line-height: 0;
	padding-top: 50px;
}