html, body {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    background-color: rgb(249, 251, 241);
    overflow-x: hidden;
}
* {
    box-sizing: border-box;
  }
  #main-page {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
  }
#centered-logo {
    width: 20%;
    margin-left: 40%;
    margin-right: 40%;
    margin-top: 2%;
}
#home-nav {
    display: inline-flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    max-width: 50%;
    margin-left: 25%;
    margin-right: 25%;
    flex-grow: 1;
}

#home-nav > a {
    position: relative;
    display: inline-block;
    width: 30%;
    text-decoration: none;
    color: #1a1a1a;
    font-family: "Avenir Next" !important;
    font-weight: 500 !important;
}

a:hover .home-picture {
    border: 3px solid red;
    transition: 0.2s;
    transform: scale(1.1);
}
.home-picture {
    width: 100%;
    border-radius: 10%;
}
#main-footer > div {
  width: 100%;
  text-align: center;
  padding-top: 1%;
  margin-top: 1%;
  padding-bottom: 0;

}
#main-footer {
  width: 100%;
  padding: 0;
}
header {
    width: 100%;
    background-color: #1a1a1a;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font-family: "Avenir Next" !important;
    font-weight: 500 !important;
}

.logo-container {
    background-color: white;
    padding-top: 1%;
    padding-bottom: 1%;
    padding-left: 3%;
    width: 15%;
}

.header-logo {
    width: 70%;
    background-color: white;
}

nav {
    width: 45%;
    margin-right: 5%;
}

nav ul {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding: 0;
    margin: 0;
    list-style-type: none; 
    max-width: 100%;
}

.nav-links {
    text-decoration: none;
    color: white;
    padding: 5px;
    margin: 0;
    display: block;
    position: relative;
}

.nav-links::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.4s ease, background-color 0.3s ease;
}

.nav-links:hover::after {
    width: 100%;
}

.nav-links:active::after {
    background-color: red;
    width: 100%;
    transition: background-color 0.3s ease;
}

.nav-links.clicked::after {
    background-color: white;
    width: 100%;
    transition: none;
}


.navbar {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  position: relative; /* Add relative positioning */
  z-index: 100; /* Ensure the navbar is above other content */
}

.nav-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.nav-links {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-size: 18px;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 25px;
  justify-content: space-between;
}

.bar {
  height: 4px;
  background-color: white;
  width: 100%;
}

.hero {
    width: 100%;
}
h1, p {
    font-family: "Avenir Next" !important;
    text-align: center;
}
p {
    font-size: 20px;
}
.contact-link {
  text-decoration: none;
  color: rgb(193, 0, 0);
  font-weight: bold;
}
.contact-link:hover {
  text-decoration: underline;
}
.about-us,
#cost,
#business-cost,
#value,
#business-value {
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
}
.column-pictures {
  display: flex;
  flex-direction: column;
  gap: 20px; /* Adds space between the images */
  align-items: center; /* Centers the images horizontally */
  margin-bottom: 5%;
}
.mid-picture {
  width: 400px; /* You can adjust this value as per your design needs */
  height: 200px; /* Set the height to match the desired size */
  object-fit: cover; /* Ensures the images retain their aspect ratio and fill the container */
  border-radius: 8px; /* Optional: adds rounded corners */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Optional: adds a subtle shadow to the images */
}
#quality,
#chrome,
#window-graphics,
#vehicle-promotion {
    background-color: rgb(111, 4, 4);
    padding-top: 1%;
    padding-left: 10%;
    padding-right: 10%;
    color: white;
    padding-bottom: 3%;
}

#stickers,
#truck-branding {
    background-color: rgb(23, 23, 23);
    padding-top: 1%;
    padding-left: 10%;
    padding-right: 10%;
    color: white;
    padding-bottom: 3%;
}
.bottom-image {
  padding-top: 3%;
  display: block;
  width: 100%;
  height: auto;
  background-color: #1a1a1a;
}
#contact {
    background-color: #1a1a1a;
    color: white;
    font-family: "Avenir Next" !important;
    text-decoration: none;
    padding-top: 2%;
    padding-bottom: 3%;
    text-align: center;
}

#contact a {
    text-decoration: none;
    color: white;
}

#contact a:hover {
    text-decoration: underline;
}
footer {
    background-color: antiquewhite;
    width: 100%;
    display: inline-flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 3%;
    font-family: "Avenir Next" !important;
}
.footer-logo {
    width: 11%;
}
.footer-icon {
    width: 58px;
}
.footer-icons {
    margin-right: 3%;
}
footer span {
    margin-top: 3%;
}
footer a {
    text-decoration: none;
    color: black;
}
footer a:hover {
    text-decoration: underline;
}

.row > .column {
    padding: 0 8px;
  }
  
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  .column {
    float: left;
    width: 25%;
  }

  
  /* The Modal (background) */
  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #1a1a1a;
  }
  
  /* Modal Content */
  .modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 70%;
    max-width: 1200px;
  }
  
  /* The Close Button */
  .close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
  }
  
  .wraps,
  .stickers,
  .chrome {
    display: none;
    background-color: #1a1a1a;
    text-align: center;
  }
  
  .cursor {
    cursor: pointer;
  }
  
  /* Next & previous buttons */
  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover,
  .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  .caption-container {
    text-align: center;
    background-color: #1a1a1a;
    padding: 2px 16px;
    color: white;
  }
  
  .demo {
    opacity: 0.6;
  }
  
  .active,
  .demo:hover {
    opacity: 1;
  }
  
  img.hover-shadow {
    transition: 0.3s;
  }
  
  .hover-shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }

  .gallery-image {
    width: 100%;
    height: 23%;
    border-radius: 8px;
    border: 3px solid white;
    object-fit: cover;
  }

  .gallery-large {
    max-width: 100%;
    max-height: 30%;
  }


  /* Extra small devices (phones, portrait mode) */
