/* ================================
   Global + Base
==================================*/

:root {
  --bg: #05010a;
  --bg-soft: #11081c;
  --accent: #ff4fa3;
  --accent-soft: #ffb6da;
  --text: #fdfdfd;
  --border: rgba(255,255,255,0.12);
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #251039, var(--bg));
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* ================================
   Header / Nav
==================================*/

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5,1,10,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.nav-links a {
  opacity: 0.85;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--accent-soft);
}

.nav-cta a {
  border-radius: 999px;
  border: 1px solid var(--accent);
  padding: 0.4rem 0.95rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-cta a:hover {
  background: var(--accent);
  color: #120213;
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }
}

/* ================================
   Layout / Sections / Cards
==================================*/

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.section {
  margin-top: 3rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.section-title {
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.section-sub {
  font-size: 0.86rem;
  opacity: 0.78;
}

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

.card {
  background: var(--bg-soft);
  border-radius: 1.4rem;
  border: 1px solid var(--border);
  padding: 1.3rem 1.4rem 1.5rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.92rem;
  opacity: 0.9;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.7rem;
}

.pill {
  font-size: 0.75rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  opacity: 0.95;
}

/* ================================
   Buttons
==================================*/

.btn {
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ffd36b);
  color: #1a051d;
  box-shadow: 0 14px 40px rgba(0,0,0,0.5);
}

.btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: var(--text);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-soft);
}

/* ================================
   Footer
==================================*/

footer {
  border-top: 1px solid var(--border);
  margin-top: 3rem;
  padding-top: 1.3rem;
  padding-bottom: 1.5rem;
  font-size: 0.78rem;
  opacity: 0.75;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
}

footer a:hover {
  color: var(--accent-soft);
}

/* ================================
   HOME / HERO (index.html)
==================================*/

.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
  }
}

.hero-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent-soft);
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.hero h1 span {
  color: var(--accent);
}

.hero-tagline {
  font-size: 1rem;
  opacity: 0.9;
  max-width: 32rem;
  margin-bottom: 1.1rem;
}

.hero-meta {
  font-size: 0.9rem;
  opacity: 0.85;
  max-width: 36rem;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.9rem;
  font-size: 0.82rem;
  opacity: 0.9;
}

.hero-social span {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.68rem;
  opacity: 0.7;
}

.hero-social a:hover {
  color: var(--accent-soft);
}

.hero-photo {
  position: relative;
  border-radius: 1.8rem;
  padding: 0.75rem;
  background: radial-gradient(circle at 10% 0, var(--accent), #140014 40%, #05010a 100%);
  overflow: hidden;
}

.hero-photo-inner {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.26);
  min-height: 300px;
  background: #16091f;
  display: flex;
  align-items: stretch;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  position: absolute;
  bottom: 1.4rem;
  left: 1.7rem;
  background: rgba(5,2,14,0.9);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 0.5rem 0.9rem;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(12px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #42ff89;
  box-shadow: 0 0 10px rgba(66,255,137,0.9);
}

/* MUSIC LINKS on home */

.music-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.8rem;
  margin-top: 0.9rem;
}

.music-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.86rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: #080311;
  opacity: 0.9;
}

.music-links a span:last-child {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.78;
}

.music-links a:hover {
  border-color: var(--accent);
  color: var(--accent-soft);
}

/* JOURNAL PREVIEW on home */

.journal-preview {
  margin-top: 3rem;
}

.journal-list {
  display: grid;
  gap: 1.2rem;
}

.journal-item {
  background: var(--bg-soft);
  border-radius: 1.2rem;
  border: 1px solid var(--border);
  padding: 1.1rem 1.25rem 1.3rem;
}

.journal-item h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.journal-item p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 0.6rem;
}

.journal-meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.7;
  margin-bottom: 0.35rem;
}

/* ================================
   Shared Typography Helpers
   (kicker, page-title, etc.)
==================================*/

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.75rem;
  color: var(--accent-soft);
  margin-bottom: 0.4rem;
}

