body img {
  -webkit-user-drag: none; /* For WebKit browsers like Chrome, Safari */
  -webkit-user-select: none; /* For WebKit browsers */
  -moz-user-select: none; /* For Firefox */
  -ms-user-select: none; /* For Internet Explorer/Edge */
  user-select: none; /* Standard property */
}
/*----------- RESET -----------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Roboto, sans-serif;
  color: #333;
  background-color: #fafafa;
  line-height: 1.6;
  user-select: none;
}

/*----------- CONTAINERS -----------*/
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/*----------- HEADER -----------*/
.header {
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.logo {
  margin-left: 1rem;
  color: #d62828;
  font-size: 1.5rem;
  font-weight: bold;
}
.nav-links {
  list-style: none;
  display: flex;
  margin-right: 1rem;
  gap: 1.5rem;
}
.nav-links a {
  position: relative;
  color: #333;
  text-decoration: none;
  font-weight: 500;
}
.nav-links a:hover {
  color: #d62828;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  height: 2px;
  width: 100%;
  background-color: red;
  border-radius: 1px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: all 0.6s ease;
}
.nav-links a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/*----------- MOBILE NAVIGATION -----------*/

.mobile-nav-div {
  text-align: center;
  justify-content: center;
  height: fit-content;
}
#mobile-menu {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transform: scaleY(0.98);
  transform-origin: top;
  transition: all 0.3s ease;
}
#mobile-menu.mobile-menu-open {
  opacity: 1;
  transform: scaleY(1);
  height: 280px;
  transition: all 0.3s ease;
}
.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  padding: 1rem 0;
}
.mobile-nav-links a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}
.mobile-menu-button {
  background: rgba(255, 0, 0, 0.7);
  padding: 0.35rem;
  border: 2px solid black;
  border-radius: 2px;
}

/*----------- HERO -----------*/
.hero {
  background: url("../images/misc/showroom_floor_November-edited.png");
  background-size: cover;
  background-position: top 57% center;
  color: white;
  text-align: center;
  padding: 12rem 1rem;
  overflow: hidden;
  transition: all 0.7s ease;
}
.hero:hover {
  transform: scale(1.005);
  transition: all 0.7s ease;
}
.hero-div {
  overflow: hidden;
  box-shadow: -10px 1px 18px rgb(0, 0, 0);
}
.hero-content {
  background-color: rgba(0, 0, 0, 0.5);
  display: inline-block;
  padding: 2rem 3rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.hero-content:hover {
  box-shadow: 0px 3px 32px rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease;
}
.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.btn {
  display: inline-block;
  background: #d62828;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  margin-top: 1rem;
}
.btn:hover {
  background: #a61b1b;
}

/*----------- BRANDS -----------*/
/* .brands-section {
  background: #fff;
  text-align: center;
  padding: 4rem 1rem;
}
.section-title {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
.brand-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.brand-list li {
  width: 150px;
  height: 150px;
  padding: 0.25rem;
  background: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  overflow: hidden; /* Ensures images don't overflow
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: all 0.7s ease;
}
.brand-list li:hover {
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    transform: scale(1.11);
    /* transform: rotateZ(360deg);
    transition: all 0.7s ease;
}
.brand-list img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
} */

/*----------- BRANDS CAROUSEL -----------*/
.brands-section {
  background: #fff;
  text-align: center;
  padding: 4rem;
  overflow: hidden;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

/* Carousel wrapper */
.brand-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

/* Moving track */
.brand-track {
  display: flex;
  align-items: center;
  margin: 1rem;
  gap: 2rem;
  animation: scrollBrands 30s linear infinite;
}

.brand-carousel:hover .brand-track {
  animation-play-state: paused;
}

/* Individual logo box */
.brand-item {
  width: 150px;
  height: 150px;
  padding: 0.25rem;
  background: #f9f9f9;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.brand-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  transform: scale(1.1);
  background: #ffffff;
}

/* Image inside */
.brand-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: all 0.3s ease;
}

.brand-item:hover img {
  filter: none;
}

/* Infinite scroll animation */
@keyframes scrollBrands {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive behavior */
@media (max-width: 768px) {
  .brand-track {
    gap: 1.25rem;
    animation-duration: 15s;
  }

  .brand-item {
    width: 110px;
    height: 110px;
  }
}
/* ABOUT SECTION */
.about-section {
  display: flex;
  justify-content: center;
  width: 100vw;
  padding: 4rem 0;
  background: #fafafa;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: 90%;
  max-width: 1100px;
  flex-wrap: wrap;
}

/* Image wrapper for subtle zoom effect */
.about-img-wrapper {
  overflow: hidden;
  border-radius: 16px;
}

.about-img {
  width: 100%;
  max-width: 450px;
  transition: transform 1.2s ease;
}
.about-img-wrapper:hover .about-img {
  transform: scale(1.03);
}

/* Text column */
.about-text {
  flex: 1;
  min-width: 280px;
}

.about-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}

.about-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #d62828;
  border-radius: 4px;
  margin-top: 6px;
}

