.navbar {
  background-color: #fffaec;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 58px;
  padding: 0px 20px;
}

.navbar a {
  color: #000000;
  text-align: center;
  padding: 12px 30px;
  text-decoration: none;
  font-size: 20px;
  font-family: "Optima";
}

.navbar a:hover {
  background-color: #ddd;
  color: rgb(0, 0, 0);
}

.navbar a.split {
  order: 2;
}

.navbar a.active {
  background-color: #8db7f1;
  color: rgb(0, 0, 0);
}

.navbar .nav-center {
  flex: 1;
  text-align: center;
  font-family: "Optima";
  font-size: 25px;
  color: #000000;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

body {
  font-family: "barlow", sans-serif;
  font-weight: 300;
  font-style: normal;
  margin: 0;
  padding: 0;
  max-width: 100%
}

.image-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.image-container img {
  display: block;
  width: 100%;
  height: auto;
  transition: 0.3s ease;
}

.image-container:hover img {
  opacity: 0.7;
}

.image-text-permanent {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: white;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px #000;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.image-container:hover .image-text-permanent {
  opacity: 0.7;
}

.image-text-hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 26px;
  font-weight: bold;
  text-shadow: 2px 2px 4px #000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-container:hover .image-text-hover {
  opacity: 1;
}

p {
  margin: 20px;
  font-family: "barlow", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.perspective {
  position: relative;
  display: inline-block;
  margin: 25px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.perspective img {
  display: block;
  height: 530px;
  width: auto;
  border-radius: 20px;
}

.perspective:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.perspective .hover-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  padding: 15px;
  background: rgba(0, 0, 0, 0.55);
  color: white;
  font-size: 18px;
  text-shadow: 1px 1px 2px black;

  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.perspective:hover .hover-caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery {
  position: relative;
  display: inline-block;
  margin: 20px;
  border-radius: 20px;
  border: 5px solid #c7dbf6;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery img {
  display: block;
  width: 100%;
  height: 450px;
}

.gallery:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.gallery .hover-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  padding: 15px;
  background: rgba(0, 0, 0, 0.55);
  color: white;
  font-size: 18px;
  text-shadow: 1px 1px 2px black;

  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery:hover .hover-caption {
  opacity: 1;
  transform: translateY(0);
}

.main-link {
  display: block;
  padding-left: 42px;
  font-size: 26px;
  color: #4681d4;
  text-decoration: none;
  margin: 10px 0;
}

.main-link:hover {
  text-decoration: underline;
}

.secret-block {
  margin: 30px 0;
  padding-left: 22px;
}

.secret-text {
  margin-top: 8px;
  display: none;
  opacity: 0;
}

.secret-text.show {
  display: block;
  opacity: 1;
}

.secret-link {
  font-size: 22px;
  color: #4681d4;
  text-decoration: none;
}

.secret-link:hover {
  text-decoration: underline;
}

.secret-buttons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.secret-buttons button {
  background-color: #8db7f1;
  color: black;
  padding: 8px 18px;
  border: none;
  border-radius: 8px;
  font-family: "Optima";
  font-size: 16px;
  cursor: pointer;
}

.secret-buttons button:hover {
  background-color: #6ea1e6;
  transform: translateY(-2px);
}