/* ALTE HAAS GROTESK */
@font-face {
  font-family: 'AlteHaasGrotesk';
  src: url('./alte_haas_grotesk/AlteHaasGroteskRegular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'AlteHaasGrotesk';
  src: url('./alte_haas_grotesk/AlteHaasGroteskBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


/* CHANDIA */
@font-face {
  font-family: 'Chandia';
  src: url('./chandia/ChandiaDecorative_PERSONAL_USE_ONLY.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Chandia';
  src: url('./chandia/Chandia_PERSONAL_USE_ONLY.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}







/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'AlteHaasGrotesk';
}

body {
  font-family: sans-serif;
  background: #000;
  color: #fff;
}

/* HERO */
.hero {
  height: 70svh;
  background: url('hero.webp') center/cover no-repeat;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  background: rgba(0,0,0,0.2);
}

.hero-top {
  font-size: 36px;
  letter-spacing: 3px;
  margin-bottom: 0.5em;
  font-weight: bold;
}

.hero-logo {
  width: auto;
  height: 100%;
  max-height: 100px;
}

.hero-title {
  font-size: 48px;
  font-weight: bold;
}

.hero-sub {
  font-size: 28px;
  font-weight: bold;
}

.hero-sub span {
  font-family: 'Chandia';
  font-weight: bold;
  font-size: 62px;
}

.hero-desc {
  margin-bottom: 30px;
  font-size: 17px;
  letter-spacing: 0.1em;
}

.btn-primary {
  background: #fff;
  color: #000;
  padding: 6px 54px;
  text-decoration: none;
  font-size: 12px;
  border-radius: 4px;
  font-weight: bold;
  letter-spacing: 0.1em;
}

/* FORM SECTION */
.form-section {
  background: #000;
  padding: 60px 20px;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.form-title {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: normal;
}

.form-title span {
  font-family: 'Chandia';
  font-weight: bold;
  font-size: 66px;
}

.form-text {
  font-size: 14px;
  line-height: 2.3em;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}

/* HUBSPOT WRAPPER */
.hubspot-form {
  margin-bottom: 20px;
}

/* BUTTON */
.btn-secondary {
  width: 100%;
  padding: 12px;
  background: #ccc;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

/* LOGO */
.logo-bottom {
  margin-top: 30px;
}

.logo-bottom img {
  height: 100px;
}

.footer {
  background-color: #fff;
  padding: 10px 80px;
}

.footer img {
  width: auto;
  height: 26px;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .hero-title {
    font-size: 72px;
  }

  .hero-sub {
    font-size: 28px;
    font-weight: bold;
  }

  .form-title {
    font-size: 36px;
  }
}

@media screen and (max-width: 1200px) {
  .hero-top {
    font-size: 26px;
  }

  .hero-logo {
    width: 100%;
    height: auto;
    max-height: unset;
    max-width: 80vw;
  }

  .hero-sub {
    font-size: 24px;
  }

  .hero-sub span {
    font-size: 52px;
  }

  .form-text {
    font-size: 12px;
  }

  .footer {
    padding: 10px 30px;
  }

  .footer img {
    width: auto;
    height: 18px;
  }
}