@charset "UTF-8";
/* MotoWorks - custom overrides (clean) */

/* =========================
   1) REMOVE UNUSED HERO
   ========================= */
#hero {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}
#hero * { display: none !important; }

/* =========================
   2) HIDE EMPTY HEADER
   ========================= */
#header { display: none !important; }

/* =========================
   3) BANNER LOGO (NO OVERLAP)
   Logo stays top-center and sits over banner background
   ========================= */
#banner {
  position: relative;         /* keep background behavior */
  text-align: center;
  padding-top: 10em;          /* reduce from template's 16em */
  padding-bottom: 8em;        /* reduce from template's 13em */
}

/* Make logo take up real space (NOT absolute) */
#banner .banner-logo {
  position: relative;         /* key: prevents overlap */
  width: 100%;
  display: flex;
  justify-content: center;

  margin: 1.25rem 0 2.25rem;  /* space below logo */
  padding: 0 1rem;            /* prevents phone edge clipping */
  box-sizing: border-box;
}

#banner .banner-logo img {
  width: 300px;               /* desktop size */
  max-width: 92vw;            /* mobile safety */
  height: auto;
  display: block;
}

/* Remove any old template spacing hacks that collide */
#banner h2 { margin-top: 0 !important; }

/* =========================
   4) SECTION FOUR CONTACT TEXT = WHITE
   ========================= */
#four,
#four p,
#four a,
#four li,
#four label,
#four h1, #four h2, #four h3, #four h4, #four h5, #four h6 {
  color: #fff !important;
}
#four a:hover { color: #fff !important; }

#four input,
#four textarea {
  color: #fff !important;
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.25) !important;
}
#four ::placeholder { color: rgba(255,255,255,0.65) !important; }





/* Remove bullets in contact area (section four) */
#four ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

#four li {
  padding-left: 0;
}

/* =========================
   5) MOBILE TWEAKS
   ========================= */
@media (max-width: 768px) {
  #banner { padding-top: 7.5em; padding-bottom: 6em; }
  #banner .banner-logo { margin: 1rem 0 1.75rem; }
}

@media (max-width: 480px) {
  #banner { padding-top: 7em; padding-bottom: 5.5em; }
}

/* =========================
   FINAL LOGO SIZING
   ========================= */

/* Desktop */
#banner .banner-logo img {
  width: 650px;          /* native PNG width */
  max-width: 95vw;
  height: auto;
}

/* Tablet / mobile (~15% larger) */
@media (max-width: 700px) {
  #banner .banner-logo img {
    width: 350px;
    max-width: 95vw;
  }
}

@media (max-width: 480px) {
  #banner .banner-logo img {
    width: 300px;
    max-width: 95vw;
  }
}

/* Keep layout from getting too wide on big screens */
.container {
  max-width: 1200px;   /* try 1100–1300 to taste */
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* ==============================
   FIX Meet the Crew misalignment
   ============================== */

#three .feature-grid{
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 3em 2em;                /* row gap / column gap */
}

/* each person "card" */
#three .feature-grid .feature{
  float: none !important;
  width: min(560px, 100%) !important;   /* caps how wide each card can get */
  margin: 0 !important;

  display: flex !important;
  align-items: center !important;
  gap: 1.5em !important;
}

/* kill Spatial's odd/even float/margin/text-align rules */
#three .feature-grid .feature:nth-child(odd) .content,
#three .feature-grid .feature:nth-child(odd) .image,
#three .feature-grid .feature:nth-child(even) .content,
#three .feature-grid .feature:nth-child(even) .image{
  float: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: left !important;
}

/* inner pieces: image + text */
#three .feature-grid .feature .image{
  width: auto !important;
  flex: 0 0 160px !important;  /* image column */
}

#three .feature-grid .feature .content{
  width: auto !important;
  flex: 1 1 auto !important;   /* text column */
}

/* stack nicely on smaller screens */
@media (max-width: 980px){
  #three .feature-grid .feature{
    flex-direction: column !important;
    text-align: center !important;
  }
  #three .feature-grid .feature .content{
    text-align: center !important;
  }
}

#footer .footer-blurb{
  margin: 1.25em 0 0.75em;
  font-size: 1.2em;       /* not tiny */
  line-height: 1.4;
  opacity: 0.9;         /* subtle but readable */
}

/* Contact section – MotoWorks gritty */

#four .tagline{
  margin-top: 0.75em;
  font-size: 1.1em;
  opacity: 0.9;
}

#four .contact-list{
  list-style: none;
  padding: 0;
  margin-top: 1.5em;
}

#four .contact-list li{
  margin-bottom: 1.75em;
}

#four .contact-list h3{
  margin: 0.25em 0 0;
}

#four .contact-list h3 a{
  color: inherit;
  text-decoration: none;
}

#four .contact-list h3 a:hover{
  text-decoration: underline;
}

#four .micro{
  font-size: 0.9em;
  opacity: 0.75;
  margin-top: 0.25em;
}

#four header.major h2{
  margin-bottom: 0.25em;
}

#four .tagline{
  margin-top: 0;
  font-size: 1.1em;
  opacity: 0.9;
}
#four .contact-address-below{
  margin-top: 1.25em;
  text-align: center;
  font-size: 1.05em;
  opacity: 0.9;
}



