/* Global Styles */

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

body {
	background-color: black;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

/* Container Styles */

.container {
  text-align: center;
}

/* Menu Bar Styles */

.menu-bar {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: black;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 10px 0;
}

.logo-item {
  margin-left: 20px;
}

.menu-item {
  flex: 1;
  text-align: center;
}

.menu-center {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.menu-center li {
  margin: 0 10px;
  list-style: none;
}

.menu-center a {
    text-shadow: -1px -1px 0 lightblue,
                1px 1px 0 white,
                1px -1px 0 white,
                -1px 1px 0 lightblue;
    color: black;
  text-decoration: none;
  font-size: 22px;
}

.menu-center a:hover {
  text-decoration: underline;
}

/* Background Container Styles */

.background-container {
  padding: 10px;
}

/* Image Group Styles */

.image-group {
  margin-bottom: 50px;
}

.image-group h2 {
	font-family: cursive;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin: 10px 0;
  text-shadow: -1px -1px 0 pink,
              1px 1px 0 white,
              1px -1px 0 white,
              -1px 1px 0 pink;
  color: black;
  text-transform: uppercase;
}

/* Image Bar Styles */

.image-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}

.image-container {
  position: relative;
  flex: 0 0 calc(20% - 10px);
  max-width: calc(20% - 10px);
  margin: 0 5px;
}

.image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: blur(5px);
  transition: transform 0.2s, filter 0.2s;
  cursor: pointer;
}

.image-container:hover img {
  filter: blur(0);
}

.image-container .caption {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  text-shadow: -1px -1px 0 white,
              1px 1px 0 white,
              1px -1px 0 white,
              -1px 1px 0 white;
  color: black;
  padding: 10px;
  text-align: center;
  display: block;
  opacity: 1;
}

.image-container:hover .caption {
  display: none;
}

/* Popup Styles */

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  max-width: 80%;
  max-height: 80%;
  width: auto;
  height: auto;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}