/* =========================================================
   GLOBAL BASE THEME (LIGHT MODE)
   ========================================================= */
:root {
  --bg: #ffffff;
  --fg: #000000;
  --muted: #444444;
  --accent: #f5f5f5;
  --link: #000000;
  --sidebar-w: 180px;
  --maxw: 1100px;
}

/* Reset + base */
* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  line-height: 1.5;
}

a {
  color: var(--link);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* =========================================================
   LAYOUT
   ========================================================= */
.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  align-self: flex-start;
  height: 100vh;
  width: var(--sidebar-w);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  letter-spacing: .2px;
  border-right: 1px solid #e0e0e0;
}

/* =========================================================
   SIDEBAR CONTENT
   ========================================================= */
.brand {
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.nav a {
  font-weight: 600;
  color: #000;
}

/* =========================================================
   CONTENT AREA
   ========================================================= */
.content {
  flex: 1;
  min-width: 0;
  background: #ffffff;
  color: #000;
}

.header {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px 24px 0 24px;
  border-bottom: 1px solid #e0e0e0;
}

.name-block { margin: 0 0 18px 0; }

.name {
  font-family: 'Great Vibes', cursive;
  font-size: 28px;
  line-height: 1.1;
  margin: 0 0 8px 0;
  position: relative;
  display: inline-block;
}

/* ⭐ REMOVED BACKGROUND / NOISE BEHIND NAME */
/* .name::after { ... } has been fully deleted */

.address {
  margin: 0;
  color: var(--muted);
}

.page-title {
  font-size: 64px;
  line-height: 1;
  margin: 18px 0 24px 0;
  font-weight: 800;
}

/* ------------------------------------------------------------
   SOCIAL ICONS
------------------------------------------------------------ */
.socials {
  display: flex;
  gap: 18px;
  margin: 18px 0 6px;
  align-items: center;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.socials .ico {
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease, filter 0.2s ease;
}

/* Brand colors restored */
.yt .ico {
  color: #FF0000 !important;       /* YouTube red */
}

.sc .ico {
  color: #FF7700 !important;       /* SoundCloud orange */
}

.bc .ico {
  color: #1DA0C3 !important;       /* Bandcamp teal */
}

/* Hover effect — OPTION B (recommended)
   brighten + float upward */
.socials a:hover .ico {
  filter: brightness(1.35);
  transform: translateY(-4px);
}

/* =========================================================
   VIDEO THUMBNAIL
   ========================================================= */
.thumbnail-container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  justify-content: center;
}

.thumbnail {
  display: block;
  max-width: 720px;
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  border: 2px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: 0.3s ease;
}
.thumbnail:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 28px rgba(0,0,0,0.3);
}

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

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  display:flex;
  justify-content:center;
  align-items:center;
  transition: 0.3s;
}

.play-button::before {
  content:"";
  border-left: 30px solid #fff;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  margin-left: 8px;
}

.thumbnail:hover .play-button {
  background: rgba(255,0,0,0.8);
  transform: translate(-50%, -50%) scale(1.1);
}

/* =========================================================
   BODY TEXT
   ========================================================= */
.body-text {
  max-width: 640px;
  margin: 0 auto;
  padding: 16px 24px 72px 24px;
  color: #000;
  font-size: 18px;
  line-height: 1.75;
}

.body-text p { margin: 0 0 18px 0; }

.hl {
  background: linear-gradient(transparent 60%, rgba(255,200,120,0.35) 60%);
  padding: 0 .04em;
}

.pull-quote {
  margin: 28px auto;
  padding: 14px 16px;
  background: rgba(0,0,0,0.05);
  border-left: 6px solid #000;
  font-weight: 800;
  line-height: 1.35;
  max-width: 640px;
}

.pull-quote .hl {
  background: linear-gradient(transparent 55%, rgba(255,200,120,0.5) 55%);
}

p { line-height: 1.6; }

/* =========================================================
   MUSIC-VIDEO NOTICE
   ========================================================= */
.mv-notice {
  background: #ffffff;
  color: #111;
  border: 1px solid #ccc;
  padding: 12px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-radius: 12px;
  margin: 12px auto 18px;
  max-width: var(--maxw);
}

.mv-badge {
  font: 700 12px/1 Inter, system-ui, sans-serif;
  padding: 3px 8px;
  border: 1px solid currentColor;
  border-radius: 999px;
  white-space: nowrap;
}

.mv-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
}

.mv-text a {
  color: var(--link);
  text-decoration: underline;
}

.mv-close {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 2px 6px;
}

/* =========================================================
   ABOUT SECTION
   ========================================================= */
.about-section {
  background: #ffffff;
  color: #000;
  padding: 80px 0;
}

.about-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 24px 80px 24px;
}

.about-wrap h2 {
  margin: 12px 0 16px 0;
  font-size: 24px;
  font-weight: 800;
}

.about-body {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.8;
  font-size: 18px;
}

/* =========================================================
   ARTICLES
   ========================================================= */
.articles-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 24px 24px 96px;
}

.articles-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0 20px;
}

.pin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffd166;
  color: #000;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
}

.article-card {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #fafafa;
  border: 1px solid #ccc;
  border-radius: 10px;
}

.article-card a {
  font-weight: 700;
  color: #000;
  text-decoration: none;
}

.meta {
  font-size: 13px;
  color: #555;
}

.archive-link { margin-top: 16px; }

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px;
  border-top: 1px solid #ccc;
  color: #555;
}

/* =========================================================
   MOBILE (≤899px)
   ========================================================= */
@media (max-width: 899px) {

  .layout { flex-direction: column; }

  .sidebar {
    position: relative;
    height: auto;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    background: #ffffff !important;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .brand,
  .nav a {
    color: #000 !important;
  }
}

/* =========================================================
   DESKTOP (≥900px)
   ========================================================= */
@media (min-width: 900px) {

  .sidebar {
    background-color: transparent;
    border-right: none;

    background-image:
      linear-gradient(45deg, #000 25%, transparent 25%),
      linear-gradient(45deg, transparent 75%, #000 75%),
      linear-gradient(45deg, #000 25%, transparent 25%),
      linear-gradient(45deg, transparent 75%, #000 75%);
    background-size: 28px 28px;
    background-position: 0 0, 0 0, 14px 14px, 14px 14px;

    padding: 0;
  }

  .sidebar > * {
    background: #f5e8c8;
    padding: 24px 18px;
    border-left: 3px solid #000;
    border-bottom: 3px solid #000;
    margin: 0;
  }

  .brand,
  .nav a {
    color: #000000;
  }
}





