:root {
  --base-font-size: 16px;
  --font-scale: 1.2; 
  --black: #202124;
  --lightgray: #F1F3F4;
  --lightgreen: #CEEAD6;
  --lightblue: #D2E3FC;
  --lightyellow: #FEEFC3;
  --lightred: #FAD2CF;
  --gray: #9AA0A6;
  --red: #A50E0E;
  --green: #0D652D;
  --yellow: #FBBC04;
  --blue: #0060bf;
}

* {
  margin: 0;
  padding: 0;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-size: var(--base-font-size);
}
@media (max-width: 900px) {
  :root {
    --base-font-size: 15px;
  }
}

@media (max-width: 600px) {
  :root {
    --base-font-size: 17px;
  }
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;
  line-height: 1.7;
  font-size: var(--base-font-size); /* Now based on root font size */
  background: #fff;
  color: #444;
}
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Responsive typography classes */
.small {
  font-size: 0.82rem; /* ~13px at default */
}

.medium {
  font-size: 1.2rem; /* 16px at default */
}

.large {
  font-size: 1.375rem; /* ~22px at default */
}
b,
strong {
  font-weight: 700;
  font-weight: bold;
}
/* Links */
a {
  color: #0060bf;
}
a:hover,
a:focus,
a:active {
  color: ;
  outline: none;
}
p {
  margin-bottom: 1.5em;
}
/* Responsive headings */
h1 {
  font-size: 1.7rem
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

h2 {
  font-size: 1.5rem;
  line-height: 1.3 !important;
  text-transform: uppercase;
  margin-bottom: .5rem;
  font-weight: 300;
}

h3 {
  font-size: 1.4rem
  line-height: 1.3 !important;
  text-transform: uppercase;
}
#home h3 {
  font-size: clamp(1.5rem, 1.5vw, 1.7rem);
  line-height: 1.7 !important;
}
#about h3 {
  font-size: clamp(1rem, 1.5vw, 1.1rem); /* Responsive between 16px-20px */
  line-height: 1.6 !important;
  font-weight: bold;
}


.light {
  color: #666;
}
.w1080 {
    max-width: 1080px !important;
    width: 100% !important;
    box-sizing: border-box;
}
.decoration {
  border-top: 1px solid #d1d1d1;
  height: 1px;
  margin: 14px 60px;
  width: 80%;
  max-width: 1000px;
}
header {
  color: white;
  background: #000;
  min-height: 150px;
  margin: auto;
  padding: 20px 30px 10px;
}
.logo {
  width: 175px;
}
/* .hero {
  height: 350px;
  background: url(/img/1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
} */
.hero {
  /* Basic background setup */
  background-image: url(/img/1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  /* Responsive container sizing */
  height: 0;
  padding-bottom: 37.5%; 3:8 ratio (adjust to match your image aspect ratio)

  /* Fallback color */
  background-color: #000;
}
#footer {
  background: #000;
  width: 100%;
  margin: 100px 0 0;
  color: rgb(197, 197, 197);
  padding: 30px;
}
.footer-content {
  margin: auto;
}

