:root {
  --primary-blue: #021F83;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  color: white;
  background-color: var(--primary-blue);
  overflow-x: hidden;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("Background.png") center center / cover no-repeat;
  z-index: 0;
}

.tint {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-blue);
  opacity: 0.8;
  z-index: 1;
}

.center-content {
  position: relative;
  text-align: center;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}

.logo {
  max-width: 200px;
  width: 30vw;
  height: auto;
}

.title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-top: 20px;
}

.subtitle {
  font-size: clamp(1rem, 2vw, 1.5rem);
  opacity: 0.85;
  margin-top: 10px;
}

.scroll-arrow {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  cursor: pointer;
}

.scroll-arrow span {
  display: block;
  width: 24px;
  height: 24px;
  border-left: 3px solid white;
  border-bottom: 3px solid white;
  transform: rotate(-45deg);
}

.farewell {
  position: relative;
  z-index: 3;
  padding: 80px 20px;
}

.story-inner {
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
}

.story-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}

.story-inner p,
.story-inner li {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.6;
  margin-bottom: 15px;
}

.story-inner ul {
  list-style: disc;
  padding-left: 20px;
}

.signature {
  font-family: 'Dancing Script', cursive;
  font-size: 1.5rem;
  margin-top: 30px;
}

.footer-bar {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.legal,
.made-with {
  color: white;
}

.connect {
  background-color: white;
  padding: 15px;
  margin-bottom: 25px;
  border-radius: 25px;
  text-align: center;
  color: #021F83;
}

.connect p {
  margin: 0;
  font-weight: bold;
}

.connect a {
  color: #021F83;
  font-weight: bold;
  text-decoration: none;
}

.connect a:hover {
  text-decoration: underline;
}

.made-with {
  position: fixed;        /* Fix it relative to the viewport */
  bottom: 10px;           /* Distance from bottom */
  right: 10px;            /* Distance from right */
  background: rgba(255, 255, 255, 0); /* Optional: make it readable over content */
  padding: 5px 10px;      /* Optional: some spacing */
  border-radius: 5px;     /* Optional: rounded corners */
  font-size: 0.9rem;      /* Optional: smaller text */
  z-index: 1000;          /* Make sure it sits above other content */
}
