   @font-face {
  font-family: "girl";      /* name you choose */
  src: url("/fonts/GirlOnAnAlleyChmc-W7rV.ttf")       /* path to your .ttf file */
       format("truetype");           /* indicates TTF format */
  font-weight: normal;
  font-style: normal;
}


/* Global background */
body {
  margin: 0;
  font-family: Arial, sans-serif;

  background-color: #120000; /* dark night-like color */
  background-repeat: repeat;
  
    font-family: "girl"; /* inherited by <p> inside */
}

/* OUTER CONTAINER */
.page-container {
  width: 75%;
  margin: 0 auto; /* centers horizontally */
  margin-top: 2rem;
}

/* HERO / WALLPAPER BOX */
.hero {
  position: relative;
  height: 600px;

  background-image: url("");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  

}

/* Title centered over wallpaper */
.hero-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  color: white;
  font-size: 3rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  margin: 0;
}



/* MAIN covers 100% of the container */
.content {
  flex: 1;
  width: 100%;
  box-sizing: border-box;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center; /* centers children horizontally */
  background-color: #000000;
  color: #C71100;
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* Intro section */
.intro {
  text-align: center;
  margin-bottom: 40px;
}

.intro-img {
  max-width: 50%;
  width: 50%;
  height: auto;
  margin-bottom: 20px;
}

/* For small screens (phones) */
@media (max-width: 768px) {
  .intro-img {
    max-width: 80%;
    width: 80%;
  }
}

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

/* Grid items */
.grid-item {
  text-align: center;
}

/* Grid images */
.grid-item img {
  width: 100%;
  height: auto;
  max-width: 300px;
  display: block;
  margin: 0 auto;
}

/* Link box styling */
.link-box {
  background: white;             /* White background */
  width: 100%;                   /* Matches image container width */
  max-width: 300px;              /* Matches image max-width */
  margin: 10px auto 0;           /* Center under image */
  padding: 10px 0;                /* Optional spacing */
  box-sizing: border-box;
  border: 1px solid #ddd;        /* Optional border */
  margin-top: 0;
}

/* Link itself */
.link-box a {
  text-decoration: none;
  color: #333;
  font-size: 1.1rem;
  font-weight: bold;
  display: block;
}




  .arrow-link {
    position: fixed;      /* stays in place when scrolling */
    top: 50%;             /* vertical center */
    transform: translateY(-50%); /* truly center the arrow */
    font-size: 48px;      /* adjust size as needed */
    text-decoration: none;
    color: white;         /* visible on black background */
    padding: 10px;
    z-index: 1000;
    transition: color 0.2s;
  }

  .arrow-left {
    left: 10px;           /* distance from left edge */
  }

  .arrow-right {
    right: 10px;          /* distance from right edge */
  }

  .arrow-link:hover {
    color: #ccc;          /* lighter on hover */
  }






