/* =========================
   FONTS
   ========================= */

/* Eurostile */
@font-face {
  font-family: "Eurostile";
  src: url("assets/fonts/eurostile-lt-bold-extended-2.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Scto Grotesk A */
@font-face {
  font-family: "Scto Grotesk A";
  src: url("assets/fonts/Scto Grotesk A Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Scto Grotesk A";
  src: url("assets/fonts/Scto Grotesk A Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Scto Grotesk A";
  src: url("assets/fonts/Scto Grotesk A Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Scto Grotesk A";
  src: url("assets/fonts/Scto Grotesk A Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Trianon Text */
@font-face {
  font-family: "Trianon Text";
  src: url("assets/fonts/TrianonText-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Trianon Text";
  src: url("assets/fonts/TrianonText-LightItalic.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

/* =========================
   BASE
   ========================= */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Scto Grotesk A", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #000;
  color: #111;
}

/* =========================
   HERO
   ========================= */

.hero {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  background: radial-gradient(
      circle at center,
      rgba(20, 60, 40, 0.85),
      rgba(5, 20, 12, 0.95)
    );
  color: #e6f0ea;
}

.hero-text {
  max-width: 620px;
}

.hero h1 {
  font-family: "Eurostile", "Scto Grotesk A", system-ui, sans-serif;
  font-size: 64px;
  line-height: 1.05;
  margin: 0 0 24px;
  color: #d7ff4a;
}

.hero p {
  font-family: "Trianon Text", serif;
  font-size: 20px;
  line-height: 1.7;
  margin: 0 0 36px;
  color: #eaf3ee;
}

.cta {
  display: inline-block;
  padding: 16px 34px;
  border: 2px solid #d7ff4a;
  color: #d7ff4a;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.2s ease;
}

.cta:hover {
  background: #d7ff4a;
  color: #0f2f1f;
}

/* =========================
   PRODUCT IMAGE
   ========================= */

.product {
  width: 420px;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    padding: 64px 32px;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 18px;
  }

  .product {
    width: 280px;
    margin-top: 40px;
  }
}
