/* ============================================
   "Blueprint" Hero Pattern
   Shared by Timetable, Events, About pages
   Black bg → gold circles → SVG wave → white content
   ============================================ */

.blueprint-hero {
  position: relative;
  background: var(--color-bg-primary);
  overflow: hidden;
  padding: 160px 0 0;
  min-height: 500px;
}

/* Decorative gold circles */
.blueprint-hero__circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(193, 150, 53, 0.15);
  pointer-events: none;
}

.blueprint-hero__circle--1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -100px;
}

.blueprint-hero__circle--2 {
  width: 300px;
  height: 300px;
  bottom: 50px;
  right: 50px;
}

/* Content */
.blueprint-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container-medium);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.blueprint-hero__label {
  font-family: var(--font-nav);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.blueprint-hero__title {
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 400;
  font-size: 52px;
  color: var(--color-text-primary);
  line-height: 1.15;
  margin-bottom: 20px;
}

.blueprint-hero__title .gold {
  color: var(--color-gold);
}

.blueprint-hero__divider {
  width: 60px;
  height: 2px;
  background: var(--color-gold);
  margin-bottom: 20px;
}

.blueprint-hero__subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--color-text-secondary);
  max-width: 500px;
  line-height: 1.7;
  min-height: 55px;
}

/* SVG wave transition */
.blueprint-hero__curve {
  position: relative;
  z-index: 2;
  margin-top: 80px;
}

.blueprint-hero__curve svg {
  display: block;
  width: 100%;
  height: auto;
}

.blueprint-hero__curve .curve-gold {
  fill: var(--color-gold);
}

.blueprint-hero__curve .curve-white {
  fill: var(--color-bg-white);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .blueprint-hero {
    padding: 120px 0 0;
    min-height: 400px;
  }

  .blueprint-hero__title {
    font-size: 36px;
  }

  .blueprint-hero__circle--1 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -80px;
  }

  .blueprint-hero__circle--2 {
    width: 180px;
    height: 180px;
  }

  .blueprint-hero__curve {
    margin-top: 48px;
  }
}
