/* new site stylesheet temp */

/* BODY */
body {
  margin: 0;
  background: url('green-galaxy.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #DBFFE9;
  font-family: 'Electrolize', sans-serif;
}

/* HEADER */
header {
  text-align: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.6);
}

/* NAV */
nav.nav-bar {
  background: rgba(0,0,0,0.7);
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.nav-menu li {
  position: relative;
}

.nav-link {
  display: block;
  padding: 10px 20px;
  color: #DBFFE9 !important;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-link:hover {
  text-decoration: underline;
  background: rgba(255,255,255,0.05);
}

/* Dropdown */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0,0,0,0.85);
  min-width: 160px;
  z-index: 1000;
  flex-direction: column;
}


/* show when JS adds "show" class */
.dropdown-content.show {
  display: flex;
  flex-direction: column;
}


.dropdown-content li a {
  padding: 10px;
  text-align: left;
  color: #DBFFE9 !important;
}

.dropdown:hover .dropdown-content {
  display: flex;
  flex-direction: column;
}

.dropbtn::after {
  content: " ▼";
  font-size: 0.6em;
}

/* MAIN */
main.container {
  margin: 1rem auto;
  padding: 1rem;
  max-width: 960px;
  background: rgba(0,0,0,0.7);
  border: 2px dashed #324A3C;
  border-radius: 8px;
}

/* FOOTER */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;

  display: flex;
  justify-content: center;   /* centers footer-main horizontally */
  background: rgba(0, 0, 0, 0.6);
  color: #eee;
  font-family: 'Electrolize', sans-serif;
  font-size: 0.9rem;
  padding: 5px;
  z-index: 1000;
}

.footer-main{
  display: flex;
  flex-direction: column;
  align-items: center;       /* centers p, icons row, copyright */
  text-align: center;
}


.footer .footer-img {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.footer .footer-img img {
  display: block;  /* removes baseline/descender weirdness */
}

.footer .footer-content {
  display: inline-block;
  text-align: center;
  gap: 5px;
  margin-bottom: 5px;
}

.footer .footer-content a i {
  font-size: 24px;
  color: #DBFFE9;
  transition: transform 0.2s;
}

.footer .footer-content a:hover i {
  transform: scale(1.2);
}

/* Responsive */
/*@media (max-width: 600px) {*/
/*  .nav-menu {*/
/*    flex-direction: column;*/
/*  }*/
/*  .dropdown-content {*/
/*    position: relative;*/
/*    top: 0;*/
/*  }*/
/*}*/

@media (max-width: 480px) {
  .footer .footer-content a i {
    font-size: 20px;
  }
  .footer {
    font-size: 0.8rem;
  }
}