/* ================================
   Theta Naught – Main Stylesheet
   Mobile-first, desktop-refined
   ================================ */

/* ================================
   Reset / Normalize
   ================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #000;
  color: #ccc;
  line-height: 1.6;
}

/* ================================
   Typography
   ================================ */

h1, h2, h3 {
  color: #fff;
  font-weight: normal;
  margin: 0 0 0.75rem 0;
  letter-spacing: 0.04em;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.4rem;
}

h3 {
  font-size: 1.1rem;
  color: #bbb;
}

p {
  margin: 0 0 1.25rem 0;
}

/* Limit readable line length */
.content p,
.site-header p {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

/* ================================
   Layout Containers
   ================================ */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.content {
  padding: 2.5rem 0;
  text-align: center;
}

/* ================================
   Header
   ================================ */

.site-header {
  text-align: center;
  padding: 2.5rem 1rem 2rem;
  border-bottom: 1px solid #222;
}

.site-header img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
.site-header p {
  font-size: 0.9rem;
  color: #999;
}

/* ================================
   Navigation
   ================================ */

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  background-color: #111;
  border-bottom: 1px solid #222;
}

.main-nav a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0;
}

.main-nav a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ================================
   Images
   ================================ */

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ================================
   Homepage Hero Section
   ================================ */

.hero {
  text-align: center;
  padding: 3rem 1rem;
  background-repeat: repeat;
  background-position: center;
}

.hero img {
  display: block;
  margin: 0 auto 1.5rem auto;
  max-width: 320px;
}

.hero h1 {
  margin-bottom: 1rem;
}

.hero p {
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}

/* Optional image constraints */

.media-item img {
  max-width: 240px;
  margin: 0 auto;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.media-item img:hover {
  transform: scale(1.03);
}

/* ================================
   Media / Album Grid
   ================================ */

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
  align-items: start;
}

.media-item {
  text-align: center;
}

/* ================================
   Footer
   ================================ */

.site-footer {
  border-top: 1px solid #222;
  padding: 1.5rem 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: #777;
}

/* ================================
   Links
   ================================ */

a {
  color: #aaa;
}

a:hover {
  color: #fff;
}

/* ================================
   Tablet Adjustments
   ================================ */

@media (min-width: 768px) {
  h1 {
    font-size: 2.4rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .content {
    padding: 3.5rem 0;
  }
}

/* ================================
   Desktop Refinement
   ================================ */

@media (min-width: 1024px) {
  body {
    font-size: 18px;
  }

  h1 {
    font-size: 2.6rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .site-header {
    padding: 3.5rem 1rem 3rem;
  }

  .main-nav {
    gap: 2rem;
  }

  .content {
    padding: 4rem 0;
  }
}

/* ================================
   Music Catalog Sections
   ================================ */

.catalog-section {
  margin-bottom: 4rem;
}

.catalog-header {
  margin-bottom: 2rem;
}

.catalog-description {
  max-width: 700px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: #999;
}

.media-item h3 {
  font-size: 1rem;
  margin: 0.75rem 0 0.25rem;
}

.release-meta {
  font-size: 0.8rem;
  color: #777;
  margin-bottom: 0.5rem;
}

/* ================================
   Bio Page – Member Lists
   ================================ */

.bio-list {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
/* Former members (emeriti and past members) */

.former-members {
  font-size: 0.85rem;
  color: #aaa;
}

.former-members h2,
.former-members h3 {
  font-size: 1rem;
  color: #ddd;
}



/* ================================
   Shows Page
   ================================ */

.shows-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.shows-list h2,
.shows-list h3 {
  text-align: left;
}

.shows-list p,
.shows-list ul,
.shows-list li {
  text-align: left;
  padding-left: 0;
}

/* ================================
   Follow / Listen Section
   ================================ */

.follow-section {
  margin-bottom: 3rem;
}

.follow-heading {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.follow-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.follow-links a {
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #444;
  padding-bottom: 0.2rem;
}

.follow-links a:hover {
  border-color: #fff;
}


.link-list {
  list-style: none;
  padding-left: 0;
  max-width: 800px;
  margin: 0 auto 2rem auto;
}

.link-list li {
  margin-bottom: 0.5rem;
  text-align: left;
}

@media (min-width: 768px) {
  .link-list li {
    font-size: 0.95rem;
  }
}



/* Desktop tightening */
@media (min-width: 1024px) {
  .media-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