nav {
  position: sticky;
  top: 0;
  background: linear-gradient(178deg, #434343, #000000);
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
  z-index: 999;
}
nav .sidebar a {
  justify-content: flex-end;
  font-size: clamp(1.3rem, 1.2vw, 1.0625rem);
}
nav ul {
  display: flex;
  width: 100%;
  list-style: none;
  justify-content: center;
  align-items: center;
}
nav li {
  height: 50px;
  font-size: clamp(0.9rem, 1.2vw, 1.0625rem);
}
nav a,
nav .sidebar a,
nav .close-button a {
  transition: background-color 0.5s ease, color 0.5s ease;
}

nav a {
  height: 100%;
  padding: 0 30px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  /* transition: all 0.1s ease 0s; */
}
.hideOnMobile {
  flex-wrap: nowrap; /* Prevents wrapping */
  white-space: nowrap; /* Ensures text doesn't wrap */
}
nav a:hover {
    color: white;
    background-color: #f0f0f069;
}
nav .sidebar a:hover {
  /* background-color: #f0f0f071;
  color: white; */
  color: rgb(73, 73, 73);
  background-color: #f0f0f0;
}
nav .close-button a:hover {
  background-color: #f0f0f0b5;
}
nav li:first-child {
  /*   margin-right: auto; */
}

.sidebar {
  position: absolute;
  right: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  z-index: 9999;
  background-color: rgb(0 0 0 / 75%);
  backdrop-filter: blur(10px);
  box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  display: none;
}
.sidebar li {
  width: 100%;
}
.sidebar a {
  width: 100%;
}
.menu-button {
  display: none;
}
nav .menu-button a {
  /* width: 100vw; */
  justify-content: flex-end;
  background: linear-gradient(178deg, #434343, #000000);
}
/* header flex */
.flex-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

/* Let the items shrink or grow, but not below their content width */
.left {
  text-align: left;
}

/* Right text aligned */
.right {
  display: flex;
  flex-direction: column;
  text-align: center;
}

/* end flex header */

@media (max-width: 900px) {
  .hideOnMobile {
    display: none;
  }
  .menu-button {
    display: block;
    margin-left: auto;
  }
}
@media (max-width: 400px) {
  .sidebar {
    width: 100%;
  }
  .flex-container {
    flex-direction: column;
  }
}
@media (max-width: 750px) {
  .flex-container {
    flex-direction: column;
  }
  .left,
  .right {
    text-align: center;
  }
  .card-panel {
    flex-direction: column;
    align-items: center;
  }
}

.black-circle svg {
  fill: white;
  width: 36px;
  height: 36px;
}
.yellow-circle svg {
  fill: black;
  width: 36px;
  height: 36px;
}
.yellow-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #edc907;
  border-radius: 50%;
  width: 80px;
  height: 80px;
}
.black-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border-radius: 50%;
  width: 80px;
  height: 80px;
}

.card-panel {
  width: 100%;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin: 30px 0;
}

.card-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 287px;
  text-align: center;
}
.card-title {
  font-weight: bold;
  margin: 0.7em 0;
  /* font-size: clamp(0.9rem, 1.2vw, 1rem); */
}
.card-description {
  margin: 0 0 0.7em;
}

@media (min-width: 900px) {
  .card-description {
  font-size: .87rem;
  }
}

.card-link {
  color: black;
  text-decoration: none;
  font-weight: bold;
}
.card-item a {
  text-decoration: none;
  color: black;
}
.bold {
  font-weight: bold;
}
.res-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ffffff, #81818100);
  border: 1px solid white;
  border-radius: 5px;
  height: 40px;
  line-height: 40px;
  padding: 0 20px; /* gives room around text */
  margin-top: 8px;
  color: white;
  text-decoration: none;
  transition: background 0.5s ease;
}

.res-button:hover {
  background: linear-gradient(180deg, #e0e0e0, #c0c0c000);
}

.home-banner {
  display: flex;
  flex-direction: column;
  align-items: center; /* This is what centers child elements horizontally */
  justify-content: center;
  background: #f6f6f6; /* Fixed typo (##f6f6f6 → #f6f6f6) */
  margin: 30px 0;
  width: 100%;
  text-align: center;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 27px;
}

.w1080 {
  max-width: 1080px;
  width: 94%;
  box-sizing: border-box;
}

.banner-description {
    line-height: 1.8em !important;
    padding-bottom: 0 !important;
    color: #666;
}

.customer-reviews {
  display: flex;
  flex-direction: column;
  background-color: #f6f6f6;
  border: 1px solid #dddddd;
  padding: 20px;
  margin: 20px auto;
  border-radius: 10px;
}
#home .customer-reviews {
  max-width: 1080px;
  width: 94%;
  box-sizing: border-box;
}
.review-title {
  font-size: 15px;
  text-transform: uppercase;
}

#reviews .review-title {
  display: none;
  height: 0px;
}

#home .review-title {
  font-size: 1.5rem;
}

.review {
  margin: 10px 0;
  color: #666;
  font-size: 0.8rem;
}
.link-box {
  text-decoration: none; /* remove underline */
  color: inherit; /* inherit text color */
  display: block; /* make the <a> act like a block-level element */
}

.weather-panel {
  width: 90%;
  display: inline-flex;
  justify-content: center;
  margin: 30px 0;
  /* background-color: #f6f6f6;
  border: 1px solid #dddddd;
  padding: 10px; */
  margin: 20px auto;
  border-radius: 10px;
  gap: 15px;
  flex-wrap: wrap;
}

.weather {
  width: 94%;
}

.yt-wrapper {
    margin: auto;
    background: #f6f6f6;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    display: flex;
    justify-content: center;
}
.copy {
  margin: 10px 0;
}
.social {
  display: inline-flex;
  gap: 15px;
}
.social img {
  width: 35px;
}
.assoc img {
  height: 90px;
  margin: 10px 0;
}
.black-border {
  /* width: 100%; */
  height: 0px;
  /* border-bottom: 1px solid black; */
}

