/* ---------- FONTS ---------- */
@font-face {
  font-family: 'Proxima Nova';
  src: url('fonts/proximanova_light.otf') format('opentype');
}

@font-face {
  font-family: 'Futura';
  src: url('fonts/FuturaCyrillicBook.ttf') format('truetype');
}

/* ---------- GLOBAL ---------- */
body {
  margin: 0;
  font-family: 'Futura', sans-serif;
  color: white;
  background: black;
  overflow: hidden;
}

/* ---------- NAV ---------- */
.nav {
  position: absolute;
  top: 2rem; /* increased spacing from top of page */
  left: 0;
  width: 100%;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: center; /* center the logo */
  align-items: center;
  z-index: 10;
  box-sizing: border-box;
}

.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%); /* perfectly center the logo */
  padding-top: 1%;
}

.nav-logo img {
  height: 28px;
}

.nav-links {
  position: absolute;
  right: 2rem; /* keep links on the right */
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-family: 'Futura', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

/* ---------- HERO CONTENT ---------- */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.hero-content h1 {
  font-family: 'Proxima Nova', sans-serif;
  font-size: clamp(2.5rem, 6vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.3em; /* reduced from 0.4em */
  color: #ffffff;
  margin: 0;
}

.subtext {
  font-family: 'Futura', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #ffffff;
}

/* ---------- EMAIL FORM ---------- */
.email-form {
  display: flex;
  align-items: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  padding: 0.4rem 1rem;
  margin-top: 0.8rem;
  width: 350px;
}

.email-form input {
  background: transparent;
  border: none;
  outline: none;
  color: white;
  font-family: 'Futura', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  width: 100%;
}

.email-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.email-form button {
  background: transparent;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
}

/* ---------- SUCCESS MESSAGE ---------- */
.success-message {
  font-family: 'Futura', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin: 0;
  padding: 0.8rem 0;
}

/* ---------- ERROR MESSAGE ---------- */
.error-message {
  font-family: 'Futura', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #ff6b6b;
  margin: 0;
  padding: 0.8rem 0;
}

/* ---------- MOBILE SOCIAL LINKS ---------- */
.mobile-social-links {
  display: none; /* hidden by default on desktop */
  position: fixed;
  bottom: 2rem;
  left: 0;
  right: 0;
  z-index: 10;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 600px) {
  .hero-content h1 {
    letter-spacing: 0.2em; /* reduced from 0.25em */
    font-size: 2.5rem;
  }

  .email-form {
    width: 80%;
  }

  .nav {
    top: 2rem;
    padding-top: 1.2rem;
  }

  .nav-links {
    display: none; /* hide the nav links on mobile */
  }
  
  .mobile-social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
  }
  
  .mobile-social-links a {
    text-decoration: none;
    color: white;
    font-family: 'Futura', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    line-height: 1.2;
  }
}