.page-title {
  font-size: clamp(2rem, 3.1vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.page-sub {
  font-size: 0.96rem;
  opacity: 0.9;
  max-width: 36rem;
  margin-bottom: 2rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.7rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tag {
  font-size: 0.78rem;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  opacity: 0.9;
}

/* ================================
   About Page Layout (page.html)
==================================*/

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2.2rem;
  align-items: flex-start;
}

@media (max-width: 880px) {
  .page-layout {
    grid-template-columns: 1fr;
  }
}

.page-content h2 {
  margin-top: 1.8rem;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.page-content p {
  font-size: 0.98rem;
  opacity: 0.94;
  margin-bottom: 0.9rem;
}

.page-highlight {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border-radius: 1.1rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  font-size: 0.9rem;
}

.side-panel {
  position: sticky;
  top: 4.1rem;
}

/* Side cards / lists (shared with blog) */

.side-card {
  background: #090314;
  border-radius: 1.2rem;
  border: 1px solid var(--border);
  padding: 1.1rem 1.2rem 1.25rem;
  margin-bottom: 1.4rem;
  font-size: 0.88rem;
}

.side-card h3 {
  font-size: 0.96rem;
  margin-bottom: 0.4rem;
}

.side-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.side-list li {
  margin-bottom: 0.5rem;
}

.side-list span {
  display: block;
  font-size: 0.78rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.1rem;
}

/* ================================
   Blog Index (blog.html)
==================================*/

.blog-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 2rem;
}

@media (max-width: 880px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.posts {
  display: grid;
  gap: 1.4rem;
}

.post-card {
  background: var(--bg-soft);
  border-radius: 1.2rem;
  border: 1px solid var(--border);
  padding: 1.1rem 1.25rem 1.3rem;
}

.post-card h2 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.post-card p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 0.6rem;
}

.post-meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.7;
  margin-bottom: 0.4rem;
}

.sidebar {
  position: sticky;
  top: 4.1rem;
  align-self: flex-start;
}

.side-card p {
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.side-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0.4rem 0 0;
}

.side-card li {
  margin-bottom: 0.4rem;
}

.subscribe-email {
  width: 100%;
  padding: 0.45rem 0.6rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(255,255,255,0.24);
  background: #06010e;
  color: #fff;
  margin-bottom: 0.7rem;
  font-size: 0.86rem;
}

.subscribe-btn {
  width: 100%;
  padding: 0.55rem 0.6rem;
  border-radius: 0.7rem;
  border: none;
  background: linear-gradient(135deg, var(--accent), #ffd36b);
  color: #180414;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
}

/* ================================
   Article Page (article.html)
==================================*/

.meta-top {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.74rem;
  color: var(--accent-soft);
  margin-bottom: 0.6rem;
}

.article-title {
  font-size: clamp(2.1rem, 3vw, 2.4rem);
  margin-bottom: 0.4rem;
}

.article-meta {
  font-size: 0.82rem;
  opacity: 0.8;
  margin-bottom: 1.2rem;
}

.hero-note {
  font-size: 0.96rem;
  opacity: 0.92;
  margin-bottom: 1.6rem;
}

.article-body p {
  font-size: 0.98rem;
  opacity: 0.95;
  margin-bottom: 1rem;
}

.article-body h2,
.article-body h3 {
  margin: 1.8rem 0 0.7rem;
  font-size: 1.1rem;
}

.article-body blockquote {
  border-left: 3px solid rgba(255,255,255,0.5);
  padding-left: 0.9rem;
  margin: 1.2rem 0;
  font-style: italic;
  opacity: 0.96;
}

.tags-share {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.86rem;
}

.share-row a {
  margin-left: 0.4rem;
  font-size: 0.84rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.84rem;
  margin-top: 2.2rem;
}
#latest-news ul {
  display: grid;
  gap: 1rem;
  padding-left: 1.2rem;
}

#latest-news li {
  font-size: 1rem;
  opacity: 0.95;
}

#latest-news a {
  color: var(--accent-soft);
}
/* Latest news list – turns Markdown <ul><li> into cards */

.news-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.news-list li {
  background: var(--bg-soft);
  border-radius: 1.1rem;
  border: 1px solid var(--border);
  padding: 0.8rem 1rem;
  font-size: 0.92rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.news-list li p {
  margin: 0;
}

.news-list li p + p {
  margin-top: 0.35rem;
}

/* Make the link look like a badge/button */

.news-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.28);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.9;
}

/* Social “icon” badges based on URL domain */

.news-list a[href*="instagram.com"]::before {
  content: "IG";
  font-size: 0.7rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

.news-list a[href*="youtube.com"]::before,
.news-list a[href*="youtu.be"]::before {
  content: "YT";
  font-size: 0.7rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: #ff0000;
}

.news-list a[href*="twitter.com"]::before,
.news-list a[href*="x.com"]::before {
  content: "X";
  font-size: 0.7rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: #000;
}

.news-list a[href*="facebook.com"]::before {
  content: "FB";
  font-size: 0.7rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: #1877f2;
}

.news-list a[href*="http"]::before {
  /* fallback for generic links that aren't caught above */
  content: "Link";
  font-size: 0.7rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
}

/* Hover state */

.news-list a:hover {
  border-color: var(--accent);
  color: var(--accent-soft);
}
