@charset "utf-8";
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    padding: 15px 30px;
    color: white;
}
body {
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: small;
	font-style: normal;
	font-weight: 400;
	font-variant: normal;
	line-height: normal;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
}

/* Hide Hamburger on Desktop */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    width: 30px;
    height: 4px;
    background-color: white;
}

/* Mobile Responsiveness (Screens 768px and under) */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none; /* Hide links by default */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #000;
    }
    
    /* Show Hamburger on Mobile */
    .hamburger {
        display: flex; 
    }
    
    /* Display the menu when "active" class is applied */
    .nav-links.active {
        display: flex;
    }
}

.container {
  display: grid;
  place-items: center;  /* Centers all rows in the grid container */
  height: 100vh;
}

.row-container {
  display: flex;
  justify-content: center; /* Horizontally centers the row contents */
  align-items: center;     /* Vertically centers the row contents */
}

.column {
  padding: 0;
  margin: 0;
}

#container {
  height: 400px;
  width: 400px;
  position: relative;
}
#image {
  position: absolute;
  left: 0;
  top: 0;
}
#text {
  z-index: 100;
  position: absolute;
  color: white;
  font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  left: 150px;
  top: 280px;
}

texttitle {
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: white;
	font-size: 14px;
    font-weight: bold;
	font-variant: normal;
	line-height: normal;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.parent-container {
  display: flex;
  justify-content: center; /* Horizontally centers the video */
  align-items: center;     /* Vertically centers the video */
  height: 100vh;           /* Adjust height as needed (e.g., 100% or 400px) */
}