body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #000; /* Black background */
  color: #fff; /* White text */
  transition-delay: 5s !important;
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  display: none !important;
}

/* Hide scrollbar for IE, Edge and Firefox */
*{
  -ms-overflow-style: none !important;  /* IE and Edge */
  scrollbar-width: none !important;  /* Firefox */
}

header {
  background: black; /* Dark blue background */
  color: white;
  padding: 20px 0;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
}

header .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 100vw;
  max-height: min-content;
}

header h1 {
  margin: 0;
  font-size: 2.5em;
}

header p {
  font-size: 1.2em;
}

header nav {
  background-color: black;
  width: max-content;
  padding: 4vw;
  border-radius: 10vw;
  border: white 0.3vw solid;
}

header nav a {
  color: white;
  margin-inline: 3vw;
  text-decoration: none;
  font-weight: bold;
}

header nav a:hover {
  text-decoration:none;
}

#hero {
  background-position: 0 30;
  color: white;
  text-shadow: 10px black;
  height: 95vh; /* Fill the entire viewport height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 5vh;
}

#hero .container{ 
  margin-bottom: 0px;
  border-radius: 10px;
}

#hero .img{
  height: 25vh;
  background-image: url("./assets/logo.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

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

#hero p {
  font-size: 1.5em;
  color:#0080ff;
}

#hero div{
  margin-bottom: 5vh;
}


.cta-button {
  background: #003366; /* Dark blue */
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.5em;
  transition-delay: 2s;
  margin-top: 20px;
}

.cta-button:hover {
  background: #00509e; /* Lighter blue */
}

#about {
  height: 85vh;
  margin: 5vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition-delay: 2s;
}

#about p{
  max-width: 60vw;
  margin: auto;
}

.profile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.profile-pic {
  background-image: url("./assets//logo.png");
  background-size: 150px 150px;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  margin-bottom: 20px;
  border: 5px solid #003366; /* Dark blue border */
  color: black;
}

.profile p {
  max-width: 80vw;
  margin: 0 auto;
  font-size: 4vw;
}

footer {
  background: #003366; /* Dark blue background */
  color: white;
  padding: 2px 0;
  text-align: center;
}

footer .container {
  max-width: 100vw;
}

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

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

footer p {
  margin: 0;
}

/* Responsive Design */
@media (max-width < 760px) {
  #hero{
    background-size: 60vw 95vh;
    background-position: center;
  }

  header h1 {
    font-size: 2.5em;
  }

  header p {
    font-size: 1.2em;
  }

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

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

  .cta-button {
    font-size: 1.2em;
    padding: 10px 20px;
  }

  .profile-pic {
    width: 120px;
    height: 120px;
  }

  #about {
    padding: 40px 20px;
  }
}

@media (max-width < 480px) {
  header h1 {
    font-size: 2em;
  }

  header p {
    font-size: 1em;
  }

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

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

  .cta-button {
    font-size: 1em;
    padding: 8px 16px;
  }

  .profile-pic {
    width: 100px;
    height: 100px;
  }

  #about {
    padding: 20px 10px;
  }
}

@media (orientation: landscape) {
  #hero{
    color: white;
    text-shadow: 10px black;
    height: 95vh; /* Fill the entire viewport height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 10vh;
  }

  #hero .container{
    margin: 0;
    padding: 0;
  }

  #hero p{
    width: 60vw;
    text-align: center;
    word-wrap: break-word;
  }
  header nav{
    padding: 1vw;
    border: white 0.3vw solid;
  }

  .profile p {
    max-width: 80vw;
    margin: 0 auto;
    font-size: 1.5vw;
    color: white;
  }
  footer{
    font-size: 1vw;
  }
  footer a{
    font-size: 1vw;
  }
  header nav a:hover {
    text-decoration:none;
  }
}


/* 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 9vw;
  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;
  }
  #about p{
    max-width: 90vw;
    margin: auto;
  }
}
