/* =========================================================
   LIGA NACIONAL DE HOCKEY
   HOCKEYMX.IO

   styles.css · v2
   ========================================================= */


/* =========================================================
   RESET
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  background: #f3f3f3;
  color: #080808;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}


/* =========================================================
   HOCKEYMX.IO BRAND
   ========================================================= */

.brand-dot {
  color: #7C3AED;
}


/* =========================================================
   GENERAL CONTAINER
   ========================================================= */

.page-inner {
  width: min(
    1180px,
    calc(100% - 48px)
  );

  margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: absolute;

  z-index: 100;

  top: 0;
  left: 0;

  width: 100%;

  color: #ffffff;
}


.site-header__inner {

  width: min(
    1180px,
    calc(100% - 48px)
  );

  height: 86px;

  margin: 0 auto;

  display: flex;

  align-items: center;
  justify-content: space-between;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.18);
}


.site-brand {

  font-size: 12px;

  font-weight: 900;

  letter-spacing: 2.2px;

  text-decoration: none;
}


.site-nav {

  display: flex;

  align-items: center;

  gap: 34px;
}


.site-nav a {

  font-size: 9px;

  font-weight: 900;

  letter-spacing: 1.8px;

  text-decoration: none;

  transition:
    opacity 0.2s ease;
}


.site-nav a:hover {
  opacity: 0.65;
}



/* =========================================================
   HERO
   ========================================================= */

.lnh-hero {

  position: relative;

  min-height: 760px;

  background: #050505;

  color: #ffffff;

  overflow: hidden;
}



/* =========================================================
   HERO BACKGROUND
   ========================================================= */

.lnh-hero__background {

  position: absolute;

  inset: 0;
}


.lnh-hero__background img {

  width: 100%;

  height: 100%;

  display: block;

  object-fit: cover;

  object-position: center;
}



/* =========================================================
   HERO OVERLAY
   ========================================================= */

.lnh-hero__overlay {

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.84) 0%,
      rgba(0, 0, 0, 0.48) 42%,
      rgba(0, 0, 0, 0.12) 73%,
      rgba(0, 0, 0, 0.28) 100%
    );
}



/* =========================================================
   HERO CONTENT
   ========================================================= */

.lnh-hero__inner {

  position: relative;

  z-index: 2;

  min-height: 760px;

  padding-top: 130px;

  padding-bottom: 72px;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  align-items: flex-start;
}



/* =========================================================
   OFFICIAL LNH LOGO
   ========================================================= */

.lnh-hero__logo {

  width: 140px;

  height: 140px;

  margin-bottom: 28px;

  display: block;

  object-fit: contain;

  filter:
    drop-shadow(
      0 12px 30px
      rgba(0, 0, 0, 0.35)
    );
}



/* =========================================================
   EYEBROW
   ========================================================= */

.eyebrow {

  display: block;

  margin-bottom: 15px;

  font-size: 9px;

  font-weight: 900;

  letter-spacing: 2.8px;

  text-transform: uppercase;
}


.lnh-hero .eyebrow {

  color:
    rgba(255, 255, 255, 0.68);
}



/* =========================================================
   HERO TITLE
   ========================================================= */

.lnh-hero__content h1 {

  max-width: 900px;

  margin: 0;

  font-size:
    clamp(
      58px,
      8vw,
      112px
    );

  line-height: 0.84;

  font-weight: 900;

  letter-spacing: -6px;
}



/* =========================================================
   CONFERENCES
   ========================================================= */

.conferences {

  padding:
    110px
    0
    125px;
}



/* =========================================================
   SECTION HEADER
   ========================================================= */

.section-header {

  margin-bottom: 50px;
}


.section-header .eyebrow {

  color: #777777;
}


.section-header h2 {

  margin: 0;

  font-size:
    clamp(
      48px,
      6vw,
      80px
    );

  line-height: 0.90;

  font-weight: 900;

  letter-spacing: -4px;
}



/* =========================================================
   CONFERENCE GRID
   ========================================================= */

.conferences-grid {

  display: grid;

  grid-template-columns:
    repeat(
      2,
      minmax(0, 1fr)
    );

  gap: 16px;
}



/* =========================================================
   CONFERENCE CARD
   ========================================================= */

.conference-card {

  position: relative;

  min-height: 570px;

  padding: 30px;

  display: flex;

  flex-direction: column;

  overflow: hidden;

  border-radius: 24px;

  text-decoration: none;
}



/* =========================================================
   ACTIVE CONFERENCE
   ========================================================= */

