/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #010042;                          /*????????????????????????????*/
  color: black;
  font-family: Sofia, sans-serif;
  text-align: center;
  background: #010042;                            /*????????????????????????????*/
  background: linear-gradient(0deg, rgba(1, 0, 66, 1) 0%, rgba(9, 9, 121, 1) 20%, rgba(0, 251, 255, 1) 100%);   /*????????????????????????????*/
}


/* This is for 3 Hero Images ⬇️ */

/*Unorganized Images

.hero-images {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.hero-images img {
  width: 30%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.hero-images img:hover {
  transform: scale(1.05);
}

*/

/* Or...*/

/* Three-column hero image layout */

.hero-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal-width columns */
  gap: 15px;
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.hero-images img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.hero-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Make it stack on mobile */
@media (max-width: 768px) {
  .hero-images {
    grid-template-columns: 1fr; /* stack images vertically */
  }
}
  
  


/* This is for fade in ⬇️ */

.fade-in {
  opacity: 0;
  animation: fadeIn 2s ease-in forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}



/*_____________________________________________________________________________________________________________________________________*/



.page-links {
  display: flex;          /* puts the buttons in a row */
  gap: 30px;              /* space between buttons */
  justify-content: center; /* centers them in the page */
  margin-top: 40px;
}

.page-button {
  padding: 12px 25px;
  background-color: #52f2a2;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 700;
  transition: background 0.3s ease, transform 0.2s ease;
}

.bage-button:hover {
  background-color: #366e38; /* hover color */
  transform: scale(1.05);    /* slight zoom on hover */
}
