@font-face {
  font-family: 'SVN-Mightiest';
  src: url('../../assets/fonts/SVN-Mightiest.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

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

html, body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: #111;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  justify-content: center;
}

.hero-image-container {
  position: relative;
  width: min(100vw, 768px);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-only {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* 4-Corner Dark Vignette Overlay */
.vignette-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0) 35%,
    rgba(0, 0, 0, 0.35) 65%,
    rgba(0, 0, 0, 0.72) 100%
  );
  pointer-events: none;
  z-index: 2;
}

.top-corner-tag {
  position: absolute;
  top: 30px;
  z-index: 10;
  font-family: sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.top-left-tag {
  left: 5%;
  letter-spacing: 1px;
}

.top-right-tag {
  right: 5%;
}

/* Centered Text Overlay */
.center-text-container {
  position: absolute;
  top: 33%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  pointer-events: none;
}

.love-story {
  position: absolute;
  bottom: 5%;
  left: 5%;
  z-index: 10;
  max-width: 50%;
  color: rgba(255, 255, 255, 0.3);
  font-family: sans-serif;
  font-size: 0.6rem;
  line-height: 1.5;
  text-align: justify;
  pointer-events: none;
}

.language-switch {
  position: absolute;
  right: 5%;
  bottom: 5%;
  z-index: 20;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.9);
  font: 500 0.62rem/1 Arial, Helvetica, sans-serif;
  letter-spacing: 0.7px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.language-switch:hover,
.language-switch:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.countdown {
  display: none;
  justify-content: center;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 1);
  font-family: Arial, Helvetica, sans-serif;
  pointer-events: none;
}

.countdown-unit {
  display: grid;
  gap: 0.2rem;
  min-width: 2.6rem;
  text-align: center;
}

.countdown-unit strong {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.countdown-unit span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.42rem;
  letter-spacing: 0.6px;
}

.couple-tag {
  position: absolute;
  z-index: 10;
  color: rgba(255, 255, 255, 0.78);
  font-family: 'SVN-Mightiest', sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
  pointer-events: none;
}

.text-wrapper {
  position: relative;
  z-index: 2;
  text-shadow: none;
  padding: 20px;
  white-space: nowrap;
}

.text-line-1 {
  display: block;
  font-family: 'SVN-Mightiest', sans-serif;
  font-size: 1.5rem;
  line-height: 1.1;
  letter-spacing: 2px;
  color: #FFFFFF;
  text-transform: lowercase;
  white-space: nowrap;
}

.text-line-2 {
  display: block;
  font-family: 'SVN-Mightiest', sans-serif;
  font-size: 3.2rem;
  line-height: 1.1;
  letter-spacing: 1px;
  margin-top: 4px;
  color: #FFFFFF;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Typed.js Cursor Styling */
.typed-cursor {
  display: inline-block;
  transform: scaleX(0.5);
  margin-left: 2px;
}

