/* =============================
   FONTS
============================= */
@font-face {
  font-family: 'SuisseIntl Mono-Regular';
  src: url('./Fonts/SuisseIntlMono-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'SuisseIntl Mono-Bold';
  src: url('./Fonts/SuisseIntlMono-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}

/* =============================
   BASE
============================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'SuisseIntl Mono-Regular', sans-serif;
  background-color: #c1c1c100;
  color: #000;
  font-size: 11px;
  line-height: 1.3;
  margin: 0;
  padding-top: 11px;
  padding-bottom: 11px;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #c1c1c1;
  z-index: -2; /* 👈 debajo del hover-background */
}

b {
  font-family: 'SuisseIntl Mono-Bold', sans-serif;
  font-weight: normal;
}

/* =============================
   NAVIGATION
============================= */
.fixed-nav {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 10px);
  padding-left: 10px;
  padding-right: 10px;
  font-size: 11px;
  z-index: 1000;
}

.fixed-nav .left,
.fixed-nav .right {
  display: flex;
  flex-direction: column;
  gap: 2px;
  white-space: nowrap;
}

.fixed-nav .right {
  text-align: right;
  align-items: flex-end;
}

.fixed-nav u {
  text-decoration: underline;
  color: white;
  cursor: pointer;
}

/* =============================
   STRUCTURE
============================= */
.intro-block,
.column-grid,
.centered {
  width: calc(100% - 10px);
  margin: 0 auto;
  padding-left: 10px;
  padding-right: px;
}

.centered {
  text-align: center;
  padding-top: 60px;
}

h1.centered {
  text-align: center;
  margin: 30px 0;
  line-height: 1.4;
  font-size: 11px;
  font-weight: normal;
}

/* =============================
   TEXT BLOCKS
============================= */

.intro-paragraph {
  padding-left: 30px;
  padding-right: 30px;
  text-align: center;
  margin: 0 auto;
  padding-left: 300px;
  padding-right: 300px;
}

.column-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding-top: 40px;
  padding-bottom: 60px;
  align-items: flex-start;
}

.column p {
  margin-bottom: 15px;
  line-height: 1.3;
}

.column p.centered {
  text-align: center;
}

.column.right-align p {
  text-align: right;
  padding-right: 10px;
}

.spacer-sm { height: 17rem; }
.spacer-smcat { height: 10rem; }
.spacer-md { height: 15rem; }
.spacer-lg { height: 5rem; }
.spacer-xl { height: 5rem; }

/* =============================
   HOVER EFFECTS
============================= */
.hover-trigger {
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.hover-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.texture-canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}

/* --------
mobile 
-------- */

@media (max-width: 768px) {

  .fixed-nav {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 10px);
  padding-left: 10px;
  padding-right: 10px;
  font-size: 11px;
  z-index: 1000;
}

.fixed-nav .left,
.fixed-nav .right {
  display: flex;
  flex-direction: column;
  gap: 2px;
  white-space: nowrap;
}

.fixed-nav .right {
  text-align: right;
  align-items: flex-end;
}

.intro-paragraph {
  text-align: center;
  margin: 0 auto;
  padding:0px;
  padding-left: 0px;
  padding-right: 0px;
}

.fixed-nav u {
  text-decoration: underline;
  color: white;
  cursor: pointer;
}
  .intro-block {
    padding: 1rem;
    text-align: center;

  }

  h1.centered, .centered {
    text-align: center;
    padding: 5px;
    margin: 0px 0;
    padding-left: 50px;
    padding-right: 50px;
    font-size: 10px;
    line-height: 1.3;
  }

  body {
  font-family: 'SuisseIntl Mono-Regular', sans-serif;
  background-color: #c1c1c100;
  color: #000;
  font-size: 10px;
  line-height: 1.3;
  margin: 0;
  padding-top: 7px;
  padding-bottom: 11px;
  padding: 5px;
}

  .column-grid {
    display: flex;
    text-align: center;
    flex-direction: column;
    gap: 2rem;

  }

  .column,
  .column.right-align {
    width: 100%;
    text-align: center;
  }

  .column.right-align p {
  text-align: center;
  padding-right: 0;
}

  .hover-trigger {
    display: inline-block;
    margin-bottom: 0;
  }

  .hover-background,
  .texture-canvas {
    display: none !important;
  }

  .spacer-sm { height: 20rem; }
  .spacer-md { height: 10rem; }
  .spacer-lg { height: 7rem; }
  .spacer-xl { height: 6rem; }

}

