@font-face {
  font-family: "Poppins";
  src: url("Poppins-Regular.ttf") format("truetype") ;
}

* {
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
    background-color: #000000;
}

/* Header and Navigation */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: flex-start; /* Changed from space-between */
    align-items: center;
    padding: 1.9vw;
    box-sizing: border-box;
    z-index: 10;
}

.logo-section {
    position: static;
}

.unscripted-logo {
    position: static;
    display: block;
    width: 40px;
    height: 50px;
    -webkit-user-select: none;
    -ms-user-select: none;
    opacity: 0; /* Fades in with JS */
}

/* Hero Section (Text) */
.hero {
    width: 100%;
    height: 100vh; /* Fill the full viewport height */
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.hero-heading {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.heading-para {
    font-size: clamp(20px, 4vw, 32px);
    line-height: 1.5;
    font-weight: 100;
    color: #fff;
    font-family: Poppins, sans-serif;
    text-align: center;
    opacity: 0; /* Fades in with JS */
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Fade In Animation */
.fadeIn {
  animation: fadeIn 1s ease-in forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hide-on-desktop {
  display: none;
}

.mobile-linebreak{
  display: none;
}

/* --- Mobile-specific adjustments --- */
@media (max-width: 688px) {
  .hide-on-desktop {
    display: block;
  }
  .heading-para {
      font-size: 5vw;
  }
  .header-nav {
    padding: 5vw;
  }
  .unscripted-logo {
    width: 30px;
    height: 40px;
  }
  .mobile-linebreak{
    display: block;
  }
}