body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-color: white;
  background-size: cover;
  position: relative;
  color: white;
  transition: opacity 0.4s ease;
  font: 400 1.2rem 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.top-section {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 5px 10px;
  gap: 16px;
  position: relative;
  z-index: 20;
}

.company-logo {
  height: auto;
  width: clamp(80px, 15vw, 160px);
  object-fit: contain;
  display: block;
}

.top-navbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  margin-right: 20px;
  border-radius: 50px;
  border: 2.5px solid black;
  background: rgba(255, 255, 255, 0.05);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: block;
  text-decoration: none;
  color: black;
  background: white;
  font-weight: normal;
  padding: 5px 12px;
  border-radius: 25px;
  transition: all 0.3s;
}

.nav-links a.active, .nav-links a:hover {
  background: black;
  color: white;
  font-weight: 900;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 26px;
  cursor: pointer;
  z-index: 200;
  position: relative;
  transition: transform 0.3s ease;
}

.hamburger.open {
    transform: rotate(90deg);
}

.hamburger i {
    pointer-events: none;
    color: black;
}

.hero-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 70vh;
}

.marketing-image{
    height: 100%;
    width: 40%;
    object-fit: cover;
    object-position: 85%;
}

.social-media-marketing{
    color: black;
}

.social-media-marketing-list a{
  text-decoration: none;
  color: black;
  transition: all 0.3s ease;
}

.social-media-marketing-list a:hover{
  background-color: black;
  color: white;
  padding: 4px 8px;
  border-radius: 3px;
  font-weight: bold;
}

.social-media-marketing-list a:hover::after{
  content: "   \f061";
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
  color: white;
}

@media (max-width: 900px) {
  body{
    font-size: 0.9rem;
  }

  .top-section{
    padding: 12px;
  }

  .top-navbar {
    justify-content: flex-end;
    padding: 10px 15px;
    border: none;
    border-radius: 0;
    background: none;
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 1.8rem;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    transition: right 0.4s ease;
    z-index: 90;
  }

  .nav-links.show {
    right: 0;
  }

  .nav-links a {
    background: none;
    color: black;
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 25px;
    padding: 2.5px 6px;
    transition: all 0.3s;
  }

  .nav-links a.active, .nav-links a:hover {
    color: white;
    background: black;
  }

  .marketing-image {
    width: 50%;
    object-position: 65%;
  }
}

.hamburger i {
  transition: transform 0.3s ease, opacity 0.3s ease, color 0.3s ease;
}

.hamburger.open i {
  transform: rotate(180deg);
  opacity: 1;
}

@media (max-width: 375px) {
  .top-section {
    padding: 0 5px 10px 5px;
  }
}

@media (max-width: 550px) {
  .hero-wrapper{
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    margin-top: 1.5rem;
  }

  .marketing-image{
    width: 80%;
  }
}
