
.navbar {
    width: 100%; 
    height: 10vh;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(59, 58, 58, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 0 2rem; */
    box-sizing: border-box;
}
/* 
.navbar .logo {
    display: flex;
    align-items: center;
    height: 100%;
    font-family: 'Zain', cursive;
    font-weight: lighter;
    color: white;
    font-size: 2vw;
} */
/* 
.logo-img {
    display: inline-block;
    height: 80%;
    width: auto;
    object-fit: contain;
} */
.logo-img-intext {
    display: inline;
    height: 2.6vw;
    margin-right: 0.5vw;
    width: auto;
}
.buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100%;
    width: auto;
}
.get-started {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid white;
    height: 2.5rem;
    width: auto;
    margin: 0 1rem;
    padding: 0 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    font-size: 1rem;
    font-family: 'Gabarito', cursive;
    background-color: transparent;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.get-started:hover {
    background-color: #ffffff;
    color: #242424; 
}


.footer {
  background-color: #242424;
  color: #ffffff;
  padding: 1.5rem 1rem;  /* increased vertical padding for touch comfort */
  display: flex;
  flex-direction: column; /* stack vertically on mobile */
  justify-content: center;
  align-items: center;
  gap: 0.8rem; /* space between elements */
  font-size: 1rem;
  box-sizing: border-box;
}

.footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 960px; /* max width for bigger screens */
  padding: 0 1rem;
  box-sizing: border-box;
  height: auto; /* remove fixed height */
}

.footer .footer-logo img {
  height: 2.5rem;
  width: auto;
  margin-right: 1vw;
}

.footer .footer-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  height: auto;
  width: auto;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .footer {
    padding: 2rem 1rem;
    font-size: 0.9rem;
  }

  .footer .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 0;
    height: auto;
  }

  .footer .footer-links {
    justify-content: center;
    width: 100%;
    gap: 1rem;
  }

  .footer .footer-logo img {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}
