* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* HEADER */
.header {
  display: flex;
  justify-content: end;
  align-items: center;
  padding: 15px 40px;
  background: transparent;
  border-bottom: 1px solid black;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #25016a;
  position: absolute;
  top: 10px;
  left: 8px;
}
.logo img {
  width: 160px;
  border: 2px solid white;
}

.nav {
  padding-right: 9%;
}
.nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.follow-us {
  display: flex;
  align-items: center;
  gap: 10px;
}

.follow-us span {
  font-size: 14px;
  color: #333;
  font-weight: bold;
}

.social {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f1f1;
  border-radius: 50%;
  transition: 0.3s;
}

.social svg {
  width: 18px;
  height: 18px;
}

.social:hover {
  transform: scale(1.1);
  background: #25016a;
}

.social:hover svg {
  fill: #fff;
  stroke: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .follow-us span {
    display: none;
  }

  .logo img {
    width: 100px;
  }
}

/* DEFAULT NAV */
.nav {
  display: flex;
  gap: 20px;
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 70px;
    right: 0;
    width: 220px;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    display: none; /* hidden */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 10px 10px;
    z-index: 999;
  }

  .nav.active {
    display: flex; /* show */
  }

  .hamburger {
    display: block;
  }

  /* OPTIONAL: HIDE SOCIAL ON MOBILE */
  .follow-us {
    display: none;
  }
}
/* MOBILE */
@media (max-width: 900px) {
  /* .nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    display: none;
    flex-direction: column;
    padding: 20px;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    margin: 10px 0;
  }

  .hamburger {
    display: block;
  } */

  .hero {
    justify-content: center;
  }

  .hero-content {
    width: 300px;
    height: 300px;
    padding: 30px;
    text-align: center;
  }

  .hero h1 {
    font-size: 20px;
  }
}