/* Inventory cards - force grid */
.bike-grid{
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

/* 2 columns on tablets */
@media (max-width: 980px){
  .bike-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* 1 column on phones */
@media (max-width: 640px){
  .bike-grid{ grid-template-columns: 1fr; }
}

.bike-card{
  width: auto !important;
  max-width: 100%;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
}

.bike-photo img{
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.bike-body{ padding: 1rem; }

.bike-title{
  margin: 0 0 0.5rem 0;
  font-size: 1.05rem;
}

.bike-meta{
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem 0;
}

.bike-meta li{
  margin: 0.25rem 0;
  opacity: 0.9;
}

.bike-notes{
  margin: 0 0 0.9rem 0;
  opacity: 0.85;
}

/* Extra breathing room between inventory cards on mobile */
@media (max-width: 640px){
  .bike-card{
    margin-bottom: 1.5rem;
  }
}

/* =========================
   CREW SECTION (grid + circle pics + slightly darker bg)
   ========================= */

#three.crew-section.wrapper.style2 {
  background-color: #eaeaea;
}

#three .crew-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  text-align: left;
}

/* Card */
#three .crew-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.25rem;
  align-items: start;

  /* prevents accidental overflow from long words */
  min-width: 0;
}

#three .crew-photo {
  width: 140px;
  height: 140px;
  border-radius: 999px;
  overflow: hidden;
}

#three .crew-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#three .crew-body h4 {
  margin: 0 0 0.5rem 0;
}

/* Reading width */
#three .crew-body p {
  max-width: 60ch;
}

/* Justify bios (desktop/tablet only) */
@media (min-width: 641px) {
  #three .crew-body p {
    text-align: justify;
    text-justify: inter-word;
  }
}

/* Stack into 1 column on medium */
@media (max-width: 980px) {
  #three .crew-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Mobile sizing (THIS is where you change pic size) ===== */
@media (max-width: 640px) {
  #three .crew-card {
    grid-template-columns: 80px 1fr;
    gap: 1rem;
  }

  #three .crew-photo {
    width: 80px;
    height: 80px;
  }

  /* helps prevent right overflow on mobile */
  #three .crew-body {
    min-width: 0;
  }
}

/* Divider + padding between photo/text (desktop only) */
@media (min-width: 981px) {
  #three .crew-body {
    padding-left: 1.25rem;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
  }
}

/* =========================
   TOP SOCIAL STRIP – POLISH
   ========================= */

#banner .top-social {
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 1rem 1rem 0.5rem;   /* more vertical breathing room */
  margin-bottom: 0.5rem;
}

/* Space icons farther apart */
#banner .top-social .icons li {
  display: inline-block;
  padding: 0 1.25rem;          /* horizontal separation */
}

/* Make icons larger */
#banner .top-social .icon:before {
  font-size: 1.75rem;          /* was ~1.25rem */
  color: rgba(255, 255, 255, 0.9);
}

/* Hover polish */
#banner .top-social a:hover:before {
  color: #ffffff;
  transform: scale(1.1);
}

/* Smooth hover animation */
#banner .top-social .icon:before {
  transition: transform 0.15s ease, color 0.15s ease;
}

#banner .top-social {
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

@media (max-width: 640px) {
  #banner .top-social .icon:before {
    font-size: 1.4rem;
  }

  #banner .top-social .icons li {
    padding: 0 0.9rem;
  }
}

/* =========================
   SHRINK BANNER HEIGHT
   ========================= */

#banner {
  padding-top: 6em !important;     /* was ~16em originally */
  padding-bottom: 5em !important;  /* was ~13em */
}

/* =========================
   INVENTORY – clean, aligned cards
   ========================= */

/* Center the inventory header */
#inventory header.major {
  text-align: center;
  margin-bottom: 3rem;
}

/* Make each card a consistent vertical stack */
#inventory .bike-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Photo zone: consistent height + centered image */
#inventory .bike-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;        /* <-- one consistent value */
  padding: 0.75rem;     /* gives breathing room */
  box-sizing: border-box;
}

/* Image scales down to fit the photo zone */
#inventory .bike-photo img {
  max-height: 100%;
  max-width: 100%;
  height: auto;
  width: auto;
  display: block;
}

/* Body becomes flexible so the button can pin to bottom */
#inventory .bike-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

/* Push the button to the bottom so both cards match */
#inventory .bike-actions {
  margin-top: auto;
}

/* Mobile: slightly shorter photo zone */
@media (max-width: 640px) {
  #inventory .bike-photo {
    height: 150px;
  }
}
/* =========================
   INVENTORY – card styling
   ========================= */

#inventory .bike-card {
  background: #eaeaea;              /* light gray fill */
  border-radius: 12px;              /* rounded corners */
  padding: 1.5rem;                  /* inner spacing */
  box-shadow: 0 4px 14px rgba(0,0,0,0.06); /* subtle depth */
}

/* Slight hover polish (optional but nice) */
#inventory .bike-card:hover {
    background: #e2e2e2;
	box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
  transition: all 0.2s ease;
}


