@font-face {
  font-family: 'Agave';
  src:  url('../assets/fonts/agavewebfont.woff2') format('woff2'),
        url('../assets/fonts/agavewebfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'EditorialNew'; 
  font-style: normal;
  font-weight: normal;
  src: url(https://fonts.clig.dev/EditorialNew-Regular.woff2) format('woff2');
}

html {
  font-size: 72.5%;
  font-family: Agave;
}

body {
  font-size: 1.8rem;
  line-height: 1.618;
  width: 90%;
  max-width: 50em;
  margin: auto;
  color: #ffffff;
  background-color: #000000;
  padding: 13px;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.1;
  font-family: EditorialNew;
  font-weight: 500;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-word;
}

h1 {
  font-size: clamp(2rem, 10vw, 8rem);
  color: #ffffff;
  text-shadow:
  -1.5em -0.5em 0 #ffffffaa,
  1.5em 0.5em 0 #ffffffaa;
  position: relative;
  margin: 0 auto;
  display: flex;
  height: 30vh;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  padding: 0.5em 0 0;
  text-align: center;
  line-height: 1;
  letter-spacing: -0.02em;
  max-width: 6em;
}

#special {
  position: relative;
  height: 5vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  text-align: center;
  font-size: 3vw;
  line-height: 1;
  letter-spacing: -0.02em;
  max-width: 25em;
}

h2 {
  font-size: 2em;
}

p {
  margin-top: 0px;
  margin-bottom: 2.5rem;
}

.card p {
  margin-bottom: 0;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    margin-bottom: 0;
}

.crop {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 4px;
}

.crop img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill; /* Ensures the image covers the area without stretching */
    transition: transform 0.2s ease;
}

.crop:hover img {
  transform: scale(1.05);
}

.card {
  padding: 50px 50px;
  background-color: #000000;
  border-radius: 8px;
  width: 80%;
  border: 1px solid #ffffff;
  margin: 0 auto 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: scale(1.005);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card h3 {
  margin-top: 0;
}

.checker {
  width: 100%;
  height: 20px;
  background: repeating-conic-gradient(
    #fff 0% 25%, 
    #000 0% 50%
  ) 0 0 / 8px 8px;
}

.checker-bar {
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}

.checker-bar::before,
.checker-bar::after {
  content: "";
  flex: 1;
  height: 20px;
  background: repeating-conic-gradient(
    #fff 0% 25%, 
    #000 0% 50%
  ) 0 0 / 8px 8px;
  margin: 0 10px; /* spacing between text and bar */
}

.container {
  display: flex;
  gap: 20px; /* Add some space between the columns */
}

.left {
  flex: 1; /* Take up 1 part of the available space */
}

.right {
  flex: 2; /* Take up 2 parts of the available space, making it wider */
}

/* Static Effect */

.full-width { 
    margin: 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    background: black;
    padding: 0;
}
