/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* HEADER */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6b1e5e;
  font-weight: bold;
}

.logo img {
  height: 32px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a,
.dropbtn {
  text-decoration: none;
  color: #333;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.nav-links > a:hover {
  color: #722f6e;
}

/* DROPDOWN */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 180px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.dropdown-content a {
  display: block;
  padding: 10px;
  color: #333;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: #fbd2ff;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* SEARCH */

.search-box {
  display: flex;
  align-self: center;
  padding: 8px 15px;
  position: relative;
  outline: none;
  transition: border-color 0.3s ease;
}

.search-box input {
  padding: 6px 10px;
  border-radius: 20px;
  border: 1px solid #ccc;
}

.search-box input:focus {
  border-color: #722f6e;
  outline: none;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* BODY */
.content {
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 20px;
  font-family: Arial, sans-serif;
}
.page-title {
  text-align: center;
  color: #5b1b52;
  font-size: 36px;
  margin-bottom: 30px;
}

/* FOOTER */
.footer {
  background-color: #7a1f63;
  color: white;
  padding: 20px;
  text-align: center;
}

.socials {
  margin-bottom: 10px;
}

.socials a {
  margin: 0 12px;
  color: white;
  font-size: 20px;
  text-decoration: none;
}

.socials a:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    padding: 15px 20px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    margin-top: 15px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a,
  .dropbtn {
    padding: 12px 0;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #eee;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    background-color: #f9f9f9;
    margin-left: 15px;
  }

  .dropdown:hover .dropdown-content {
    display: none;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }

  .search-box {
    width: 100%;
    margin-top: 10px;
    padding: 12px 0;
  }

  .search-box input {
    width: 100%;
  }
}