.conference-card--active {

  background: #ffffff;

  color: #080808;

  border:
    1px solid #dddddd;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


.conference-card--active:hover {

  transform:
    translateY(-5px);

  box-shadow:
    0 24px 60px
    rgba(0, 0, 0, 0.10);
}



/* =========================================================
   COMING CONFERENCE
   ========================================================= */

.conference-card--coming {

  background: #e7e7e7;

  color: #969696;

  border:
    1px solid #dddddd;
}



/* =========================================================
   CARD TOP
   ========================================================= */

.conference-card__top {

  display: flex;

  align-items: center;

  justify-content: space-between;

  font-size: 8px;

  line-height: 1;

  font-weight: 900;

  letter-spacing: 2px;
}


.conference-code {

  color: #999999;
}



/* =========================================================
   CONFERENCE LOGO
   ========================================================= */

.conference-card__logo {

  height: 360px;

  padding: 32px;

  display: flex;

  align-items: center;

  justify-content: center;
}


.conference-card__logo img {

  width: auto;

  height: 100%;

  max-width: 100%;

  display: block;

  object-fit: contain;
}



/* =========================================================
   COMING SOON PLACEHOLDER
   ========================================================= */

.conference-card__placeholder {

  height: 360px;

  display: flex;

  align-items: center;

  justify-content: center;
}


.conference-card__placeholder span {

  font-size: 100px;

  line-height: 1;

  font-weight: 900;

  letter-spacing: -8px;

  opacity: 0.09;
}



/* =========================================================
   CARD BOTTOM
   ========================================================= */

.conference-card__bottom {

  margin-top: auto;

  padding-top: 25px;

  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 20px;

  border-top:
    1px solid rgba(0, 0, 0, 0.12);
}


.conference-card__label {

  display: block;

  margin-bottom: 7px;

  font-size: 8px;

  font-weight: 900;

  letter-spacing: 2px;

  color: #888888;
}


.conference-card h3 {

  margin: 0;

  font-size:
    clamp(
      34px,
      4vw,
      52px
    );

  line-height: 0.90;

  font-weight: 900;

  letter-spacing: -2.5px;
}


.conference-card__action {

  padding-bottom: 3px;

  flex-shrink: 0;

  font-size: 8px;

  font-weight: 900;

  letter-spacing: 1.7px;
}



/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {

  padding:
    48px
    0;

  background: #080808;

  color: #ffffff;
}


.site-footer__inner {

  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 40px;
}


.site-footer__brand {

  display: flex;

  flex-direction: column;

  gap: 10px;
}


.site-footer__brand strong {

  font-size: 13px;

  letter-spacing: 2px;
}


.site-footer__brand > span {

  font-size: 8px;

  font-weight: 900;

  letter-spacing: 2px;

  color: #888888;
}


.site-footer__link {

  font-size: 8px;

  font-weight: 900;

  letter-spacing: 2px;

  text-decoration: none;
}



/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 800px) {


  /* =======================================================
     CONTAINER
     ======================================================= */

  .page-inner,
  .site-header__inner {

    width:
      calc(100% - 30px);
  }



  /* =======================================================
     HEADER
     ======================================================= */

  .site-header__inner {

    height: 70px;
  }


  .site-nav {

    gap: 16px;
  }


  .site-nav a:first-child {

    display: none;
  }



  /* =======================================================
     HERO
     ======================================================= */

  .lnh-hero,
  .lnh-hero__inner {

    min-height: 690px;
  }


  .lnh-hero__background img {

    object-position: center;
  }


  .lnh-hero__overlay {

    background:
      linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.30) 62%,
        rgba(0, 0, 0, 0.20) 100%
      );
  }


  .lnh-hero__inner {

    padding-bottom: 44px;
  }


  .lnh-hero__logo {

    width: 105px;

    height: 105px;

    margin-bottom: 22px;
  }


  .lnh-hero__content h1 {

    font-size:
      clamp(
        52px,
        15vw,
        78px
      );

    line-height: 0.87;

    letter-spacing: -4px;
  }



  /* =======================================================
     CONFERENCES
     ======================================================= */

  .conferences {

    padding:
      75px
      0
      90px;
  }


  .section-header {

    margin-bottom: 35px;
  }


  .section-header h2 {

    font-size: 50px;

    letter-spacing: -3px;
  }



  /* =======================================================
     GRID
     ======================================================= */

  .conferences-grid {

    grid-template-columns:
      1fr;
  }



  /* =======================================================
     CARDS
     ======================================================= */

  .conference-card {

    min-height: 470px;

    padding: 24px;

    border-radius: 20px;
  }


  .conference-card__logo,
  .conference-card__placeholder {

    height: 300px;
  }


  .conference-card__logo {

    padding: 28px;
  }


  .conference-card h3 {

    font-size: 38px;
  }



  /* =======================================================
     FOOTER
     ======================================================= */

  .site-footer__inner {

    flex-direction: column;

    align-items: flex-start;

    gap: 25px;
  }

}