/* color picks
   pink        #f229de
   dark-purple #8b097e
   white       #000000
   black       #ffffff
   grey        #434D56;
*/

/* wildcard styles*/
* {
  margin: 0;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  color: white;
}

body {
  background-color: #434D56;
}

h2 {
  text-align: center;
  padding: 5px;
}

.headings {
  padding: 8px;
}

.subheadings {
  padding: 8px;
}

.paragraphs {
  padding: 5px;
  border: solid black 2px;
  border-radius: 8px;

  background-color: #8b097e;
}


/* header section*/

/* Title Styles */
#title {
    text-align: center;
    margin: 10px auto;
    padding: 5px;
    position: relative;
    width: 80%;
    z-index: 1;
}

/* Logo Link Styles */
#logo-link {
    position: absolute;
    right: 15px;
    top: 15px;
}

#logo-link img {
  max-width: 50px;
  max-height: 50px;
  position: absolute;
  right: 15px;
  top: 10px;
}

/* Logo Image Styles */
#logo-home {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block; /* Removes extra space under image */
}

#logo-home:hover {
    transform: scale(1.1);
}




/*navigation*/

#nav-section {
  width: 100%;
}

#nav-list {
  list-style: none;
  margin: 0;
  padding: 0.3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: center;
}

#nav-list li {
  display: block;
}

.nav-btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.3rem 0.1rem;
  line-height: 1.2;
  font: inherit;
  background-color: #910883;
  border: 3px solid black;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}


.nav-btn:hover {
  background-color: white;
  color: black;
}

.logout-form {
  margin: 0;
}



#gallery-link {
  text-decoration: none;
}

#learning-link {
  text-decoration: none;
}

#listitem-to-hide {
  list-style: none;
}

/*footer section*/

footer {
  background-color: #f229de;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 0.5rem 0;
  border: 2px solid black;
  z-index: 1000;
}

footer a {
  display: inline-block;
  padding: 5px;
}

footer img {
  height: 50px;
  width: 50px;
}

/*MEDIA QUERRIES*/

/*375 media screen*/
@media screen and (min-width: 375px) {
  #title {
    margin-left: -5px;
  }

  #logo-link {
    position: absolute;
    top: 5px;
  }
}

   /*768 media screen*/
@media screen and (min-width: 768px) {
    #logo-home {
        width: 60px;
        height: 60px;
    }

    #nav-list {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 1rem;
      padding: 0.5rem 1rem;
    }

    #nav-list li {
     flex: 0 0 auto;
    }

    #title {
        font-size: 1.8rem;
        margin-top: 15px;
        margin-left: 70px;
    }

    .nav-btn {
    width: auto;
    padding: 0.6rem 1rem;
  }

    #footer {
      width: 100%;
      margin-left: 0%;
    }
  }

     /*768 media screen*/
@media screen and (min-width: 1024px) {

}