@media (max-width: 576px) {
  /* Your styles for small screens */
  #centered-logo {
    width: 42%;
    margin-left: 29%;
    margin-right: 29%;
    margin-top: 5%;
}
#home-nav {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  flex-grow: 1;
}

  .hero {
    margin-top: 40px;
  }
  header {
    position: fixed;
  }
  nav {
    width: 30%;
    margin-right: 0;
  }

  .logo-container {
    width: 30%;
  }
  .nav-links:active::after {
    background-color: none;
    width: 100%;
    transition: none;
  }
  .nav-links:after {
    background-color: none;
    content: none;
    width: 100%;
    transition: none;
  }
  .nav-list {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    background-color: #333;
    position: absolute; /* Position it absolutely below the navbar */
    top: 45px; /* Ensure it is below the navbar */
    left: 0;
    right: 0;
    padding-left: 5%;
}

.nav-list.active {
    display: flex;
}

.hamburger {
    display: flex;
    margin-right: 20%;
}

.nav-links {
    margin: 10px 0;
}
.navbar {
  justify-content: end;
}
.nav-list.active + .hamburger {
  display: none;
}

  footer {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-logo {
    width: 30%;
    margin-bottom: 5%;
  }
  #why-us {
    text-align: left;
  }
  .row {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
  }
  .gallery-image {
    width: 100%;
    height: auto;
  }
  .column {
      width: 90%;
      margin-bottom: 10%;
  }
  .lightbox {
    width: 33%;
    height: 5%;
  }
  .demo {
    display: block;
  }
  .caption-container {
    display: none;
  }
  .footer-icons {
    margin-right: 0;
  }
}

/* Small devices (phones, landscape mode) */
@media screen and (min-width: 577px) and (max-width: 768px) {
  /* Your styles for medium screens */
  #centered-logo {
    width: 42%;
    margin-left: 29%;
    margin-right: 29%;
    margin-top: 2%;
}
#home-nav {
  max-width: 90%;
  margin-left: 5%;
  margin-right: 5%;
  flex-grow: 1;
}

  .hero {
    margin-top: 80px;
  }
  header {
    position: fixed;
  }
  nav {
    width: 30%;
    margin-right: 0;
  }

  .logo-container {
    width: 30%;
  }
  .nav-links:active::after {
    background-color: none;
    width: 100%;
    transition: none;
  }
  .nav-links:after {
    background-color: none;
    content: none;
    width: 100%;
    transition: none;
  }
  .nav-list {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    background-color: #333;
    position: absolute; /* Position it absolutely below the navbar */
    top: 45px; /* Ensure it is below the navbar */
    left: 0;
    right: 0;
    padding-left: 5%;
}

.nav-list.active {
    display: flex;
}

.hamburger {
    display: flex;
    margin-right: 20%;
}

.nav-links {
    margin: 10px 0;
}
.navbar {
  justify-content: end;
}
.nav-list.active + .hamburger {
  display: none;
}
  

  footer {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-logo {
    width: 30%;
    margin-bottom: 5%;
  }
  #why-us {
    text-align: left;
  }
  .row {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
  }
  .gallery-image {
    width: 100%;
    height: auto;
  }
  .column {
      width: 90%;
      margin-bottom: 10%;
  }
  .lightbox {
    width: 33%;
    height: 5%;
  }
  
  .footer-icons {
    margin-right: 0;
  }
}

/* Medium devices (tablets, portrait mode) */
@media screen and (min-width: 769px) and (max-width: 992px) {
  /* Your styles for large tablets */
  #centered-logo {
    width: 36%;
    margin-left: 32%;
    margin-right: 32%;
    margin-top: 2%;
}
#home-nav {
  max-width: 80%;
  margin-left: 10%;
  margin-right: 10%;
  flex-grow: 1;
}
header {
  position: fixed;
}
nav {
  width: 30%;
  margin-right: 0;
}
.nav-links:active::after {
  background-color: none;
  width: 100%;
  transition: none;
}
.nav-links:after {
  background-color: none;
  content: none;
  width: 100%;
  transition: none;
}
.nav-list {
  display: none;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  background-color: #333;
  position: absolute; /* Position it absolutely below the navbar */
  top: 45px; /* Ensure it is below the navbar */
  left: 0;
  right: 0;
  padding-left: 5%;
}

.nav-list.active {
  display: flex;
}

.hamburger {
  display: flex;
  margin-right: 20%;
}

.nav-links {
  margin: 10px 0;
}
.navbar {
justify-content: end;
}
.nav-list.active + .hamburger {
display: none;
}

  .logo-container {
    width: 18%;
  }
}

/* Large devices (tablets, landscape mode / small desktops) */
@media screen and (min-width: 993px) and (max-width: 1200px) {
  /* Your styles for desktops and large tablets */
  #centered-logo {
    width: 28%;
    margin-left: 36%;
    margin-right: 36%;
    margin-top: 2%;
}
#home-nav {
  max-width: 60%;
  margin-left: 20%;
  margin-right: 20%;
  flex-grow: 1;
}
  nav {
    width: 48%;
    margin-right: 5%;
  }
}

