

/* === Steelfish font === */
@font-face {
  font-family: "Steelfish";
  src: url("../assets/Steelfish_Rg.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Steelfish";
  src: url("../assets/Steelfish_Eb.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: "Proxima Nova", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background-color: #000;
  color: #fff;
}

.mitski-hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  color: #fff;
  background-image: url("../assets/BG_Updated_compressed.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.mitski-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  
  pointer-events: none;
}

.mitski-hero__header {
  position: absolute;
  inset-inline: 0;
  top: 10px;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.mitski-hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  pointer-events: auto;
}

.mitski-logo {
  font-family: "Steelfish", system-ui, sans-serif;
  font-weight: 800;
  font-size: 56px;
  letter-spacing: -1.12px;
  text-transform: uppercase;
  text-align: center;
}

.mitski-nav {
  display: flex;
  gap: clamp(16px, 3vw, 40px);
  list-style: none;
  padding: 0;
  margin: 0; 
  font-family: "Steelfish", system-ui, sans-serif; 
  font-weight: 400;
  font-size: 22px;
  text-transform: uppercase;
}

.mitski-nav a {
  color: #ffffff;
  text-decoration: none;
  position: relative;
}

.mitski-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: width 160ms ease-out;
}

.mitski-nav a:hover::after,
.mitski-nav a:focus-visible::after {
  width: 100%;
}



.mitski-hero__spacer {
  min-height: 100vh;
}




/* === Footer / Laylo + socials === */

.mitski-footer {
  background-color: rgb(25 40 65 / 1.0); /* dark navy like the screenshot */
  color: #ffffff;
  padding: 32px 5vw;
}

.mitski-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.mitski-footer__left {
  flex: 1 1 55%;
  min-width: 260px;
}

.mitski-footer__right {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
}

/* Social icons row */
.mitski-footer__social {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}

.social-icon__svg {
  width: 26px;
  height: 26px;
  display: block;
  fill:white;
}

.social-icon:hover,
.social-icon:focus-visible {
  opacity: 0.75;
}

/* Meta row: © + TERMS AND POLICIES */
.mitski-footer__meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-family: "Steelfish", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: normal;
  font-size: 16px;
  color:rgba(255, 255, 255, 0.6);
}

.mitski-footer__link {
  color: inherit;
  text-decoration: none;
}

.mitski-footer__link:hover,
.mitski-footer__link:focus-visible {
  text-decoration: underline;
}

/* Mobile layout */
@media (max-width: 768px) {
  .mitski-footer__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
  }

  .mitski-footer__right {
    align-items: flex-start;
  }

  .mitski-footer__social {
    flex-wrap: wrap;
  }
}

