/* Gibson Media - Ethan Gibson - MART 441  */

:root {
  --realm-accent: #c9a84c;
  --text-light: #f0e6d0;
}

#poster-stage {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  background: #000;
}

#bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

#realm-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.68) 100%);
  z-index: 1;
  pointer-events: none;
}

#shape-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.shape {
  position: absolute;
  display: none;
  border: 1.5px solid #c9a84c;
}

#content {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;
  width: 80%;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

#realm-label {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.45em;
  color: var(--realm-accent);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

#realm-name {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.12em;
  text-shadow: 0 0 40px rgba(201,168,76,0.35), 0 2px 10px rgba(0,0,0,0.9);
  line-height: 1.1;
  margin-bottom: 1rem;
}

#realm-desc {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  color: rgba(240, 230, 208, 0.9);
  line-height: 1.65;
  text-shadow: 0 1px 8px rgba(0,0,0,0.95);
  max-width: 580px;
}

#progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.08);
  z-index: 10;
}

#progress-fill {
  height: 100%;
  width: 0%;
  background: var(--realm-accent);
  transition: background 0.5s ease;
}

.footer-section {
  background-color: #1a1a1a;
  border-top: 2px solid #902102;
}

@media (max-width: 768px) {
  #realm-name { font-size: clamp(2rem, 8vw, 3rem); }
  #realm-desc { font-size: 0.95rem; }
}
