@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@100..900&family=Dela+Gothic+One&family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Oswald:wght@200..700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "IBM Plex Sans", "IBM Plex Sans Placeholder", sans-serif;
}

body {
  min-height: 100vh;
  background: rgb(255, 255, 255);
  background-size: cover;
  background-position: center;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0px 200px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
  z-index: 3;
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  transition: 0.5s;
}

.header:hover::before {
  left: 100%;
}

/* Base styles for logos */
.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-left: 60px;
}

.logo2 {
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.logo-img {
  height: 40px;
  width: auto;
  margin-top: 10px;
}

.logo-img2 {
  height: 40px;
  width: auto;
  margin-top: 10px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .logo {
    margin-left: 40px;
  }

  .logo-img {
    height: 35px; /* Slightly smaller for tablets */
  }

  .logo2 {
    margin-left: 15px;
  }

  .logo-img2 {
    height: 40px;
  }
}

@media (max-width: 768px) {
  .logo {
    margin-left: 20px;
  }

  .logo-img {
    height: 30px; /* Smaller for mobile */
  }

  .logo2 {
    margin-left: 10px;
  }

  .logo-img2 {
    height: 35px;
  }
}

@media (max-width: 600px) {
  .logo {
    margin-left: 10px;
  }

  .logo-img {
    height: 25px; /* Adjust for small mobile devices */
    margin-top: 5px;
  }

  .logo2 {
    margin-left: 5px;
  }

  .logo-img2 {
    height: 30px;
    margin-top: 5px;
  }
}


.navbar a {
  color: #000000;
  font-size: 16px;
  text-decoration: none;
  margin-left: 35px;
  transition: 0.3s;
  position: relative;
}

.navbar a::before {
  content: "";
  position: absolute;
  top: -12.5px;
  /* Adjust this value to control the distance from the text */
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 3px;
  /* Adjust the thickness of the line */
  background: linear-gradient(90deg, hsla(245, 100%, 50%, 1) 0%, hsla(0, 0%, 0%, 1) 50%, hsla(25, 100%, 50%, 1) 100%);
  /* Line color */
  transition: width 0.3s;
}

.navbar a:hover::before {
  width: 100%;
  /* Adjust the width of the line on hover */
}


#menu-icon {
  font-size: 36px;
  color: #000000;
  display: none;
}

/* BREAKPOINTS */
@media (max-width: 992px) {
  .header {
    padding: 0.25rem 4%;
  }
}

@media (max-width: 768px) {

  .logo {
    margin-left: 0;
  }

  #menu-icon {
    display: block;
  }

  .header{
    background: #00000000;
    backdrop-filter: none;
  }

  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 0.5rem 4%;
    display: none;
  }

  .navbar.active {
    display: block;
  }

  .navbar a {
    display: block;
    margin: 2rem;
    text-align: center;
    font-weight: 500;
  }

  .navbar a:hover::before {
    width: 0;
    /* Adjust the width of the line on hover */
  }

  .nav-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%; /* Start with no height */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    z-index: 1;
    transition: height 0.5s ease; /* Smooth height transition */
    overflow: hidden; /* Ensure no content spills out */
  }
  
  .nav-bg.active {
    height: 100%; /* Expand to full screen height */
  }
  
}