/* Minimal overrides – keep your original design, only fix slideshow + readability
   Load AFTER your main style.css:
   <link rel="stylesheet" href="/assets/override.css?v=2">
*/

/* 1) HERO slideshow: consistent crop, fixed height, smooth fade */
#hero-slideshow{
  position: relative;
  height: min(58vh, 520px);
  margin-bottom: 25px;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 0 20px rgba(0,0,0,0.75);
}

.hero-slides{
  position: absolute;
  inset: 0;
}

.hero-slide{
  position: absolute;
  inset: 0;
  background-size: cover;          /* change to contain if you don't want crop */
  background-position: center 35%; /* slightly higher framing */
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.01);
  transition: opacity 900ms ease, transform 4500ms ease;
}

.hero-slide.active{
  opacity: 1;
  transform: scale(1.05);
}

/* 2) Overlay: less doom, better readability */
.hero-overlay{
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background: radial-gradient(ellipse at 30% 30%,
    rgba(255,255,255,.05),
    rgba(0,0,0,0) 55%
  ),
  linear-gradient(to bottom,
    rgba(0,0,0,.12),
    rgba(0,0,0,.62)
  );
}

/* 3) Inline logo + text: compact, clean */
.hero-inline{
  display:flex;
  align-items:center;
  gap:12px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-logo{
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.hero-metaltext{
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* 4) Mobile: smaller hero + only logo (as you wanted) */
@media (max-width: 768px){
  #hero-slideshow{ height: 240px; }
  .hero-overlay{ padding: 14px; }
  .hero-metaltext{ display:none; }
  .hero-logo{ width: 56px; height: 56px; }
  .hero-inline{ padding: 8px; }
}


.hero-slide{ background-size: contain; background-color: rgba(0,0,0,.35); }

