.background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

.circle-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 40px;
}

.circle {
  position: relative;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  text-align: center;
  text-decoration: none;
}

.circle:hover {
  transform: scale(1.05);
}

.circle video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.circle-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: bold;
  pointer-events: none;
  text-transform: uppercase;
  width: 100%;
}

.white-text {
  color: white;
}

.blue-text {
  color: #042d5b;
}

.background-image {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100vh;
}
