/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #020202;
    color: #333;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#bgVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Content wrapper */
.content-wrapper {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.65); /* Semi-transparent overlay */
}


/* Flex container that hugs its content */
.flex-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 95vh;
    max-width: 100%;
    background-color: transparent;
}


/* Base container for content sections */
.base-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: auto;
    max-height: 14vh;
}

.flex-container header{
  display: none !important;
}

/* Base container for content sections */
.base-container img{
  display: block;
  width: auto;
  height: 100%;
}

.logo-container{
    height: 32vh !important;
    max-height: 32vh !important;
}


/* Gap utility class */
.gap-8 {
    margin-top: 6vh;
    margin-bottom: 8vh;
}

.gap-5 {
    margin: 5vh;
}

.gap-2 {
    margin-top: 1vh;
    margin-bottom: 2vh;
}

.gap-n0 {
    margin-top: -1vh;
    margin-bottom: 0;
}


/* Typography */
h1 {
    font-size: 2.5rem;
    color: #2c3e50;
}

h2 {
    display: none !important;
    font-size: 0.6rem;
    margin-bottom: 1rem;
    color: #3498db;
}

a {
    color: #7f8c8d;
    font-size: 1.2rem;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    margin-top: -1vh;
    font-size: 0.6rem;
    color: #4c5454;
}
