* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #0b0d10;
  color: #f4f4f4;
}

.hero {
  min-height: 68vh;
  background:
    linear-gradient(to right, rgba(0,0,0,.72), rgba(0,0,0,.28)),
    url("images/hero.png") center top / cover no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  position: relative;
  z-index: 2;
}
.logo {
  width: 350px;
  height: 270px;
  object-fit: contain;
  opacity: 0.95;
  filter:     brightness(1.8)
    contrast(1.5)
    drop-shadow(0 0 12px rgba(255,255,255,.35));
}


nav a {
  color: #f4f4f4;
  text-decoration: none;
  margin-left: 28px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
}

nav a:hover {
color: #d6a32f;
}

.hero-content {
  max-width: 760px;
  padding: 40px 48px 90px;
  margin-top: auto;
  position: relative;
  z-index: 2;
}

h1 {
  font-size: clamp(44px, 6vw, 90px);
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h1 span {
  color: #d6a32f;
}

.tagline {
  margin-top: 24px;
  font-size: 22px;
  font-weight: bold;
  color: #d6a32f;
  text-transform: uppercase;
}

.intro {
  margin-top: 22px;
  font-size: 20px;
  line-height: 1.5;
  max-width: 620px;
}

.button {
  display: inline-block;
  margin-top: 32px;
  padding: 14px 28px;
  border: 2px solid #d6a32f;
  color: #d6a32f;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
}

.button:hover {
  background: #d6a32f;
  color: #0b0d10;
}

.cards {
    max-width: 1200px;
    margin: -130px auto 60px;
    padding: 0 24px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;

    position: relative;
    z-index: 5;

    margin-left: 500px;
}

.card {
  background: rgba(20, 24, 28, .95);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
}

.card img,
.placeholder {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111820;
  color: #d6a32f;
  font-size: 72px;
  font-weight: bold;
}

.card h2 {
  padding: 22px 22px 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card p {
  padding: 0 22px 28px;
  color: #cfd3d8;
  line-height: 1.5;
}

footer {
  text-align: center;
  padding: 32px;
  color: #777;
}

@media (max-width: 800px) {
  .site-header {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }

  nav {
    text-align: center;
  }

  nav a {
    display: inline-block;
    margin: 8px;
  }

  .hero-content {
    padding: 48px 24px;
    text-align: center;
  }

  .cards {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
}
@font-face {
  font-family: "Final Frontier";
  src: url("fonts/Final_Frontier.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Trek";
  src: url("fonts/TOS_Title.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;

}

.about-page {
  background: #000;
  color: #d6a32f;
  min-height: 100vh;
  font-family: "Final Frontier", Arial, sans-serif;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 28px;
  text-align: center;
}

.about-logo {
  width: 220px;
  height: auto;
  margin-bottom: 36px;
  filter:
    brightness(2)
    contrast(1.6)
    drop-shadow(0 0 14px rgba(214,163,47,.35));
}

.about-container h1 {
  font-size: clamp(40px, 7vw, 84px);
  color: #d6a32f;
  margin-bottom: 32px;
  letter-spacing: 3px;
}

.about-text {
  font-family: "Trek";
  font-size: 32px;
  line-height: 1.6;
  letter-spacing: 1px;
}
  color: #f2d27a;
  text-align: left;

  background: rgba(255,255,255,.04);
  border: 1px solid rgba(214,163,47,.35);
  border-radius: 16px;
  padding: 32px;
}

.about-text p {
  margin-bottom: 20px;
}

.about-button {
  display: inline-block;
  margin-top: 36px;
  padding: 14px 28px;
  border: 2px solid #d6a32f;
  color: #d6a32f;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-button:hover {
  background: #d6a32f;
  color: #000;
}