/* RESET BODY MARGINS */
body {
  margin: 0;
  padding: 0;
}

/* NAVBAR */
.navbar {
position: sticky;
  top: 0;
  z-index: 1000;
display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 30px;
  background-color: #272726; /* dark gray */
  color: white;
}

/* LOGO */
.logo {
  font-size: 20px;
  font-weight: bold;
 display: flex;
}

.logo img {
  height: 100px;   /* try 30–50px */
  width: auto;
    margin-left: -25px;
    margin-bottom: -1px;
    margin-top: 5px;
}

.logo a:hover img {
  transform: scale(1.05);
  transition: transform 0.3s;
}
    
/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
  font-family: 'IBM Plex Serif', serif;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 19px;
  display: inline-block;
}

.nav-links a:hover {
  text-decoration: underline;
  color: #f5cc6b; /* yellow tan */
  transform: scale(1.1);
  transition: 0.3s; 
}

/* HERO IMAGE AND TEXT */
.hero-image {
  background-image: url(-assets/-images/home-page-quote-banner.jpg);
  background-size: cover;
  background-position: center;
  height: 200px;
  width: auto;
  display: flex;
  align-items: top;
  justify-content: center;
}

.hero-text {
  background-color: rgba(0, 0, 0, 0); /* semi-transparent black */
  color: white;
  padding: 0px;
  text-align: center;
  font-size: 20px;
  font-family: 'IBM Plex Serif', serif;
  margin-left: 10px;
  margin-right: 10px;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: bold;
}
.hero-text p {
  font-size: 20px;
  font-style: italic;
}

/* CONTENT SECTION */
.content-section {
  padding: 40px 20px;
  font-family: 'IBM Plex Serif', serif;
  line-height: 1.6;
  color: #333;
  text-align: center;
  margin-left: 100px;
  margin-right: 100px;
}

.content-section h2 {
  color: #272726; /* dark gray */
  font-size: 28px;
  margin-top: 0;
}

.content-section p {
  font-size: 18px;
  margin-bottom: 10px;
}

.content-section a {
  display: inline-block;
  color: #272726; /* dark gray */
  text-decoration: underline;
}

.content-section a:hover {
  transform: scale(1.1);
  transition: 0.3s;
  text-decoration: underline;
  color: #f5cc6b; /* yellow tan */
}

/* PRODUCT SHOWCASE */
.product-showcase {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  padding: 0px;
  text-align: center;
  font-family: 'IBM Plex Serif', serif;
  margin-top: 20px;
  margin-bottom: 40px;
  margin: 20px 100px 40px 100px;
}

.product-item video {
  width: 100%;
  max-width: 275px;
  height: auto;
  border-radius: 8px;
  border-color: #333;
  border-width: 2px;
  border-style: solid;
}

.product-item video:hover { /* VIDEO HOVER EFFECT */
  transform: scale(1.05);
  transition: transform 0.3s;
  border-color: #f5cc6b; /* yellow tan */
}

.product-item img {
  width: 100%;
  max-width: 275px;
  height: auto;
  border-radius: 8px;
  border-color: #333;
  border-width: 2px;
  border-style: solid;
}

.product-item img:hover { /* VIDEO HOVER EFFECT */
  transform: scale(1.05);
  transition: transform 0.3s;
  border-color: #f5cc6b; /* yellow tan */
}

.product-item p {
  color: #272726; /* dark gray */
  margin-top: 15px;
  font-size: 1.2rem;
}

.product-item a {
  color: #272726; /* dark gray */
  text-decoration: none;
}

.product-item a:hover {
  color: #f5cc6b; /* yellow tan */
  text-decoration: underline;
}

.hamburger {
    display: none;
}

@media (max-width: 600px) {

  /* MOBILE NAVBAR */
  .navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    flex-direction: row;
    align-items: center;
    padding: 2px 20px;
  }

  /* MOBILE LOGO */
  .logo img {
    height: 90px;
    margin-left: -15px;
  }

  /* MOBILE HAMBURGER */
  .hamburger {
    display: block;
    font-size: 32px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;

    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);

    transition: transform 0.3s, color 0.3s;
  }

  .hamburger:focus {
    color: #f5cc6b;
  }

  .hamburger.active {
    color: #f5cc6b;
    transform: translateY(-50%) rotate(90deg);
  }

  /* MOBILE NAV LINKS */
  .navbar nav {
    width: 100%;
  }

  .nav-links {
    flex-direction: column;
    width: calc(100% - 20px);
    background-color: #272726;
    text-align: center;
    gap: 0;

    position: absolute;
    top: 100px;
    left: 10px;

    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0;

    border-radius: 0 0 14px 14px;

    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
  }

  .nav-links.show {
    max-height: 420px;
    opacity: 1;
    padding: 10px 0;
  }

  .nav-links li {
    list-style: none;
    padding: 10px 0;
  }

  .nav-links a {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid #444;
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  .nav-links a:hover,
  .nav-links a:active {
    color: #f5cc6b;
  }

  /* MOBILE HERO IMAGE AND TEXT */
  .hero-image {
    height: 160px;
    align-items: center;
  }

  .hero-text {
    font-size: 16px;
    padding: 8px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 15px;
  }

  /* MOBILE CONTENT SECTION */
  .content-section {
    font-size: 17px;
    padding: 20px 16px;
    margin-left: 0;
    margin-right: 0;
  }

  .content-section h2 {
    font-size: 24px;
  }

  .content-section p {
    font-size: 16px;
  }

  /* MOBILE PRODUCT SHOWCASE */
  .product-showcase {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 20px;
    margin: 0;
  }

  .product-item video {
    max-width: 100%;
  }
  /* MOBILE FOOTER */
.site-footer {
  margin-top: 35px;
  padding: 30px 20px 15px;
  text-align: center;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.footer-brand img {
  width: 170px;
  max-width: 100%;
}

.footer-brand p {
  font-size: 13px;
}

.site-footer h3 {
  font-size: 20px;
}

.footer-links a,
.footer-contact a {
  display: block;
  margin-bottom: 10px;
}

.footer-contact p {
  margin-bottom: 12px;
}

.footer-bottom {
  font-size: 13px;
  padding-top: 12px;
}
}



/*------FOOTER-----*/
/* FOOTER */
.site-footer {
  background-color: #272726;
  color: white;
  font-family: 'IBM Plex Serif', serif;
  margin-top: 50px;
  padding: 35px 30px 15px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand img {
  width: 180px;
  height: auto;
  border: 1px solid #f5cc6b;
}

.footer-brand p {
  color: #f5cc6b;
  margin-top: 10px;
  font-size: 14px;
}

.site-footer h3 {
  color: #f5cc6b;
  font-size: 20px;
  margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

.footer-contact p {
  margin: 0 0 10px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #f5cc6b;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 25px;
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
  color: #ddd;
}