/* Description text */
.about-desc p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Warm Local Callout Box */
.about-callout {
  margin-top: 2rem;
  background: #fff8f2;                /* warm cream tone */
  border-left: 4px solid #d62828;     /* warm local accent */
  padding: 1.5rem 1.5rem 1.5rem 1.2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.about-callout h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.about-callout ul {
  list-style: none;
  padding-left: 0;
}

.about-callout ul li {
  font-size: 1.05rem;
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
}

.about-callout ul li::before {
  content: "✔";
  font-size: 1rem;
  color: #d62828;
  margin-right: 0.5rem;
}

/* --- Subtle On-Scroll Animations --- */
.fade-in, .fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible, 
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Mobile Adjustments --- */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-title::after {
    margin-left: auto;
    margin-right: auto;
  }

  .about-callout {
    text-align: left;
  }
}

/* WHAT WE OFFER */
/*.whatweoffer-section {*/
/*  display: flex;*/
/*  width: 100%;*/
/*  justify-content: center;*/
  /* align-items: center; */
/*  text-align: center;*/
/*}*/
/*.whatweoffer-container {*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  width: 50%;*/
/*  margin: 3rem auto;*/
/*  padding: 1rem;*/
/*}*/
/*.deliverymen-img {*/
/*  margin: 1rem;*/
/*  width: 500px;*/
/*}*/
/*.deliverymen-img {*/
/*  margin: 1rem;*/
/*  width: 300px;*/
/*}*/
/*.whatweoffer-container {*/
/*  width: 90vw;*/
/*  text-align: center;*/
/*  justify-content: center;*/
/*  align-items: center;*/
/*}*/
/*.whatweoffer-section {*/
/*  background-color: #fff;*/
/*}*/
.whatweoffer-section {
  display: flex;
  justify-content: center;
  padding: 4rem 0;
  width: 100vw;
  background: #ffffff;
}

.whatweoffer-container {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: 90%;
  max-width: 1100px;
  flex-wrap: wrap;
}

/* Image Side */
.whatweoffer-img-wrapper {
  overflow: hidden;
  border-radius: 16px;
}

.whatweoffer-img {
  width: 100%;
  max-width: 400px;
  transition: transform 1.2s ease;
}
.whatweoffer-img-wrapper:hover .whatweoffer-img {
  transform: scale(1.03);
}

/* Text Side */
.whatweoffer-text {
  flex: 1;
  min-width: 280px;
  background: #fdfdfd;
  padding: 1.75rem 2rem;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-left: 4px solid #d62828;
}

.whatweoffer-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.whatweoffer-list {
  list-style: none;
  margin-bottom: 1.5rem;
  padding-left: 0;
}

.whatweoffer-list li {
  font-size: 1.15rem;
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
}

.whatweoffer-list li::before {
  content: "✔";
  font-size: 1rem;
  color: #d62828;
  margin-right: 0.6rem;
}

.whatweoffer-footnote {
  font-size: 0.95rem;
  font-style: italic;
  opacity: 0.8;
}

/* Bring image to the right on desktop */
@media (min-width: 900px) {
  .whatweoffer-container {
    flex-direction: row-reverse;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .whatweoffer-text {
    text-align: left;
  }

  .whatweoffer-container {
    flex-direction: column;
  }
}

/*-----------STAFF -----------*/
.staff_wrapper {
  display: flex;
  width: 100%;
  flex-flow: column;
  column-width: 1fr;
  text-align: center;
  align-items: center;
}
.staff_section {
  display: flex;
  gap: 2rem;
  width: 85%;
  flex-wrap: wrap;
  justify-content: center;
}
/* .staff_wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  padding: 1rem;
  width: 100%;
  min-width: fit-content;
  justify-content: center;
  flex-wrap: wrap;
}
.staff_section {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  justify-items: center;
  align-items: start;
}
.staff_section .card_wrapper:nth-child(-n+6) {
  grid-column: span 2;
}

/* Last 2 cards: positioned to center them
.staff_section .card_wrapper:nth-child(7) {
  grid-column: 2 / 4; /* Starts at column 2, spans 2
}

.staff_section .card_wrapper:nth-child(8) {
  grid-column: 4 / 6; /* Starts at column 4, spans 2
} */

/* @media screen and (max-width: 980px) {
  .staff_section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .staff_section {
    grid-template-columns: 1fr;
  }
} */

/*----------- CONTACT -----------*/
.contact-section {
  background: white;
  padding: 4rem 1rem;
  text-align: center;
}
.contact-section h3 {
  margin-bottom: 5rem;
}
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 300px;
}
.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #d62828;
  outline: none;
}
.contact-info {
  max-width: 500px;
  text-align: left;
  line-height: 1.8;
}
.hours {
  padding-right: 3px;
}

