/* CORE */
body {
  font-family: Arial, sans-serif;
  background: #F4F4F4;
  color: #1F2226;
  margin: 0;
}

/* HEADER */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: #1F2226;
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
} 


/* LOGO CONTAINER */
.site-logo,
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* LOGO IMAGE */
.site-logo img,
.logo img {
  max-height: 42px;
  width: auto;
  display: block;
}


/* HAMBURGER BUTTON */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  display: block;
}

/* MOBILE STYLES */
@media (max-width: 768px) {
    
  .site-logo img {
    transform: translateY(1px);
  }
    
 header,
  .site-header {
    padding: 12px 5px;
  }

  .menu-toggle,
  .hamburger {
    margin-top: 0;
  }

  /* HAMBURGER BUTTON */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  padding: 0;
  margin: 0;
  line-height: 1;
}

  .menu-toggle i,
  .hamburger i {
  font-size: 22px;
  line-height: 1;
}

  
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #1F2226;
    flex-direction: column;
    display: none;
  }

  .nav-menu li {
    border-top: 1px solid #333;
  }

  .nav-menu li a {
    padding: 1rem;
    display: block;
  }

  .nav-menu.active {
    display: flex;
  }
}



/* FORMS */
form {
  max-width: 500px;
  background: #fff;
  padding: 2rem;
  border-radius: 6px;
}

label {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  font-weight: 200;
}

input, textarea {
  padding: 0.6rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* BUTTONS */
button {
  background: #0389BE;
  color: #fff;
  border: none;
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background: #835292;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
  }
}
