*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  scroll-behavior:smooth;
  text-decoration: none;
} 

body {
  font-family: 'Poppins', sans-serif;
}

/* =========================== NAVBAR ============================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 6%;
  background: #fdfcf9;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2rem;
}

.logo img{
  height: 4rem;

}

.nav-links {
  display: flex;
  gap: 2.2rem;
}

.nav-links a {
  color: #7a7a7a;
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #2c1801;
  transition: .3s;
}

.nav-links a:hover {
  color: #4a4a4a;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: #4a4a4a;
  cursor: pointer;
}

.hero {
    width: 100%;
    height: 100vh;
}

img {
    width: 100%;
}

/* =========================== RESPONSIVE SCREENS ============================= */

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: #fdfcf9;
    flex-direction: column;
    padding: 30px;
    gap: 1.5rem;
    display: none;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }
}

@media (max-width: 480px) {
  .logo {
  height: 2rem;
}

.logo img{
  height: 3.5rem;

}

.hero img{
    width: 100%;
    height: 100vh;
}
}