/* HazardSports Studio – studio.html only */

/* PAGE TITLE */
.studio-page-title {
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin-top: 3rem;
  font-size: 3rem;
  -webkit-text-stroke: 2px #000;
}

/* EDITABLE INTRO PARAGRAPH */
.studio-intro {
  max-width: 960px;
  margin: 1.5rem auto 0;
  padding: 1.25rem 1.5rem;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.6;
}

.studio-intro p {
  margin: 0;
}

/* SECTION BUTTONS */
.studio-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  text-align: center;
  margin-top: 2rem;
}

.studio-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #007bff;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-sizing: border-box;
  transition: background 0.3s ease;
}

.studio-button:hover {
  background-color: #0056b3;
}

.studio-button-black {
  background-color: #000;
  color: #fff;
}

.studio-button-black:hover {
  background-color: #222;
}

.studio-button-red {
  background-color: #c00;
  color: #fff;
}

.studio-button-red:hover {
  background-color: #900;
}

.studio-button-blue {
  background-color: #007bff;
  color: #fff;
}

.studio-button-blue:hover {
  background-color: #0056b3;
}

.studio-button-green {
  background-color: #28a745;
  color: #fff;
}

.studio-button-green:hover,
.studio-button-green:active,
.studio-button-green:focus-visible {
  background-color: #218838;
  box-shadow: 0 0 10px #28a745, 0 0 20px rgba(40, 167, 69, 0.65);
}

/* MOBILE */
@media (max-width: 600px) {
  .studio-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 0 1rem;
  }

  .studio-button {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  .studio-page-title {
    font-size: 2.25rem;
    margin-top: 2rem;
  }

  .studio-intro {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
