@charset "UTF-8";
/* CSS Document */
/* =========================
   RESET / BASE
========================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  /*  border: 1px solid green;*/
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #111;
  background: #fff;
}
/* =========================
   TYPOGRAPHY
========================= */
h1 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 12px;
}
h2 {
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 8px;
}
h3 {
  font-size: 20px;
  line-height: 1.4;
  margin-top: 24px;
  margin-bottom: 4px;
}
p {
  margin-bottom: 16px;
}
/* =========================
   LINKS
========================= */
a:link, a:visited {
  color: #1c75bb;
}
a:hover {
  color: #bd1e2d;
  text-decoration: underline;
}
a:active {
  color: #bd1e2d;
}
a:focus {
  outline: 2px dotted #1c75bb;
}
/* =========================
   LAYOUT / CONTAINERS
========================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
section {
  padding: 30px 0;
  scroll-margin-top: 60px;
}
/* =========================
   HEADER
========================= */
header {
  background-color: #092040;
  color: #ffffff;
  padding: 30px 0;
}
.header-logo {
  width: 250px;
  display: block;
  margin: 0 auto;
}
.header-logo img {
  width: 100%;
  height: auto;
  display: block;
}
/* =========================
   NAVIGATION
========================= */
nav {
  background-color: #bd1e2d;
  padding: 15px 0;
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 9999;
}
.nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  position: sticky;
  top: 0;
  justify-content: center;
}
.nav a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}
.nav a:hover {
  text-decoration: underline;
}
/* =========================
   IMAGES
========================= */
.hero-image {
  max-width: 100%;
  height: auto;
  display: block;
}
/* =========================
   SECTIONS
========================= */
.section-light-gray {
  background-color: #efefef;
}
.section-dark-gray {
  background-color: #333333;
  color: #ffffff;
}
/* =========================
   COMPONENTS
========================= */
.card {
  background-color: #efefef;
  border: solid 1px #cccccc;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}
.card-text-frame {
  padding: 15px;
}
.card-img {
  max-width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: solid 1px #cccccc;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card h3 {
  margin-top: 0;
}
/* =========================
   BUTTONS
========================= */
.main-btn:link, .main-btn:visited, .main-btn:active, .main-btn:focus {
  display: inline-block;
  padding: 10px 20px;
  background-color: #bd1e2d;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 250ms ease;
  margin-bottom: 30px;
}
.main-btn:hover {
  background-color: #0056b3;
  color: #ffffff;
  text-decoration: none;
}
.small-btn:link, .small-btn:visited, .small-btn:active, .small-btn:focus {
  display: inline-block;
  padding: 5px 15px;
  background-color: #bd1e2d;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 250ms ease;
}
.small-btn:hover {
  background-color: #0056b3;
  color: #ffffff;
  text-decoration: none;
}
/* =========================
   GRID
========================= */
.two-column-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}
.three-column-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}
.hero-bg {
  position: relative;
  background-image: url("../img/mm162-67mustanggt-rear310.webp");
  background-size: cover;
  background-position: center;
  color: #ffffff;
	padding-top: 80px;
    padding-bottom: 80px;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 18, 0.65); /* change color + opacity */
}
.hero-bg > * {
  position: relative;
  z-index: 1;
}
.hero-bg .container {
	max-width: 900px;
	text-align: center;
}
.hero-bg p a:link, .hero-bg p a:visited {
  color: #ffffff;
}
.hero-bg p a:hover {
  color: #bd1e2d;
  text-decoration: underline;
}
.hero-bg p a:active {
  color: #bd1e2d;
}
.hero-bg p a:focus {
  outline: 2px dotted #1c75bb;
}


/* =========================
   FOOTER
========================= */
footer {
  background-color: #000000;
  color: white;
  padding: 30px;
  text-align: center;
}