/* ========================================================
   SOURCECODE & LAYOUT COPYRIGHTS BY Jarno K. Hänninen 2026
   ======================================================== */
/* =========================
   FONTIT
   ========================= */

@font-face {
  font-family: "HPSimplified";
  src: url("fonts/HPSimplified_Rg.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "HPSimplified";
  src: url("fonts/HPSimplified_Bd.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

/* =========================
   RESET / PERUS
   ========================= */

body {
  margin: 0;
  padding: 0;
  font-family: "HPSimplified", Arial, Helvetica, sans-serif;
}

/* =========================
   MUSTA VIIVA
   ========================= */

.divider {
  max-width: 1200px;
  width: 100%;
  height: 2px;
  margin: 0 auto;
  background: #000;
}

/* =========================
   HEADER – DESKTOP
   ========================= */

.header {
  max-width: 1200px;
  height: 296px;
  margin: 0 auto;
  background: url("images/footer.jpg") no-repeat center top;
  background-size: cover;
  position: relative;
}

.header-logo {
  position: absolute;
  top: 10px;
  left: 45px;
  width: 215px;
}

/* =========================
   TEKSTIOSIO
   ========================= */

.text-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 20px;
  font-size: 16px;
  line-height: 1.3;
}

.fb-icon {
  height: 28px;
  vertical-align: middle;
  margin-left: 6px;
}

/* =========================
   PARTNERS – DESKTOP
   ========================= */

.partners-footer {
  max-width: 1200px;
  height: 349px;
  margin: 0 auto;
  background: url("images/bottom_ads.jpg") no-repeat center top;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.partners-track {
  display: flex;
  gap: 40px;
  position: absolute;
  top: 100px;
  left: 0;
  animation: partners-scroll 30s linear infinite;
}

.partners-track img {
  height: 140px;
}

/* YKSI AINOA ANIMAATIO – KÄYTÖSSÄ KAIKKIALLA */
@keyframes partners-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* =========================
   DESKTOP-SUOJAUS
   ========================= */

@media (min-width: 769px) {
  .partners-track {
    left: 0;
  }
}

/* =========================
   MOBIILI
   ========================= */

@media (max-width: 768px) {
/* --- MOBIILI: ALAOSAN LINKKI PARTNERS-SIVULLE --- */
body:not(.partners-page) .partners-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
}

  body {
    overflow-x: hidden;
  }

  /* ----- HEADER MOBIILI ----- */
  .header {
    width: 100%;
    height: 248px;
    margin: 0;
    background: url("images/mobile-header.jpg") no-repeat center center;
    background-size: cover;
  }

  .header-logo {
    display: none;
  }

  /* ----- MUSTA VIIVA ----- */
  .divider {
    height: 2px;
  }

  /* ----- TEKSTI ----- */
  .text-section {
    padding: 14px;
    font-size: 16px;
    line-height: 1.25;
  }

  /* ----- MOBIILI INDEX – STAATTINEN ALAOSA ----- */
  body:not(.partners-page) .partners-footer {
    display: block;
    width: 100%;
    height: 60px;
    background: url("images/mobile-ads.jpg") no-repeat center center;
    background-size: cover;
  }

  /* ----- MOBIILI PARTNERS ----- */
  body.partners-page .header,
  body.partners-page .text-section {
    display: none;
  }

  body.partners-page .partners-footer {
    width: 100%;
    height: 800px;
    background: url("images/mobile-partners.jpg") no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
  }

  body.partners-page .partners-track {
    position: absolute;
    top: 350px;
    left: 0;
    display: flex;
    gap: 30px;
    width: max-content;
    animation: partners-scroll 80s linear infinite;
  }

  body.partners-page .partners-track img {
    height: 200px;
  }
}