/* YT Lite */
.yt-lite {
  position: relative;
  width: 100%;
  max-width: 1050px; /* or whatever fits your layout */
  aspect-ratio: 16 / 9;
  cursor: pointer;
  overflow: hidden;
  background-color: #000;
}
.yt-lite img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.yt-lite iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 0;
}
.yt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  cursor: pointer;
  z-index: 2;
}
.yt-play-btn svg {
  display: block;
  width: 100%;
  height: 100%;
}


.yt-play-btn svg path {
  /* fill: white; */
}

/* Fade CSS Slider */
.hero-slider {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 37.5%; /* Keep aspect ratio */
  overflow: hidden;
}

@media (max-width: 800px) {
  .hero-slider {
    padding-bottom: 50%;
  }
}

.slides {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: fade 20s infinite;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 4s; }
.slide:nth-child(3) { animation-delay: 8s; }
.slide:nth-child(4) { animation-delay: 12s; }
.slide:nth-child(5) { animation-delay: 16s; }

@keyframes fade {
  0%   { opacity: 0; }
  5%   { opacity: 1; }
  25%  { opacity: 1; }
  30%  { opacity: 0; }
  100% { opacity: 0; }
}



/* 2-column w/sidebar */
  .about-container {
    width: 95%;
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
  }

/* one column container */
  .container {
    width: 95%;
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    padding: 20px;
  }
  #reviews .container {
    flex-direction: column;
  }

  .main-content {
    flex: 1 1 0;
    min-width: 0;
  }

  .aside {
    width: 300px;
    flex-shrink: 0;
  }

  @media (max-width: 800px) {
    .about-container {
      flex-direction: column;
    }

    .aside {
      width: 100%;
    }
  }
  .about-img {
    border: 1px solid #ccc;
    padding: 4px;
    border-radius: 4px;
    margin-top: 5px !important;
    max-width: 300px;
    float: left;
    margin: 0 1.5em 1.5em 0;
  }
  @media (max-width: 600px) {
  .about-img {
    max-width: 100%;
  }
}
  #home .review {
    font-size: 1.0rem;
  }
/* Contact Forms */
input[type="text"] {
  display: block;
  width: 100%;
  /* max-width: 400px; */
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.3s ease;
  margin: .5rem 0;
}

input[type="text"]:focus {
  border-color: #007BFF;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

textarea {
  display: block;
  width: 100%;
  /* max-width: 400px; */
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  resize: vertical; /* or none / both / horizontal */
  outline: none;
  transition: border-color 0.3s ease;
  font-family: inherit; /* to match input font */
  margin: .5rem 0;
}

textarea:focus {
  border-color: #007BFF;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

textarea::placeholder {
  color: #aaa;
  font-style: italic;
}

.submit-button {
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  border-radius: 5px;
  border: 1px solid #ffffff;
  background: linear-gradient(359deg, #3c3c3c, #00000070);
  color: white;
  margin: 10px 0;
  transition: background 0.3s ease, transform 0.2s ease;
}

.submit-button:hover {
  background-color: black;
  transform: translateY(-1px);
  cursor: pointer;
}
.alert-success {
  padding: 5px;
  background: green;
  border-radius: 5px;
  color: white
}
.alert-danger {
  background: #fdd6d6;
  color: #a50101;
  padding: 5px;
  border-radius: 5px;
}
label {
  font-weight: bold;
}
.fleet-img {
  width: 100%;
  max-width: 1080px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  padding: 4px;
  border-radius: 6px;
  display: block;
}

/* Spinner animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Hide link text & show spinner */
.sidebar a.loading {
  position: relative;
  color: transparent !important; /* Hide text but keep link size */
  pointer-events: none; /* Prevent extra clicks */
}

/* Spinner element */
.sidebar a.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px; /* Center vertically */
  margin-left: -10px; /* Center horizontally */
  border: 3px solid var(--red);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* Fleet photo grid */
.photo-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  background: black;
  padding: 20px;
}

@media (min-width: 600px) {
  .photo-container {
    max-width: 1080px;
    margin: 0 20px;
    border-radius: 8px;
  }
  
}

.img-item {
    flex-grow: 1;
    flex-basis: 300px;
}

.thumbs {
    width: 100%;
    border-radius: 4px;
    height: 100%;
    object-fit: cover;
}



