
/* HEADER */
.header {
justify-content: center;
align-items: center;
}
.logo {
  border-top: 5px solid white;
  border-left: 10px solid white;
  border-right: 10px solid white;
  width: 90%;
  transition: transform .5s;
  display: block;
  margin: 0 auto;
}

/* DROPDOWN IN HEADER */
.dropdown-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#hamburger-icon,
#close-icon {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  margin: 0 auto;
  /* display: block;
  margin: 0 auto;
  width: 15%;
  padding: 20px;
  font-family: 'Antonio', sans-serif;
  font-size: 1em;
  justify-self: center;
  align-self: center;
  border-radius: 125%; */
}
#close-icon {
  display: none;
}
.dropdown-container.open #hamburger-icon {
  display: none;
}
.dropdown-container.open #close-icon {
  display: block;
}
#hamburger-icon:hover,
#close-icon:hover {
  transform: scale(1.3) translateY(-1px);
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
  color: #73796d;
}
#dropdown-links {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 175px;
  text-align: center;
  align-self: center;
  justify-self: center;
  background-color: white;
  border: 1px solid #ccc;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.2s ease;
  cursor: pointer;
  margin: 0 auto;
  pointer-events: none; /* pprevents clicking when hidden */
}
#dropdown-links.show {
  opacity: 1;
  max-height: 500px;
  pointer-events: auto;
}
#dropdown-links a {
  text-decoration: none;
  color: black;
  padding: 8px 0;
}
#dropdown-links a:hover {
  background-color: #f0f0f0;
  color: #333;
}

/* .login-button {
  background-color: #6f7364;
  color: white;
  border: none;
  padding: 10px; 
  margin-top: 10px;
  font-family: 'Antonio', sans-serif;
  font-size: 1em;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  display: block;
  margin: 0 auto;
  margin-bottom: 60px;
}
.login-button:hover {
  background-color: #555;
}
.login-link {
  display: inline-block;
  background-color: #6f7364;
  color: white;
  padding: 10px;
  margin-top: 10px;
  text-decoration: none;
  border-radius: 5px;
  font-family: 'Antonio', sans-serif;
  transition: background-color 0.3s ease;
} */

/* FOOTER */
footer {
  background-color: #6f7364;
  color: white;
  padding-top: 30px;
  padding-bottom: 10px;
  text-align: center;
  font-family: 'Antonio', sans-serif;
  font-size: .5em;
  font-weight: 10;
  position: relative;
  width: 100%;
  z-index: 1000;
}
.social img {
  height: 30px;
  border: 2px solid #eceaea;
  border-radius: 5px;
}


/* tablet screen width */
@media (min-width: 500px) and (max-width: 900px) {
  .header {
    margin-bottom: 30px;
  }
  .logo {
    width: 300px;
    margin: 0 auto;
  }
  img.dropdown-toggle {
    width: 8%;
    padding: 10px;
  }
  .page-links-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: 
      "shop custom"
      "wearables leather"
      "about photo.";
    gap: 1rem;
  }
}



/* Large screen width */
@media (min-width: 901px) {
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
  }
  img.dropdown-toggle {
    display: none;
  }
  .logo { 
    width: 200px;
    margin: 0;
  }
  .dropdown-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .dropdown-links {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    /* background-color: transparent; */
    opacity: 1;
    max-height: none;
    border: none;
    box-shadow: none;
    padding: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
  }
  .dropdown-links a {
    font-size: 0.9rem;
    flex: 0 0 auto;
  }
  
  .page-links-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas:
      "about custom shop"
      "wearables leather photo";
    gap: 1rem;
  }
}