html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'League Spartan', sans-serif;

}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: transparent;
}

.navbar {
  display: flex;
  justify-content: center;
  padding: 20px;
  
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;

}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh; 
  overflow: hidden;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-images {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.hero-img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-img.active {
  opacity: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  top: 50%;
  transform: translateY(-50%);
}

.tagline {
  font-style: 'League Spartan', sans-serif;
  font-size: 1.2rem;
}

.menu-icon {
  width: 24px;    
  height: 24px;
  stroke: #000;    
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
}
.nav-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
}

.location-icon {
  width: 24px;
  height: 24px;
}
.icon {
  width: 24px;
  height: 24px;
}
.icon {
  width: 24px;
  height: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #fff;
  color: #333;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: black;
  padding: 15px 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
}

.nav-links li {
  margin: 0 20px;
}

.nav-links a {
  color: black;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: color 0.3s ease, transform 0.3s ease;

}

.nav-links li:nth-child(3) a {
  color: white !important;
}

.nav-links a:hover {
  color: #f2f2f2;
  transform: translateY(-3px);
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 30px;
  height: 25px;
}

.hamburger .bar {
  background-color: #fff;
  height: 4px;
  width: 30px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px;
    left: 20px; 
    background-color: whitesmoke;
    width: auto;
    height: auto;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 10px; 
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
    padding: 5px 0; 
  }

  .hamburger {
    display: flex;
  }

  .nav-links a {
    font-size: 16px;
    font-weight: 500;
  }
}
