
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;700&display=swap');

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Unbounded', sans-serif;
  color: #fff;
  overflow: hidden;
}

.background {
  background: url('utopia_bg.jpg') no-repeat center center/cover;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: -2;
}

.overlay {
  background: rgba(0, 0, 0, 0.65);
  padding: 4em 2em;
  text-align: center;
  height: 100%;
  overflow-y: auto;
}

h1 {
  font-size: 3em;
  margin-bottom: 0.5em;
  text-shadow: 0 0 12px #00e6e6;
}

.intro {
  font-size: 1.2em;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.8;
  color: #e0e0e0;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 3em auto;
  max-width: 90%;
  border: 3px solid #00e6e6;
  box-shadow: 0 0 20px #00e6e6;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#utopia-video {
  animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

#utopia-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.return-link {
  color: #ffd6d6;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.2em;
  text-shadow: 0 0 6px #000000;
  transition: color 0.3s ease;
}

.return-link:hover {
  color: #ffffff;
}

.intro {
  margin-top: 3em; /* Pushes the intro section down a bit */
  text-align: center;
}

.return-link {
  display: inline-block;
  margin-top: 1em;
  color: #ffd6d6;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.3em;
  text-shadow: 0 0 6px #000;
  transition: color 0.3s ease;
  position: relative;
  top: -2em; /* ← Raises the link upward */
}

.return-link:hover {
  color: #ffffff;
}