/* Von Harrington — shared styles (splash + hub) */
html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: #000 url("../images/stars.jpg") repeat;
  color: #e8e0ff;
  font-family: Georgia, "Times New Roman", serif;
}

body.splash {
  display: flex;
  align-items: center;
  justify-content: center;
}

body.splash p {
  margin: 0;
  text-align: center;
}

body.splash .enter-link {
  display: inline-block;
  padding: 2rem 3rem;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: #1a1030;
  border: 2px solid #6a5acd;
  border-radius: 6px;
  background: linear-gradient(180deg, #d4c4f0 0%, #9b7ed8 50%, #5c3d99 100%);
  box-shadow: 0 6px 24px rgba(106, 90, 205, 0.5);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

body.splash .enter-link:hover,
body.splash .enter-link:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(180, 160, 255, 0.6);
  color: #0d0820;
}

/* bienviendios.html — three-panel nav (replaces missing GIF/PNG buttons) */
body.hub {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  box-sizing: border-box;
}

.hub-title {
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: lowercase;
  margin: 0 0 2rem;
  opacity: 0.85;
}

.hub-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  align-items: stretch;
  max-width: 720px;
}

.hub-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #1a1030;
  font-weight: bold;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid #6a5acd;
  border-radius: 4px;
  background: linear-gradient(180deg, #d4c4f0 0%, #9b7ed8 45%, #5c3d99 100%);
  box-shadow: 0 4px 16px rgba(106, 90, 205, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.hub-nav a:hover,
.hub-nav a:focus {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(180, 160, 255, 0.55);
  filter: brightness(1.08);
  color: #0d0820;
}

.hub-nav .panel-collage {
  width: 158px;
  min-height: 400px;
}

.hub-nav .panel-video {
  width: 202px;
  min-height: 385px;
}

.hub-nav .panel-hire {
  width: 160px;
  min-height: 373px;
}

.hub-back {
  margin-top: 2.5rem;
  font-size: 0.9rem;
}

.hub-back a {
  color: #b8a8e8;
}

.hub-back a:hover {
  color: #fff;
}

@media (max-width: 640px) {
  .hub-nav {
    flex-direction: column;
    align-items: center;
  }
  .hub-nav a {
    width: min(202px, 85vw) !important;
    min-height: 120px !important;
  }
}
