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

/* FULL PAGE BACKGROUND */
body {
  font-family: Arial, Helvetica, sans-serif;
  min-height: 100vh;
  background: url("pictures/stars.png")

}

/* WRAPPER */
.page-wrapper {
  width: 95%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  gap: 3vh;
}

/* TITLE */
.title {
  border: 3px solid #aaa;
  border-radius: 50px;
  padding: 2vh;
  text-align: center;
  background: rgba(0,0,0,0.6);
}

.title h1 {
  color: #ccc;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

/* MAIN CONTENT ROW */
.main-content {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 2vw;
  min-height: 40vh;
}

/* SIDE PANELS */
.side {
  flex: 0 0 15%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.side-box {
  width: 100%;
  height: 100%;
  border: 3px solid #aaa;
  border-radius: 30px;
  background: rgba(0,0,0,0.6);
  color: #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
  padding: 1rem;
}

/* CENTER IMAGE */
.image-container {
  flex: 1;
  border: 3px solid #aaa;
  border-radius: 40px;
  overflow: hidden;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* CTA BUTTON */
.cta-wrapper {
  display: flex;
  justify-content: center;
}

.cta-button {
  border: 3px solid #aaa;
  border-radius: 40px;
  padding: 1rem 2rem;
  text-decoration: none;
  color: #ccc;
  background: rgba(0,0,0,0.6);
  font-size: clamp(1rem, 2vw, 1.4rem);
  transition: 0.3s ease;
}

.cta-button:hover {
  background: rgba(255,255,255,0.1);
  transform: scale(1.05);
}

/* BOTTOM BUTTONS */
.bottom-buttons {
  display: flex;
  justify-content: space-between;
  gap: 2vw;
  padding: 0 5%;
}

.bottom-buttons button {
  flex: 1;
  max-width: 150px;
  height: 50px;
  border: 3px solid #aaa;
  border-radius: 20px;
  background: rgba(0,0,0,0.6);
  cursor: pointer;
  transition: 0.3s ease;
}

.bottom-buttons button:hover {
  background: rgba(255,255,255,0.1);
  transform: scale(1.05);
}

/* RESPONSIVE STACKING */
@media (max-width: 900px) {

  .main-content {
    flex-direction: column;
    align-items: center;
  }

  .side {
    flex: none;
    width: 60%;
    height: 120px;
  }

  .image-container {
    width: 100%;
    height: 300px;
  }

  .bottom-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .bottom-buttons button {
    flex: 0 1 40%;
  }
}
/* FORCE SHARP, THIN BLACK BORDERS EVERYWHERE */
.title,
.side-box,
.image-container,
.cta-button,
.bottom-buttons button {
  border: 1px solid #000;
  border-radius: 0;
}