/* FONTS*/

/* Quicksand font */

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@600&display=swap');



/* Base reset + predictable sizing */

*, *::before, *::after { box-sizing: border-box; }

html, body { min-height: 100vh; margin: 0; padding: 0; }



/* Liquid page */

body {

  min-height: 100vh;

  background: #ffffff;

  color: #111111;

  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  line-height: 1.5;

}



.page {

  width: 100%;

  min-height: 100vh;

}



/* Sticky banner */

.sticky-banner{

  position: sticky;

  top: 0;

  width: 100%;

  height: 100px;

  background: #29545e;

  z-index: 1000;



  display: flex;

  align-items: center;

  padding: 0 16px;

}



.logo{

  width: 95px;

  height: 95px;

  object-fit: contain;

  display: block;

}



.banner-right{

  margin-left: auto;      /* pushes the whole block to the right */

  margin-top: 15px;       /* 10px from the top */

  margin-right: 40px;     /* 10px from the right */

align-self:flex-start;

  display: flex;

  flex-direction: column; /* icons above menu */

  align-items: flex-end;  /* right-align inside */

  gap: 8px;

}



/* Social icons (top-right inside banner) */

.banner-social{

  display: flex;

  gap: 16px;

}



.banner-social a{

  color: #ffffff;

  text-decoration: none;

  font-size: 14px;

  line-height: 1;

}



.banner-social a:hover{

  color: #f48c0f;

  opacity: 1;

}

.dropdown {
  position: relative;
  display: flex; 
}
.dropdown-content::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  height: 5px;
  background: transparent;
}
.dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 5px); /* <--- This pushes it down exactly 5px */
  background-color: #f26b21;
  min-width: 130px;
  padding: 10px 0; 
  z-index: 999;
}

.dropdown:hover .dropdown-content {
  display: flex;
  flex-direction: column;
  align-items: center; /* Centers the text inside the block */
}

.dropdown-content .menu-link:hover {
  color: #000000 !important; /* The !important forces the black to override the orange */
}

.banner-menu{

  display: flex;

     margin-top: 30px;

  gap: 24px;

  font-family: "Quicksand", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  font-weight: 600;

}



.banner-menu .menu-link{

  color: #ffffff;

  text-decoration: none;

  font-size: 16px;

  line-height: 1;

}



.banner-menu .menu-link:hover{

  color: #f48c0f;

}



/* Swiper Carousel Overrides */

.swiper-slide {

  display: flex;

  justify-content: center;

  align-items: center;

  background: #ffffff; 

}



/* Customizing the Swiper arrows to match your original orange buttons */

.swiper-button-next,

.swiper-button-prev {

  background: rgba(244, 140, 15, 0.8);

  color: white !important;

  width: 40px;

  height: 40px;

  border-radius: 50%;

}



.swiper-button-next::after,

.swiper-button-prev::after {

  font-size: 18px; 

  font-weight: bold;

}

.instructions-section {
  margin-bottom: 5px; /* Shaved off 15px to bring the top and bottom rows much closer together */
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px; 
  margin-top: -10px; /* Back to normal so the top row doesn't overlap */
}

/* New rule just for the bottom row */
.outdoor-grid {
  margin-top: -40px; /* Adjust this number to pull ONLY the bottom icons closer */
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-icon {
  width: 150px; 
  height: 150px;
  object-fit: contain;
  margin-bottom: 2px; /* Drastically reduced to pull the descriptive text right up against the icon */
}

.step-item p {
  font-size: 0.95rem;
  line-height: 1.2; /* Tightened the spacing between lines of text */
  margin: 0;
  padding: 0 5px;
}