/* Stylesheet for simple temporary landing page */
@font-face {
  font-family: 'Source Serif 4';
  src: url('fonts/SourceSerif4.woff2') format('woff2');
  font-weight: 200 900; /* variable range */
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/inter.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  color: #222;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}


.hero {
  position: relative;
  height: 100vh;
  color: #fff;
  background:
    /*linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.8) 50%,
      rgba(0, 0, 0, 0) 100%
    ),*/
    url("img/hero-rad.png") center / cover no-repeat;
}

@media (min-width: 768px) {
  .hero {
    background-attachment: fixed;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px;
  text-align: center;
}

  #logo-container{
    padding: 1.5rem;
    text-align: left;  
  }


.logo {
  position: absolute;
  top: 1.5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 120px;
  z-index: 3;
}


@media (min-width: 768px) {
  .logo {
    left: 1.5rem;
    right: auto;
    margin: 0;
  }
}


.hero h1 {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(1.125rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: 2px;
  margin: 0;
}

@media (max-width: 576px) {

  .hero h1 {
    font-size: clamp(2.3rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.32;
    letter-spacing: 0.01em;
  }
}




.hero h2 {
  margin: 1rem 0 0; font-family: 'Source Serif 4', serif;
  font-size: clamp(2rem, 2.5vw, 2.25rem);
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 768px) {

  .hero h2 {
    margin: 1rem 0 0; font-family: 'Source Serif 4', serif;
    font-size: clamp(1.4rem, 2.5vw, 2.25rem);
    font-weight: 500;
    line-height: 1.4;
  }
}




.opening {
  margin-top: 1.5rem;
  font-size: 1.15rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.development {
  margin-top: 0.75rem;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* OVERVIEW */
.overview {
  padding: 5rem 1rem;
  text-align: center;
  background: #fff;
}

.overview h3 {
    margin-top: 1rem;
  margin-bottom: 30px;
  letter-spacing: 3px;
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
}

.overview p {
 font-family: 'Source Serif 4', serif;
  font-optical-sizing: auto;
  font-weight: 400;
  color: #222;
  max-width: 700px;
  margin: 0 auto 20px;
   font-size: 1.075rem;
  line-height: 1.8rem;
}

/* MOBILE */
@media (max-width: 576px) {
    .hero {
  height: 100vh;
  height: 100svh;
    background-position: center center;
  }

  .hero-content {
    padding: 24px 20px;
  }


  .opening {
    font-size: 1rem;
    letter-spacing: 0.16em;
  }

  .development {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
  }

  .overview {
    padding: 60px 20px;
  }
}