/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #ccc;
  background-color: #111;
  background-image: url('/images/background.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  line-height: 1.7;
  min-height: 100vh;
}

/* Dark overlay on background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 0;
}

/* ===== Layout ===== */
.site-wrapper {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* ===== Header ===== */
.site-header {
  margin-bottom: 3rem;
  text-align: center;
}

.site-title {
  font-size: 2.4rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-title a {
  color: #fff;
  text-decoration: none;
}

.site-title a:hover {
  color: #ddd;
}

.site-tagline {
  font-size: 0.9rem;
  color: #999;
  margin-top: 0.3rem;
  font-style: italic;
}

/* ===== Navigation ===== */
.site-nav {
  margin-top: 1.5rem;
}

.site-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem 1.5rem;
}

.site-nav a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0;
  transition: color 0.2s;
}

.site-nav a:hover,
.site-nav a.active {
  color: #fff;
}

/* ===== Main Content ===== */
.content {
  margin-bottom: 3rem;
}

/* ===== Page ===== */
.page-title {
  font-size: 1.6rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.page-content {
  color: #ccc;
}

.page-content p {
  margin-bottom: 1rem;
}

.page-content a {
  color: #8ab4f8;
  text-decoration: none;
}

.page-content a:hover {
  text-decoration: underline;
}

.page-content h2 {
  font-size: 1.3rem;
  font-weight: 400;
  color: #fff;
  margin: 2rem 0 0.8rem;
}

.page-content h3 {
  font-size: 1.1rem;
  font-weight: 400;
  color: #ddd;
  margin: 1.5rem 0 0.6rem;
}

.page-content ul, .page-content ol {
  margin: 0.5rem 0 1rem 1.5rem;
}

.page-content li {
  margin-bottom: 0.3rem;
}

.page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 2px;
  margin: 1rem 0;
}

.page-content blockquote {
  border-left: 3px solid #444;
  padding-left: 1rem;
  color: #999;
  margin: 1rem 0;
}

/* ===== Post List (Homepage) ===== */
.post-list {
  list-style: none;
}

.post-item {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #333;
}

.post-item:last-child {
  border-bottom: none;
}

.post-meta {
  font-size: 0.8rem;
  color: #777;
  margin-bottom: 0.4rem;
}

.post-meta .category {
  color: #8ab4f8;
}

.post-title {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
}

.post-title a {
  color: #fff;
  text-decoration: none;
}

.post-title a:hover {
  color: #8ab4f8;
}

.post-excerpt {
  color: #aaa;
  font-size: 0.95rem;
}

.post-excerpt a {
  color: #8ab4f8;
}

.read-more {
  display: inline-block;
  margin-top: 0.5rem;
  color: #8ab4f8;
  text-decoration: none;
  font-size: 0.85rem;
}

.read-more:hover {
  text-decoration: underline;
}

/* ===== Single Post ===== */
.post-header {
  margin-bottom: 1.5rem;
}

.post-header .post-title {
  font-size: 1.6rem;
  color: #fff;
}

.post-tags {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
  font-size: 0.8rem;
  color: #777;
}

.post-tags a {
  color: #8ab4f8;
  text-decoration: none;
}

.post-tags a:hover {
  text-decoration: underline;
}

.post-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
  font-size: 0.85rem;
}

.post-nav a {
  color: #8ab4f8;
  text-decoration: none;
}

.post-nav a:hover {
  text-decoration: underline;
}

/* ===== Sidebar ===== */
.sidebar {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #333;
}

.sidebar-section {
  margin-bottom: 2rem;
}

.sidebar-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #777;
  margin-bottom: 0.8rem;
}

.sidebar a {
  color: #8ab4f8;
  text-decoration: none;
  font-size: 0.9rem;
}

.sidebar a:hover {
  text-decoration: underline;
}

.sidebar ul {
  list-style: none;
}

.sidebar li {
  margin-bottom: 0.4rem;
}

/* ===== Embeds ===== */
.embed-container {
  margin: 1.5rem 0;
}

.embed-container iframe {
  max-width: 100%;
  border-radius: 4px;
}

/* Responsive YouTube/Video embed */
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 1.5rem 0;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 4px;
}

/* ===== Pagination ===== */
.pagination {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
}

.pagination a, .pagination span {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  color: #aaa;
  text-decoration: none;
  font-size: 0.9rem;
}

.pagination a:hover {
  color: #fff;
}

.pagination .active {
  color: #fff;
}

/* ===== Footer ===== */
.site-footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #333;
  text-align: center;
  font-size: 0.8rem;
  color: #555;
}

.site-footer a {
  color: #777;
  text-decoration: none;
}

.site-footer a:hover {
  color: #aaa;
}

/* ===== Press Page ===== */
.press-links {
  margin-top: 1rem;
}

.press-links a {
  display: inline-block;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  color: #8ab4f8;
  text-decoration: none;
  font-size: 0.9rem;
}

.press-links a:hover {
  background: rgba(255,255,255,0.15);
}

/* ===== Merch ===== */
.merch-image {
  max-width: 300px;
  border-radius: 4px;
  margin: 1rem 0;
}

/* ===== Discography ===== */
.discography-list {
  list-style: none;
}

.discography-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid #222;
  font-size: 0.95rem;
}

.discography-list .year {
  color: #777;
  margin-right: 0.5rem;
}

.discography-list a {
  color: #8ab4f8;
  text-decoration: none;
}

/* ===== Music Page Platform Links ===== */
.platform-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.platform-link {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.platform-link:hover {
  background: rgba(255,255,255,0.18);
  text-decoration: none;
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
  .site-wrapper {
    padding: 1rem;
  }

  .site-title {
    font-size: 1.8rem;
  }

  .site-nav ul {
    gap: 0.2rem 1rem;
  }

  .page-title, .post-header .post-title {
    font-size: 1.3rem;
  }

  .post-nav {
    flex-direction: column;
    gap: 0.5rem;
  }

  .platform-links {
    flex-direction: column;
  }
}
