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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: "tt-travels-next", sans-serif;
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.text {
  position: absolute;
  color: white;
  text-align: center;
  pointer-events: none;
  z-index: 1;
  opacity: 70%;
  text-decoration: none;
}

.text.sharp {
  pointer-events: auto;
  z-index: 1;
}

.text.sharp a {
  pointer-events: auto;
  text-decoration: none;
  color: white;
}


.top-left:hover {
  text-decoration: underline;
}
  
.top-right:hover {
  text-decoration: underline;
}
    
/*
.text.sharp a:hover {
  text-decoration: underline;
  opacity: 0.8;
}
*/

/* Centered headline */
.center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(20px, 5vw, 35px);
  text-align: center;
  opacity: 100%;
}

/* Top header links */
.top-left,
.top-center,
.top-right {
  top: 1.5vw;
  font-size: clamp(14px, 2vw, 20px);
  position: absolute;
}

.top-left {
  left: 2vw;
  text-align: left;
}

.top-center {
  left: 50%;
  transform: translateX(-50%);
}

.top-right {
  right: 2vw;
  text-align: right;
}

.stacked-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2; /* 🔧 Matches single-line feel */
  gap: 0.2em;       /* 🔧 Optional: small space between links */
}



/* Blur effect */
.text.blurred {
  filter: blur(10px);
  -webkit-filter: blur(10px);
  z-index: 2;
}

.blur-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  pointer-events: none;
  mask-image: radial-gradient(circle 100px at -200px -200px, transparent 0%, black 100%);
  -webkit-mask-image: radial-gradient(circle 100px at -200px -200px, transparent 0%, black 100%);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  z-index: 2;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .top-left,
  .top-center,
  .top-right {
    font-size: 14px;
    top: 10px;
  }

  .center {
    font-size: clamp(18px, 5vw, 28px);
  }
}
