/* Base Styling */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: black; /* Black background */
  color: #fff; /* White text */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}


/* Navbar Styling */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5vw 1vw;
  background-color: #333;
  color: white;
  position: fixed;
  top: 0;
  width: 80vw;
  z-index: 1000;
  margin: 5vh 8vw;
  border-radius: 20px;
}



/* Logo Styling */
.logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12vw;
  height: 12vw;
  max-width: 80px;
  max-height: 80px;
  border-radius: 50%;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2vw;
  font-weight: bold;
  color: #fff;
  z-index: 1001;
  background-image: url("../assets/logo.png");
  background-position: center;
  background-size: cover;
  border: white solid 2px;
}

/* Navbar Links Styling */
.navbar .nav-links {
  display: flex;
  gap: 2vw;
}

.navbar .left-links {
  margin-right: auto;
  padding-right: 6vw;
}

.navbar .right-links {
  margin-left: auto;
  padding-left: 6vw;
}

.navbar a {
  color: white;
  text-decoration: none;
  padding: 0.5vw 1vw;
  font-size: 1.2vw;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #00acee;
}

/* Media Query for smaller screens */
@media (max-width: 768px) {
  .logo {
    width: 15vw;
    height: 15vw;
    font-size: 3vw;
  }

  .navbar a {
    font-size: 3.5vw;
  }
}

@media (orientation: portrait){
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5vw 1vw;
    background-color: #333;
    color: white;
    position: fixed;
    top: 0;
    width: 90vw;
    z-index: 1000;
    margin: 2.5vh 4vw;
    border-radius: 10px;
    height: 5vh;
  }

  .navbar a {
    color: white;
    text-decoration: none;
    padding: 0.5vw 1vw;
    font-size: 3.5vw;
    font-weight: bold;
    transition: color 0.3s;
  }
}

/* Hero Section */
#hero {
  background: url('../assets/ceo.png') no-repeat center center/contain;
  color: black;
  text-shadow: 10px black;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  margin-top: 10vh;
}

#hero h2 {
  font-size: 3em;
}

#hero p {
  font-size: 1.5em;
  margin-bottom: 5vh;
}

/* Footer Section */
footer {
  background: #003366;
  color: white;
  padding: 2px 0;
  text-align: center;
  width: 100%;
  position: fixed;
  bottom: 0;
}

footer .container {
  max-width: 100vw;
  padding: 0 20px;
}

footer nav a {
  color: white;
  text-decoration: none;
}

footer nav a:hover {
  text-decoration: underline;
}

footer p {
  margin: 0;
  font-size: 1em;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .logo {
    width: 15vw;
    height: 15vw;
  }

  .navbar a {
    font-size: 3.5vw;
  }

  #hero h2 {
    font-size: 2.5em;
  }

  #hero p {
    font-size: 1.2em;
  }
}
