/* General layout */
body {
  margin: 0;
  padding: 0;
  font-family: "Futura", "Trebuchet MS", Arial, sans-serif;
  color: white;
  text-align: center;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ---------- background block (scrollable) ---------- */
.bg {
  width: 100%;
  height: 200vh; /* <-- increase or decrease to control how much image is revealed on scroll */
  background-image: url('images/background.jpg');
  background-size: cover;
  background-position: center top; /* adjust vertical start */
  background-repeat: no-repeat;
  display: block;
  z-index: 0;
}

/* ---------- fixed content (always visible) ---------- */
.content-wrapper {
  position: fixed;          /* fixed so it always stays visible */
  top: 40px;                /* distance from top of viewport */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  pointer-events: auto;
}

/* Title */
.logo {
  width: 280px; /* adjust to make it roughly the same visual size as the old title */
  height: auto;
  margin-top: 40px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Contact details */
.contact {
  margin-top: 1rem;
  max-width: 200px;
}

.contact p {
  margin: 0.2rem 0;
  color: rgba(0, 0, 0, 0.8);
  font-size: 0.9rem;
}

.contact a {
  color: rgba(0, 0, 0, 0.8);
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* ---------- subscribe form ---------- */
.subscribe-form {
  display: flex;
  justify-content: space-between;
  align-items: stretch; 
  background: rgba(255, 255, 255, 0.1);
  padding: 0.4rem;
  border-radius: 6px;
  max-width: 240px; 
  margin: 0 auto; 
}

input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 0.6rem 0.8rem;
  border: none;
  border-radius: 4px;
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  color: black;
  font-size: 0.9rem;
  font-family: "Futura", "Trebuchet MS", Arial, sans-serif;
  height: 100%;
}

button {
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.5);
  color: black;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
  font-family: "Futura", "Trebuchet MS", Arial, sans-serif;
  height: 100%;
}

button:hover {
  background: white;
}

/* ---------- download section ---------- */
.downloads {
  text-align: center;
}

.download-links {
  display: flex;
  justify-content: space-between;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.4rem;
  border-radius: 6px;
  width: 240px; 
  margin: 0 auto; 
}

.download-btn {
  flex: 1; /* take up equal space */
  background: rgba(255, 255, 255, 0.5);
  color: black;
  padding: 0.6rem 0;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-family: "Futura", "Trebuchet MS", Arial, sans-serif;
  transition: background 0.2s ease;
  font-size: 0.9rem;
  height: 100%; /* match height to container */
}

.download-btn:hover {
  background: white;
}