/* ROOSTER EDEN – Coming Soon (logo slightly smaller, bottom text bigger, more bottom air) */

:root{
  --rooster-eden-green: #324330;
  --rooster-eden-sand:  #F5F0E1;
}

*{ box-sizing: border-box; }

html, body{
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

body{
  background: var(--rooster-eden-green);
  color: var(--rooster-eden-sand);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
}

.wrap{
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* more bottom space so text doesn't sit on the edge */
  padding: 44px 20px 78px;
}

/* Cropped transparent logo expected */
.logo{
  width: clamp(300px, 34vw, 460px);  /* smaller */
  max-width: 84vw;
  height: auto;
  margin: 0 0 22px;
}

h1{
  margin: 0 0 16px;
  font-size: clamp(26px, 3.3vw, 40px);
  letter-spacing: 0.32em;
  font-weight: 500;
}

/* Make the lower text more readable */
.tagline{
  margin: 0 0 14px;
  font-size: clamp(16px, 1.75vw, 22px); /* bigger than before */
  letter-spacing: 0.14em;
}

.subline{
  margin: 0;
  font-size: clamp(14px, 1.55vw, 19px); /* bigger than before */
  line-height: 1.65;
  opacity: 0.92;
}

/* Mobile */
@media (max-width: 480px){
  .wrap{
    padding: 34px 18px 64px;
  }

  .logo{
    width: min(280px, 82vw);
    margin-bottom: 18px;
  }

  h1{
    font-size: 26px;
    letter-spacing: 0.28em;
  }

  .tagline{
    font-size: 16px;
  }

  .subline{
    font-size: 14px;
  }
}