/*----------- FOOTER -----------*/
.footer {
  top: auto;
  background: #d62828;
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

/*----------- MEDIA QUERIES -----------*/
@media (max-width: 768px) {
  .hero h2 {
    font-size: 2rem;
  }
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  .logo {
    width: 175px;
  }
  .deliverymen-img {
    max-width: 350px;
    object-position: center;
    margin-bottom: 1rem;
  }
  .whatweoffer-section {
    width: 100%;
  }
  .whatweoffer-heading {
    width: 100%;
  }
  .whatweoffer-content {
    padding: 0.15rem;
  }
}

/*----------- TO TOP BUTTON -----------*/
.to-top-button {
  width: 50px;
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #d62828; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}
.to-top-button:hover {
  background-color: #a61b1b; /* Add a dark red bg color on hover */
}

/*----------- Additional/misc styling -----------*/
.logo {
  max-width: 300px;
}

.img_foot {
  width: 90vw;
  padding: 0;
  margin: 0 auto;
}

.logofoot {
  max-width: 200px;
  background-color: puprle;
  margin: 0 auto;
}

/*----------- SEASONAL/SPECIAL styling -----------*/
/*.open-house-content {*/
/*  text-align: center;*/
/*  justify-content: center;*/
/*  width: 90%;*/
/*  max-width: 900px;*/
/*  margin: 0 auto;*/
/*  padding: 4rem 1rem;*/
/*}*/
/*.open-house-img-container {*/
/*  display: inline-block;*/
/*  justify-content: center;*/
/*  width: 100%;*/
/*}*/
/*.open-house-img {*/
/*  display: inline-block;*/
/*  position: relative;*/
/*  width: 40%;*/
/*  border-radius: 8px;*/
/*  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
/*  margin: 2rem auto;*/
/*}*/
/*.corn-dogs {*/
/*  position: relative;*/
/*  mix-blend-mode: multiply;*/
/*  aspect-ratio: 1/1;*/
/*  width: 40%;*/
/*  margin: 1rem auto;*/
/*}*/

/*@media (max-width: 768px) {*/
/*  .open-house-events {*/
/*      width: 80%;*/
/*  }*/
/*  .open-house-img {*/
/*    width: 90%;*/
/*  }*/
/*  .corn-dogs {*/
/*    width: 70%;*/
/*  }*/
/*}*/

.open-house-section {
  display: flex;
  justify-content: center;
  padding: 5rem 1rem;
  position: relative;
  overflow: hidden;
}

/* CARD */
.open-house-card {
  position: relative;
  width: 90%;
  max-width: 900px;
  padding: 3rem;
  border-radius: 18px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.55);
  border: 3px double rgba(214, 40, 40, 0.6);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15), inset 0 0 40px rgba(255,255,255,0.25);
  text-align: center;
  overflow: hidden;
}

/* FREE CORNDOG RIBBON */
.free-banner {
  background: linear-gradient(45deg, #d62828, #a61b1b);
  color: white;
  font-weight: 800;
  padding: 0.6rem 1.2rem;
  font-size: 1.1rem;
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  border-radius: 6px;
  z-index: 20;
}

@media screen and (max-width: 480px) {
  .free-banner {
    font-size: 0.5rem;
    padding: 0.2rem 0.6rem;
  }
}

/* HOLLY DECORATION */
.holly {
  position: absolute;
  width: 140px;
  opacity: 0.85;
  z-index: 12;
}

.holly-left {
  top: -40px;
  left: -25px;
  transform: rotate(-209deg);
}

.holly-right {
  top: -40px;
  right: -25px;
  transform: scaleX(-1) rotate(-209deg);
}

/* SNOWFLAKES */
.snowflake-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 5;
}

.snowflake {
  position: absolute;
  top: -5%;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.9);
  animation: snowfall 10s linear infinite;
}

.snowflake:nth-child(1) { left: 10%; animation-duration: 12s; }
.snowflake:nth-child(2) { left: 35%; animation-duration: 9s; }
.snowflake:nth-child(3) { left: 60%; animation-duration: 14s; }
.snowflake:nth-child(4) { left: 80%; animation-duration: 11s; }
.snowflake:nth-child(5) { left: 50%; animation-duration: 10s; }

@keyframes snowfall {
  0% { transform: translateY(-10px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(120vh) rotate(360deg); opacity: 0.3; }
}

/* HERO IMAGE (with parallax) */
.parallax-img {
  transition: transform 0.1s ease-out;
}

/* TITLE & TEXT */
.oh-title { font-size: 2.7rem; font-weight: 800; color: #8b1e1e; margin-bottom: 1.5rem; }
.oh-maintext { font-size: 1.3rem; max-width: 90%; margin: 0 auto 2rem; line-height: 1.7; }

/* ICONS */
.oh-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.oh-icon {
  width: 160px;
  aspect-ratio: 1/1;
  mix-blend-mode: multiply;
}

.oh-icon.round { border-radius: 50%; }

/* FOOTNOTE */
.oh-footnote { font-size: 0.9rem; opacity: 0.85; }

/* FADE ANIMATIONS */
.fade-item {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 0.8s ease forwards;
}

.fade-item:nth-child(1) { animation-delay: 0.1s; }
.fade-item:nth-child(2) { animation-delay: 0.3s; }
.fade-item:nth-child(3) { animation-delay: 0.5s; }
.fade-item:nth-child(4) { animation-delay: 0.7s; }
.fade-item:nth-child(5) { animation-delay: 0.9s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
