/* GLOBAL RESET --------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #fafafa;
  color: #333;
}


/* HEADER --------------------------------------------------------- */
header {
  background-color: #466060;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  position: relative;
}

header .logo {
  height: 60px;
  width: auto;
}

header h1 {
  font-size: 2.2rem;
  color: #ffffff;
  font-family: "Rozha One", serif;
}

/* NAVIGATION ----------------------------------------------------- */
nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

nav a:hover,
nav a.active {
  color: #f8c7cc;
}

/* HAMBURGER MENU ------------------------------------------------ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 3px;
}

/* Divider bar under header */
.bar {
  width: 100%;
  height: 8px;
  background-color: #466060;
}




/* FOOTER ---------------------------------------------------------- */
footer {
  background-color: #466060;
  color: #ffffff;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}


/* MOBILE RESPONSIVE ---------------------------------------------- */
@media (max-width: 850px) {
  nav ul {
    display: none;
    flex-direction: column;
    background-color: #466060;
    position: absolute;
    top: 100%;
    right: 20px;
    padding: 20px;
    border-radius: 10px;
  }

  nav ul.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

