/* 🎤 Spoken Word Splash Theme CSS */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@500&family=Share+Tech+Mono&display=swap');

/* Global Styles */
body {
  margin: 0;
  font-family: 'Roboto Slab', serif;
  background-color: #000000;
  color: #f0eae2;
  text-align: justify;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Title Styling */
h1, h2, .title {
  font-family: 'Share Tech Mono', monospace;
  color: #ff3d00;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2em;
  margin-bottom: 1em;
  text-shadow: 0 0 12px rgba(255, 61, 0, 0.6);
}

/* Spoken Word Container */
.scene {
  background-color: rgba(10, 10, 10, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 60px rgba(255, 61, 0, 0.2);
  padding: 2em;
  max-width: 760px;
  margin: 3em auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  animation: pulseGlow 8s ease-in-out infinite;
}

/* Glow Animation */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 60px rgba(255, 61, 0, 0.2); }
  50% { box-shadow: 0 0 100px rgba(255, 61, 0, 0.4); }
}

/* Text Box */
.scene-text {
  font-size: 1.2em;
  line-height: 1.8;
  background-color: rgba(20, 20, 20, 0.9);
  padding: 2em;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05);
  color: #f5f5f5;
  width: 100%;
  max-width: 640px;
  animation: flickerText 4s infinite;
}

/* Flicker Animation */
@keyframes flickerText {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.95; }
}

/* Image Frame */
.image-frame {
  width: 100%;
  max-width: 720px;
  height: 400px;
  overflow: hidden;
  background-color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2em 0;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 40px rgba(255, 61, 0, 0.3);
}

.image-frame img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 6px;
  filter: brightness(1.1) contrast(1.2);
}

/* Call to Action Button */
button {
  padding: 1em 2em;
  font-size: 1.1em;
  background: linear-gradient(145deg, #ff3d00, #b71c1c);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Roboto Slab', serif;
  text-transform: uppercase;
  box-shadow: 0 0 16px rgba(255, 61, 0, 0.5);
  transition: all 0.3s ease;
}

button:hover {
  background: linear-gradient(145deg, #b71c1c, #ff3d00);
  transform: scale(1.05);
  box-shadow: 0 0 24px rgba(255, 61, 0, 0.7);
}

/* Neon Text */
.neon {
  font-family: 'Share Tech Mono', monospace;
  font-size: 2em;
  color: #ff3d00;
  text-shadow:
    0 0 5px #ff3d00,
    0 0 10px #ff3d00,
    0 0 20px #ff3d00,
    0 0 40px #ff3d00;
  text-align: center;
  margin: 2em 0;
}

/* Responsive */
@media (max-width: 768px) {
  .scene {
    padding: 1em;
  }

  .scene-text {
    font-size: 1rem;
    padding: 1.5em;
  }

  .image-frame {
    height: auto;
    max-height: 50vh;
  }

  button {
    font-size: 1rem;
    padding: 0.8em 1.2em;
    width: 90%;
    max-width: 320px;
  }

  .neon {
    font-size: 1.5em;
  }
}
