* {
  box-sizing: border-box;
  margin: 0;
  padding: 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;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #0b0d10;
  color: #f4f4f4;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  position: relative;
  z-index: 10;
}

.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;
}

/* HOME PAGE */

.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;
  display: flex;
  flex-direction: column;
}

.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,
.about-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,
.about-button:hover {
  background: #d6a32f;
  color: #0b0d10;
}

/* HOME PAGE CARDS */

.cards {
  max-width: 1200px;
  margin: -95px auto 60px;
  padding: 0 24px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;

  position: relative;
  z-index: 5;
}

.card {
  display: block;
  text-decoration: none;
  color: inherit;

  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);

  transition:
    transform .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(214,163,47,.65);
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
}

.card img,
.placeholder {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  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;
}

/* ABOUT PAGE */

.about-page {
  background: #000;
  color: #d6a32f;
  min-height: 100vh;
  font-family: "Final Frontier", Arial, sans-serif;
}

.about-hero {
  min-height: 72vh;
  background:
    linear-gradient(to right, rgba(0,0,0,.75), rgba(0,0,0,.28)),
    url("./images/abouthero.jpg") center / cover no-repeat;
  display: flex;
  flex-direction: column;
}

.about-hero-content {
  max-width: 850px;
  padding: 80px 48px;
  margin-top: auto;
  margin-bottom: 60px;
}

.about-hero-content h1 {
  font-size: clamp(54px, 8vw, 120px);
  line-height: .9;
  color: #f4f4f4;
}

.about-hero-content p {
  margin-top: 24px;
  font-size: 24px;
  line-height: 1.5;
  color: #f2d27a;
  max-width: 650px;
}

.about-content,
.about-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 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", Georgia, serif;
  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;
}

/* MOTORCYCLES PAGE */

.motorcycles-page {
  background: #0b0d10;
  color: #f4f4f4;
}

.mc-hero {
  min-height: 72vh;
  background:
    linear-gradient(to right, rgba(0,0,0,.82), rgba(0,0,0,.35)),
    url("./images/mchero.jpg") center / cover no-repeat;
  display: flex;
  flex-direction: column;
}

.mc-hero-content {
  max-width: 850px;
  padding: 80px 48px;
  margin-top: auto;
  margin-bottom: 60px;
}

.mc-hero-content h1 {
  font-size: clamp(54px, 8vw, 120px);
  text-transform: uppercase;
  line-height: .9;
  color: #f4f4f4;
}

.mc-hero-content p {
  margin-top: 24px;
  font-size: 24px;
  line-height: 1.4;
  color: #f2d27a;
  max-width: 700px;
}

.mc-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 28px;
}

.mc-panel {
  border: 1px solid rgba(214,163,47,.35);
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
}

.mc-panel h2 {
  color: #d6a32f;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.mc-panel p {
  font-size: 20px;
  line-height: 1.6;
  color: #ddd;
}

.mc-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mc-link-card {
  display: block;
  padding: 28px;
  border: 1px solid rgba(214,163,47,.35);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  color: #f4f4f4;
  text-decoration: none;
}

.mc-link-card h3 {
  color: #d6a32f;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.mc-link-card p {
  color: #ccc;
  line-height: 1.5;
}

.mc-link-card:hover {
  background: rgba(214,163,47,.12);
}

/* SAILBOATS PAGE */

.sailboats-page {
  background: #0b0d10;
  color: #f4f4f4;
}

.sail-hero {
  min-height: 72vh;
  background:
    linear-gradient(to right, rgba(0,0,0,.75), rgba(0,0,0,.35)),
    url("./images/lastfrontier.jpg") center / cover no-repeat;
  display: flex;
  flex-direction: column;
}

.sail-hero-content {
  max-width: 850px;
  padding: 80px 48px;
  margin-top: auto;
  margin-bottom: 60px;
}

.sail-hero-content h1 {
  font-size: clamp(54px, 8vw, 120px);
  line-height: .9;
  color: white;
}

.sail-hero-content p {
  margin-top: 24px;
  font-size: 24px;
  color: #f2d27a;
  max-width: 700px;
}

/* ADVENTURES PAGE */

.adventures-page {
  background: #0b0d10;
  color: #f4f4f4;
}

.adventure-hero {
  min-height: 72vh;
  background:
    linear-gradient(to right, rgba(0,0,0,.82), rgba(0,0,0,.18)),
    url("./images/adventurehero.png") center / cover no-repeat;
  display: flex;
  flex-direction: column;
}

.adventure-hero-content {
  max-width: 850px;
  padding: 80px 48px;
  margin-top: auto;
  margin-bottom: 60px;
}

.adventure-hero-content h1 {
  font-size: clamp(54px, 8vw, 120px);
  text-transform: uppercase;
  line-height: .9;
  color: #f4f4f4;
}

.adventure-hero-content p {
  margin-top: 24px;
  font-size: 24px;
  line-height: 1.4;
  color: #f2d27a;
  max-width: 700px;
}

.adventure-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 28px;
}

.adventure-panel {
  border: 1px solid rgba(214,163,47,.35);
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
}

.adventure-panel h2 {
  color: #d6a32f;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.adventure-panel p {
  font-size: 20px;
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 18px;
}

.adventure-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.adventure-link-card {
  display: block;
  padding: 28px;
  border: 1px solid rgba(214,163,47,.35);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  color: #f4f4f4;
  text-decoration: none;
}

.adventure-link-card h3 {
  color: #d6a32f;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.adventure-link-card p {
  color: #ccc;
  line-height: 1.5;
}

.adventure-link-card:hover {
  background: rgba(214,163,47,.12);
}

/* PHOTO ALBUM PAGES */

.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.album-card {
  display: block;
  padding: 24px;
  border: 1px solid rgba(214,163,47,.35);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  color: #f4f4f4;
  text-decoration: none;
  transition: .25s;
}

.album-card:hover {
  transform: translateY(-4px);
  background: rgba(214,163,47,.12);
}

.album-card h3 {
  color: #d6a32f;
  margin-bottom: 12px;
}

.album-card p {
  color: #ccc;
  line-height: 1.5;
}

/* RESPONSIVE */

@media (max-width: 800px) {
  .site-header {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }

  .logo {
    width: 220px;
    height: auto;
  }

  nav {
    text-align: center;
  }

  nav a {
    display: inline-block;
    margin: 8px;
  }

  .hero-content,
  .mc-hero-content,
  .sail-hero-content,
  .adventure-hero-content,
  .about-hero-content {
    padding: 48px 24px;
    text-align: center;
  }

  .cards,
  .mc-links,
  .adventure-links {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .about-text {
    font-size: 26px;
  }
}