/* ========================================
   FLEET PAGE
======================================== */

.fleet-hero {
  position: relative;
  min-height: 36vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 48px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(5, 14, 28, 0.75) 0%, rgba(5, 20, 34, 0.88) 100%),
    url("../src/StarCitizen/picture/perseus1.png") center 40% / cover no-repeat;
}

.fleet-brand {
  font-family: var(--font-display);
  letter-spacing: 0.28em;
  font-size: 0.75rem;
  color: #9ec9ef;
  margin-bottom: 14px;
}

.fleet-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75);
}

.fleet-hero p {
  max-width: 40ch;
  color: #d7e7f7;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}

.fleet-intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.fleet-grid-section {
  max-width: 1100px;
  margin: 0 auto;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.fleet-ship {
  overflow: hidden;
  border: 1px solid rgba(86, 176, 255, 0.22);
  border-radius: 14px;
  background: rgba(10, 28, 44, 0.55);
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.fleet-ship:hover {
  transform: translateY(-4px);
  border-color: rgba(86, 176, 255, 0.45);
}

.fleet-ship img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.fleet-ship-body {
  padding: 16px 18px 20px;
}

.fleet-ship-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: #eaf4ff;
}

.fleet-role {
  color: #56b0ff;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.fleet-ship-body p:last-child {
  color: #b7c9da;
  line-height: 1.5;
  font-size: 0.95rem;
}

.fleet-cta {
  text-align: center;
  max-width: 640px;
  margin: 10px auto 40px;
}

.fleet-cta h2 {
  font-family: var(--font-display);
  margin-bottom: 10px;
}

.fleet-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn-cta.secondary {
  background: transparent;
  border: 1px solid rgba(86, 176, 255, 0.45);
  color: #bfe1ff;
}

@media (max-width: 768px) {
  .fleet-hero {
    min-height: 32vh;
    padding: 72px 16px 40px;
  }

  .fleet-ship img {
    height: 140px;
  }
}
