/* Gellix Font */
@font-face {
  font-family: 'Gellix';
  src: url('./Gellix-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gellix';
  src: url('./Gellix-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gellix';
  src: url('./Gellix-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

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

body {
  font-family: 'Gellix', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: #F5F5F5;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.coming-soon-container {
  width: 100%;
  position: relative;
  max-width: 800px;
  height: 500px;
  display: flex;
  align-items: flex-end;
}

.content {
  text-align: left;
  flex: 1;
}

/* Image */
.image-container {
  flex: 0 0 auto;
  max-width: 600px;
  position: absolute;
  top: -5%;
  right: -15%;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Logo */
.logo {}

.logo-svg {
  height: 44px;
  width: auto;
}

/* Headline */
.headline {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  color: #A36F34;
  margin-bottom: 20px;
}

/* CTA */
.cta {
  display: flex;
  align-items: baseline;
  font-weight: 400;
  gap: 6px;
  font-size: 22px;
}

.read-text {
  color: #050505;
  font-weight: 400;
}

.press-release-link {
  color: #050505;
  text-decoration: underline;
  font-weight: 400;
  transition: opacity 0.2s ease;
}

.press-release-link:hover {
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .coming-soon-container {}

  .image-container {
    max-width: 480px;
    right: -1%;
    top: 10%;
  }

  body {
    padding: 0 40px;
  }

  .logo-svg {
    height: 40px;
  }
}

@media (max-width: 870px) {
  .image-container {
    top: 0;
  }
}

@media (max-width: 730px) {
  .image-container {
    top: -10%;
  }
}

@media (max-width: 550px) {
  body {
    padding: 20px;
  }

  .coming-soon-container {
    gap: 30px;
    height: 300px;
  }

  .image-container {
    max-width: 250px;
    right: 0;
    top: 3%;
  }

  .logo {
    margin-bottom: 4px;
  }

  .logo-svg {
    height: 22px;
  }

  .headline {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .cta {
    font-size: 16px;
  }
}

@media (max-width: 400px) {
  .image-container {
    top: -5%;
  }
}