@font-face {
  font-family: 'Rigid Square';
  src: url('rigid-square.woff2') format('woff2'),
       url('rigid-square.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

*,
*::before,
*::after{box-sizing:border-box;margin:0;padding:0;}

body{
  font-family:'Rigid Square',sans-serif;
  background:var(--wild-cream);
  color:var(--text-dark);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
body {
  margin: 0;

  background-color: #322F4C;
  color:#F6ECDD;
}
html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  /* display: flex; */
  /* flex-direction: column; */
  align-items: center;
  padding: 2rem;
  min-height: 627px;
  height: 70vh;
}

.logo {
  margin-top: 1rem;
  height: 50px;
}

.content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
  margin-top: 3rem;
}

.left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1rem;
  align-items: center;
}
.coming-soon {
  font-size: 2.5rem;
  letter-spacing: 2px;
  text-align: center;
}
.badge {
  height: 80px;
}

.email-form {
  display: flex;
  gap: 0.5rem;
  display: flex;
  flex-direction: column;
  width:70%;
  align-items: center;
}

.email-form input {
  padding: 0.75rem;
  flex: 1;
  border: 1px solid #F6ECDD;
  background: transparent;
  color: #F6ECDD;
  font-size: 0.7em;
  width: 100%;
  text-align: center;
  margin: 10px 0;
}
.email-form button {
  background-color: #CE3239;
  color: #F6ECDD;
  border: none;
  padding: 0.75rem 1rem;
  cursor: pointer;
  width: 50%;
  font-family: 'Rigid Square',sans-serif;
  font-size: 0.7em;
}

.note {
  font-size: 0.8rem;
  opacity: 0.8;
  text-align: center;
}

.slogan {
  height:125px;
}
.right {
  flex: 1.5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.can {
  height: 93%;
  /* max-width: 400px; */
  position: absolute;
    transform: rotate(-19.48deg);
  top: 98px;
  /* max-width: 328px; */
}

.info {
  background-color: #faf0dc;
  color: #322F4C;
  display: flex;
  justify-content: space-around;

}

.info-wrapper {
  display: flex;
  justify-content: space-around;
  /* padding: 3rem 17rem; */
  font-size: 1.2rem;
  /*font-weight: bold; */
  text-align: center;
  align-items: center;
  max-width: 100%;
  width: 1100px;
  margin: 3rem 1rem;
}
.red {
  color: #d74845;
}
.mobile-only{
  display: none;
}
.desktop-only {
  display:inline-block;
}

footer {
  background-color: #CE3239;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #F6ECDD;
}
@media (max-width: 828px) {
  .hero {
    flex: 0 0 auto;      /* disable flex-grow/shrink */
    min-height: 100vh;    /* at least full viewport */
    height: auto;         /* but grow with content */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .content {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }

  .can {
    position: relative;
    max-width: 65%;
    top: 0px;
    height:auto;
        transform: none;
        margin: 25px 0;
  }


  .mobile-only {
    display: inline-block;
  }

  .left, .right {
    width: 100%;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
  }
  .left {
    margin-bottom: 200px;
  }

  .info {
    flex-direction: column;
    gap: 2rem;
  }
.info-wrapper {
  flex-direction: column;
  display: flex;
  gap: 60px;
  margin: 3rem 0;
}
.slogan {
  /* height: 125px; */
  width: 200px;
  height: auto;
}

  .desktop-only {
    display: none;
  }
}
.email-form button {
  /* existing rules… */
  transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

.email-form button:hover {
  background-color: #cc3b39;       /* subtle darkening */
  transform: translateY(-1px);     /* slight lift */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.email-form button:active {
  background-color: #b83634;       /* a touch darker on click */
  transform: translateY(0);        /* back to resting position */
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}
.left {
  /* shrink everything inside to 90% of its original size */
  transform: scale(0.9);
  transform-origin: top center;
}