html, body {
    height: 100%;
}
body {
    background-color: black;
    background-size: cover;
    background-repeat: no-repeat;
}

header {
    height: 70px;
    width: 90%;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    opacity: 90%;
    padding: 10px;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 1px solid #ddd;
  border-width: 4px;
  margin-bottom: 10px;
}

.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* full height of the viewport */
}

.content-wrap {
    flex: 1; /* fills available space and pushes footer down */
    background-color: #3a3a3a;
}

.content-wrap2 {
    flex: 1; /* fills available space and pushes footer down */
    background-color: rgb(0, 0, 0);
}

footer {
    height: 70px;
    width: 90%;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    opacity: 90%;
    padding: 10px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-top: 1px solid #ddd;
  margin-top: 10px;
}

.logo-container {
    display: flex;
    align-items: center; /* vertically centers items */
    float: left;
}

.logo {
    float: left;
    margin: auto;
    height: 50px;
    object-fit: contain;
    text-align: center;
    margin-right: 10px;
}

.logo-text {
    font-family: "DM Sans", sans-serif;
    color: white;
    font-size: 30px;
    line-height: 1;
}

.logo-message {
    font-family: "DM Sans", sans-serif;
    color: white;
    font-size: 14px;
    line-height: 1;
    margin-left: 100px;
    margin-bottom: 20px;
}

.footer-text {
    font-family: "DM Sans", sans-serif;
    color: white;
    font-size: 18px;
    line-height: 1;
}

.menu {
    float: right;
}

.menu-items {
     font-family: "DM Sans", sans-serif;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px; /* spacing between menu items */
}

.menu-items li a {
    font-family: "DM Sans", sans-serif;
  position: relative;
  text-decoration: none;
  color: white;
  font-weight: 500;
  padding-bottom: 5px;
  transition: color 0.3s;
  font-size: 18px;
}

.menu-items li a:hover {
  color: #007BFF; /* hover color */
}

/* Create the underline effect */
.menu-items li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: white;
  transition: width 0.3s ease-in-out;
}

/* Animate underline on hover */
.menu-items li a:hover::after {
  width: 100%;
}

/* --- Main Content -- */

.main-content-founders {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 150px;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 20px;
}

.main-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 20px;
}

.content-image {
    text-align: center;
    object-fit: contain;
    height: 400px;
    border-radius: 8px;
}

.content-image img {
    object-fit: contain;
    max-height: 400px;
    max-width: 400px;
    border-radius: 150px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.content-image2 img {
    object-fit: contain;
    max-height: 400px;
    max-width: 400px;
    border-radius: 50px;
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.4);
}

.content-image h1 {
    font-family: "DM Sans", sans-serif;
    margin-top: 8px;
    font-size: 24px;
    color: #ffffff;
    background: linear-gradient(to right, black, black, black);
    border-radius: 25px;
    font-weight: 300;
}

.content-image p {
    font-family: "DM Sans", sans-serif;
    margin-top: 2px;
    font-size: 16px;
    color: #ececec;
    margin-bottom: 10px;
    border-radius: 4px;
}

/* Force column layout below a certain width */

/* @media (max-width: 600px) {
  .main-content {
    flex-direction: column;
  }
}

*/

h2 {
    font-family: "DM Sans", sans-serif;
  font-size: 32px;
  margin-top: 0px;
  margin-bottom: 30px;
  color: #ebebeb;
  text-align: center;
  border-top: 2px solid;
  border-bottom: 2px solid;
  border-color: rgb(240, 240, 240);
  text-shadow: 0px 2px 20px rgb(6, 22, 165);
}

h3 {
    font-family: "DM Sans", sans-serif;
  font-size: 32px;
  margin-top: 0px;
  margin-bottom: 30px;
  color: #e6e6e6;
  text-align: center;
  border-top: 2px solid;
  border-bottom: 2px solid;
  border-color: rgb(238, 238, 238);
  text-shadow: 2px 2px 5px rgba(0, 15, 151, 0.5);
}

.content-text p {
    width: 400px;
    height: 400px;
    color: rgb(240, 240, 240);
    font-size: 27px;
    font-family: "DM Sans", sans-serif;
    justify-content:last baseline;
    text-align:unset;
    margin-left: 10px;
}


/* Hamburger icon hidden by default */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  font-size: 18px;
  width: 30px;
  height: 21px;
  background-color: rgb(241, 241, 241);
  padding: 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease; /* <- transition here */
}

/* Responsive */
@media (max-width: 1000px) {
  .hamburger {
    display: flex;
  }

  .menu {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .menu.open {
    display: flex;
    margin-top: auto;
    margin-left: auto;
    width: auto;
  }

  .menu-items {
    flex-direction: column;
    gap: 15px;
    background-color: #111;
    padding: 20px;
  }
}

.hamburger:hover {
  background-color: #042fa7; /* Bootstrap-style blue or any color you want */
}


/* --- HERO SECTION --- */
.hero-section {
  background: linear-gradient(to right, black 10%, #0136c7 50%, black 90%);
  padding-top: 0px;
  padding-bottom: 30px;
  text-align: center;
  color: white;
}

.hero-text h1 {
  font-family: "DM Sans", sans-serif;
  font-size: 30px;
  margin-bottom: 10px;
}

.hero-text p {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  margin-bottom: 30px;
}

.cta-button {
  background-color: #1d1d1d;
  color: white;
  font-size: 18px;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #0056b3;
  border-color: #ddd;
  border-style: solid;
  border-width: 1px;
}