@import url('https://fonts.googleapis.com/css2?family=Special+Elite&family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
  --color-accent: #4A4A4A;
  --color-grey-light: #D0D0D0;
  --color-dark-black: #000000;
  --color-black: #0A0A0A;
  --color-grey-medium: #666666;
  --color-grey-background: #0F0F0F;
  --color-grey-background-light: #1A1A1A;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
  background-color: var(--color-grey-background);
  color: var(--color-grey-light);
  font-family: 'Courier Prime', 'Courier New', monospace;
  line-height: 1.7;
  letter-spacing: 0.5px;
}

body {
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Special Elite', 'Courier New', monospace;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

main {
  min-height: calc(100vh - 200px);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.hero {
  text-align: center;
  padding: 4rem 0 6rem;
  border-bottom: 1px solid var(--color-accent);
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-image {
  max-width: 40%;
  height: auto;
  max-height: 450px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

.hero-bio {
  font-size: 0.85rem;
  color: var(--color-grey-light);
  text-align: left;
  flex: 1;
  max-width: 300px;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

.hero-bio-left {
  text-align: right;
}

.hero-bio-right {
  text-align: left;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.section {
  width: 100%;
}

.section-title {
  font-size: 2rem;
  color: var(--color-grey-light);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.featured-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.placeholder-image {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, var(--color-grey-background-light) 0%, var(--color-dark-black) 100%);
  opacity: 0.5;
  border: 1px solid var(--color-accent);
  position: relative;
}

.placeholder-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(0, 0, 0, 0.1) 10px,
      rgba(0, 0, 0, 0.1) 20px
    );
}

.featured-text {
  font-size: 1.1rem;
  color: var(--color-grey-light);
  font-style: italic;
}

.news-preview {
  padding: 2rem;
  background-color: var(--color-grey-background-light);
  border-left: 3px solid var(--color-accent);
}

.news-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-grey-light);
}

.header {
  text-align: center;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-accent);
}

.header .title {
  font-size: 3rem;
  font-weight: 400;
  color: var(--color-grey-light);
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.header .subtitle {
  font-size: 1.2rem;
  color: var(--color-grey-medium);
  font-style: italic;
}

/* Roys Open Mic Banner */
.roys-banner {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(15, 15, 15, 0.95) 100%);
  border: 1px solid rgba(204, 0, 80, 0.25);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin: 2rem auto;
  max-width: 900px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 0 12px rgba(204, 0, 80, 0.08);
  text-align: center;
  display: block;
  position: relative;
  overflow: hidden;
}

.roys-banner-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  width: 100%;
  cursor: pointer;
}

.roys-banner-title {
  font-size: 1.2rem;
  color: #CC0050;
  text-shadow: 0 0 15px rgba(204, 0, 80, 0.3), 0 0 25px rgba(160, 0, 100, 0.2);
  animation: festiveGlow 3s ease-in-out infinite;
  margin-bottom: 0.5rem;
  font-family: 'Special Elite', 'Courier New', monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  pointer-events: none;
}

.roys-banner-subtitle {
  font-size: 0.9rem;
  color: var(--color-grey-light);
  text-shadow: 0 0 8px rgba(204, 0, 80, 0.2);
  font-family: 'Courier Prime', 'Courier New', monospace;
  display: block;
  pointer-events: none;
}

@keyframes festiveGlow {
  0%, 100% {
    text-shadow: 0 0 15px rgba(204, 0, 80, 0.3), 0 0 25px rgba(160, 0, 100, 0.2);
  }
  50% {
    text-shadow: 0 0 20px rgba(204, 0, 80, 0.4), 0 0 30px rgba(160, 0, 100, 0.3), 0 0 40px rgba(184, 61, 107, 0.2);
  }
}

.roys-banner-link:hover {
  opacity: 1;
}

.roys-banner-link:hover .roys-banner-title {
  color: #CC3D75;
  text-shadow: 0 0 20px rgba(204, 0, 80, 0.4), 0 0 30px rgba(160, 0, 100, 0.3), 0 0 40px rgba(184, 61, 107, 0.2);
}

@media (max-width: 768px) {
  .container {
    padding: 2rem 1rem;
  }

  .hero {
    padding: 2rem 0 4rem;
  }

  .hero-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-image {
    max-width: 85%;
    max-height: 300px;
  }

  .hero-bio {
    font-size: 0.75rem;
    max-width: 100%;
    text-align: center;
  }

  .hero-bio-left,
  .hero-bio-right {
    text-align: center;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .header .title {
    font-size: 2rem;
  }

  .roys-banner {
    padding: 1rem;
    margin: 1.5rem auto;
    width: calc(100% - 2rem);
    max-width: 100%;
    display: block;
  }

  .roys-banner-link {
    display: block;
    width: 100%;
  }

  .roys-banner-title {
    font-size: 1.1rem;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .roys-banner-subtitle {
    font-size: 0.85rem;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

