/* This is the master CSS file for all sections of the website */

/* ---------- GLOBAL STYLES ---------- */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #fafafa;
  color: #222;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ---------- FONT IMPORT ---------- */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 300 500;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 300 500;
  font-style: italic;
}

/* ---------- NAVIGATION ---------- */
nav {
  padding: 2rem 1rem 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  display: flex;
  gap: 1.75rem;
  justify-content: center;
}

nav a {
  color: #444;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

nav a:hover {
  opacity: 0.6;
}

/* ---------- HOME BLURB ---------- */
.blurb {
  max-width: 400px;
  margin: 4rem auto 2rem auto;
  text-align: center;
}

.blurb p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #666;
}

.social-link {
  font-size: 0.85rem;
  color: #666;
}

.social-link a {
  color: #666;
  text-decoration: none;
  border-bottom: 1px dotted #ccc;
}

.social-link a:hover {
  color: #222;
  border-bottom: 1px solid #666;
}

.copyright {
  font-size: 0.7rem;
  color: #999;
  margin-top: 1.5rem;
}

/* ---------- HERO IMAGE ---------- */
.hero {
  width: 100%;
  max-width: 400px;
  height: auto;
  max-height: 300px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem auto 3rem;
  padding: 0 1rem;
}

.hero img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
  display: block;
}

/* ---------- GALLERY (shared) ---------- */
.image-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
}

.image-gallery img {
  width: 150px;
  height: auto;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.image-gallery img:hover {
  transform: scale(1.1);
}

/* ---------- GENRE BUTTONS ---------- */
.genres {
  text-align: center;
  margin: 2rem 0;
}

.genres button {
  background-color: transparent;
  border: 2px solid #444;
  color: #444;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  margin: 0.5rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.genres button:hover {
  background-color: #444;
  color: white;
}

.empty-state {
  text-align: center;
  color: #aaa;
  font-size: 0.9rem;
  margin: 3rem 0;
  font-style: italic;
}

/* Better mobile image viewing */
@media (max-width: 640px) {
  .modal-content {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
  }
  
  .thumbnail {
    image-rendering: auto;
    width: 150px;
    height: auto;
  }
}

/* ---------- MODAL (base) ---------- */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#modalCaption {
  color: #cccccc;
  text-align: center;
  font-size: 1rem;
  padding: 1rem;
  opacity: 0.9;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #444;
  font-size: 36px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  transition: color 0.3s ease;
}

.close:hover {
  color: #000;
}

/* ---------- STORY SECTION ---------- */
.story-item {
  margin: 1rem;
  text-align: center;
  width: 200px;
}

.story-item img {
  width: 100%;
  height: auto;
  cursor: pointer;
  border-radius: 8px;
  transition: border 0.3s ease;
}

.story-item img:hover {
  border: 2px solid #444;
}

.story-item figcaption {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #555;
}

#storyModal .modal-content {
  max-width: 90%;
  max-height: 80vh;
  margin-bottom: 1rem;
}

#storyViewer {
  position: relative;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#storyTitle {
  color: #222;
  font-size: 1.8rem;
  font-weight: 400;
  margin: 1rem 0 0.5rem;
  text-align: center;
}

#storyCaption {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-align: center;
  max-width: 600px;
}

#storyModal .close {
  color: #444;
}

/* ---------- POEMS SECTION ---------- */
.poems-blurb {
  max-width: 400px;
  margin: 2rem auto 1rem;
  padding: 0 1rem;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #666;
}

.poem-item {
  margin: 1rem;
  text-align: center;
  width: 200px;
}

.poem-item img {
  width: 100%;
  height: auto;
  cursor: pointer;
  border-radius: 8px;
  transition: border 0.3s ease;
}

.poem-item img:hover {
  border: 2px solid #444;
}

.poem-item figcaption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #555;
}

.poem-layer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(600px, 80vw);
  height: min(800px, 70vh);
  margin: 0 auto;
}

.poem-content {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  background-color: transparent;
}

.poem-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin: 1.5rem 0;
  width: 100%;
}

.nav-btn {
  background: #f0f0f0;
  border: 2px solid #222;
  color: #222;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  border-radius: 8px;
  min-width: 60px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
}

.nav-btn:hover {
  background: #222;
  color: white;
}

#pageIndicator {
  color: #444;
  font-size: 0.9rem;
  font-weight: normal;
}

.poem-text {
  text-align: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0.5rem;
}

#poemTitle {
  font-size: 1.1rem;
  margin: 0.5rem 0 0.2rem;
  color: #222;
}

#poemCaption {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.back-btn {
  background: transparent;
  border: none;
  color: #666;
  font-size: 0.9rem;
  margin: 0 auto 1rem;
  display: block;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 4px;
}

.back-btn:hover {
  color: #222;
}

.swipe-hint {
  position: absolute;
  bottom: 120px;
  right: 20px;
  color: #666;
  font-size: 0.9rem;
  padding: 0.8rem 1.2rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  opacity: 0.95;
  animation: fadeOut 8s forwards;
  z-index: 1002;
  pointer-events: none;
  max-width: 250px;
  text-align: center;
  line-height: 1.4;
}

@keyframes fadeOut {
  0% { opacity: 0.95; }
  70% { opacity: 0.95; }
  90% { opacity: 0.3; }
  100% { opacity: 0; display: none; }
}

@media (max-width: 640px) {
  .swipe-hint {
    bottom: 100px;
    right: 10px;
    left: 10px;
    max-width: none;
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 640px) {
  nav {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .image-gallery {
    gap: 0.5rem;
  }

  .image-gallery img {
    width: 120px;
  }

  .poem-layer {
    width: 95vw;
    height: 70vh;
  }

  .poem-controls {
    gap: 1rem;
    margin: 1rem 0;
  }

  .nav-btn {
    font-size: 1.2rem;
    padding: 0.4rem 1rem;
    min-width: 40px;
  }

  #pageIndicator {
    font-size: 0.8rem;
  }

  #poemTitle {
    font-size: 1rem;
  }

  #poemCaption {
    font-size: 0.8rem;
  }

  .story-item {
    width: 140px;
  }
}

/* ---------- PHOTOS SECTION ---------- */
.photos-blurb {
  max-width: 400px;
  margin: 2rem auto 1rem;
  padding: 0 1rem;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #666;
}

.photo-layer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(800px, 90vw);
  height: min(600px, 80vh);
  margin: 0 auto;
}

.photo-content {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ---------- FOOD SECTION ---------- */
.food-blurb {
  max-width: 400px;
  margin: 2rem auto 1rem;
  padding: 0 1rem;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #666;
}

.food-item {
  margin: 1rem;
  text-align: center;
  width: 200px;
}

.food-item img {
  width: 100%;
  height: auto;
  cursor: pointer;
  border-radius: 8px;
  transition: border 0.3s ease;
}

.food-item img:hover {
  border: 2px solid #444;
}

.food-item figcaption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #555;
}

.food-layer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(600px, 80vw);
  height: min(800px, 70vh);
  margin: 0 auto;
}

.food-content {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  background-color: transparent;
}

.food-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin: 1.5rem 0;
  width: 100%;
}

.food-text {
  text-align: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0.5rem;
}

#foodTitle {
  font-size: 1.1rem;
  margin: 0.5rem 0 0.2rem;
  color: #222;
}

#foodCaption {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* Blog feed styling */
.blog-entry {
  max-width: 500px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.blog-date {
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.blog-preview {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 0.5rem;
}

.blog-link {
  font-size: 0.9rem;
  color: #666;
  text-decoration: none;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 1px;
}

.blog-link:hover {
  color: #222;
  border-bottom: 1px solid #666;
}

/* Small decorative mark or signature on homepage */
.site-mark {
  position: absolute;
  top: 10px;
  left: 100px;
  width: 150px;
  height: auto;
  z-index: 10;
}

/* Mobile adjustment for signature */
@media (max-width: 640px) {
  .site-mark {
    left: 5px;
    width: 50px;
    top: 5px;
  }
}

.copyright {
  display: block;
  margin-top: 2rem;
  font-size: 0.7rem;
  color: #999;
}


/* Blog feed styling - properly centered */
.blog-entry {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding: 0 1rem;
  text-align: left;  /* Keeps text left-aligned inside */
  width: 100%;
  box-sizing: border-box;
}

/* Ensure hero image also centered */
.hero {
  margin-left: auto;
  margin-right: auto;
}

/* Force copyright to stay centered */
.copyright {
  display: block;
  margin-top: 2rem;
  font-size: 0.7rem;
  color: #999;
  text-align: center !important;  /* Override any other text-align */
}

/* Make sure blurb stays centered on mobile */
@media (max-width: 640px) {
  .blurb {
    text-align: center !important;
  }
  
  .blurb p {
    text-align: center !important;
  }
  
  .copyright {
    text-align: center !important;
  }
}

/* Songs grid items */
.song-item {
  margin: 1rem;
  text-align: center;
  width: 200px;
}

.song-item img {
  width: 100%;
  height: auto;
  cursor: pointer;
  border-radius: 8px;
  transition: border 0.3s ease;
}

.song-item img:hover {
  border: 2px solid #444;
}

.song-item figcaption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #555;
}

/* Songs modal */
.song-modal-content {
  max-width: 90%;
  max-height: 80vh;
  text-align: center;
}

.song-cover {
  max-width: 300px;
  margin: 1rem auto;
  display: block;
  border-radius: 8px;
}

.song-player {
  width: 100%;
  max-width: 400px;
  margin: 1rem auto;
  display: block;
}

.song-caption {
  color: #666;
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

.song-poem-link {
  color: #999;
  text-decoration: none;
  font-size: 0.8rem;
  border-bottom: 1px dotted #ccc;
}

.song-poem-link:hover {
  color: #444;
}

/* Songs standalone page */
.songs-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.songs-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 3rem;
  color: #222;
}

.songs-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.song-card {
  text-align: center;
  width: 250px;
  padding: 1rem;
}

.song-cover {
  width: 100%;
  max-width: 200px;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.song-name {
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0.5rem 0 0.2rem;
  color: #222;
}

.song-caption {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1rem;
}

.song-audio {
  width: 100%;
  margin-top: 0.5rem;
}

@media (max-width: 640px) {
  .songs-grid {
    gap: 1.5rem;
  }
  
  .song-card {
    width: 100%;
    max-width: 300px;
  }
}

.songs-credit {
  text-align: center;
  font-size: 0.75rem;
  color: #999;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

/* Songs card - overlay only on image + title area */
.song-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

.overlay-trigger {
  position: relative;
  cursor: pointer;
}

.card-back {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  background: rgba(0, 0, 0, 0.9);
  color: #eee;
  border-radius: 8px;
  padding: 1rem;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 5;
  text-align: center;
}

/* Hover box refinements */
.card-back {
  width: 50%;           /* you already have this */
  background: rgba(40, 40, 40, 0.95);  /* one shade lighter than black */
  padding: 0.75rem;     /* less internal spacing */
}

.card-back .hover-text {
  font-size: 0.7rem;    /* smaller text */
  line-height: 1.3;     /* tighter line spacing */
  margin: 0;
}

/* Optional: even smaller on mobile */
@media (max-width: 640px) {
  .card-back {
    padding: 0.5rem;
  }
  .card-back .hover-text {
    font-size: 0.6rem;
    line-height: 1.2;
  }
}
.overlay-trigger:hover .card-back,
.overlay-trigger.active .card-back {
  opacity: 1;
}

.song-audio {
  margin-top: 0.75rem;
  z-index: 2;
  position: relative;
}

/* Mobile hint */
@media (max-width: 768px) {
  .overlay-trigger::after {
    content: "ⓘ tap for more";
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.6);
    color: #ccc;
    font-size: 0.6rem;
    padding: 4px 8px;
    border-radius: 20px;
    opacity: 0.7;
    pointer-events: none;
    z-index: 6;
  }
}

/*footer sytling*/

footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.7rem;       /* smaller than before */
  color: #999;             /* lighter than before (#777 was darker) */
}



/* added style for main page invitation to /songs*/
.lead-link, .whisper, .invite {
  text-align: center;
  font-size: 0.8rem;
  margin: 1rem auto 2rem auto;
  color: #666;
}

.lead-link a, .whisper a, .invite a {
  color: #444;
  text-decoration: none;
  border-bottom: 1px dotted #ccc;
}

.lead-link a:hover, .whisper a:hover, .invite a:hover {
  color: #222;
  border-bottom: 1px solid #666;
}

.invite {
  text-align: center;
  font-size: 0.8rem;
  margin: 1rem auto 2rem auto;
  color: #666;
}

.invite a {
  color: #666;              /* match the surrounding text */
  text-decoration: none;    /* remove default underline */
  border-bottom: 1px dotted #ccc;
}

.invite a:hover {
  color: #222;
  border-bottom: 1px solid #666;
}

/* New homepage showcase styles */

.home-header {
  text-align: center;
  padding: 4rem 1rem 2rem;
}

.home-title {
  font-size: 2rem;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.02em;
}

.home-tagline {
  font-size: 0.8rem;
  color: #888;
  margin-top: 0.5rem;
}

.section-headline {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #666;
  margin: 2rem 0 1.5rem;
  text-transform: lowercase;
}

.featured-video {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}


.video-wrapper {
  max-width: 300px; /* adjust size */
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
}

lite-youtube {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.video-caption {
  text-align: center;
  font-size: 0.7rem;
  color: #999;
  margin-top: 0.75rem;
}

.reels-section, .songs-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.reel-card video {
  width: 100%;
  border-radius: 8px;
  background: #000;
}

.songs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

.song-card {
  text-align: center;
}

.song-cover {
  width: 100%;
  max-width: 180px;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.song-title {
  font-size: 0.75rem;    /* match your unified size */
  font-weight: 400;
  letter-spacing: 0.05em; /* optional, adds consistency */
  margin: 0.5rem 0;
  color: #888;           /* softer, matches taglines */
  text-transform: lowercase;
}

.song-audio {
  width: 100%;
}

.latest-poem {
  text-align: center;
  margin: 3rem auto 2rem;
}

.poem-whisper {
  font-size: 0.8rem;
  color: #888;
}

.poem-whisper a {
  color: #666;
  text-decoration: none;
  border-bottom: 1px dotted #ccc;
}

.poem-whisper a:hover {
  color: #222;
  border-bottom: 1px solid #666;
}

@media (max-width: 640px) {
  .reels-grid, .songs-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}


/* Section spacing */
.featured-video,
.reels-section,
.songs-section {
  max-width: 800px;
  margin: 0 auto 4rem auto;  /* 4rem bottom margin for breathing room */
  padding: 0 1rem;
}

.section-headline {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #999;
  margin-bottom: 1.5rem;
  text-transform: lowercase;
}

/* Last section needs less bottom margin */
.songs-section {
  margin-bottom: 2rem;
}

.site-name {
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 0.25rem;
}

.site-tagline {
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 0.5rem;
}

.site-ig {
  font-size: 0.7rem;
  color: #aaa;
}

.site-ig a {
  color: #aaa;
  text-decoration: none;
  border-bottom: 1px dotted #ccc;
}

.site-ig a:hover {
  color: #666;
}

/* for youtube lite */
.video-wrapper {
  max-width: 100%;
}

lite-youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
}
.video-wrapper {
  max-width: 300px; /* change this number */
  margin: 0 auto;  /* centers video */
}

.cinematic-tagline {
  font-size: 0.7rem;
  color: #999;
  text-align: center;
  letter-spacing: 0.05em;
}

/* for new youtube videos and shorts grid/
/* added May 31-2026 /
/* 4-column layout: 2 video columns, 2 shorts columns */
.video-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.video-block {
  flex: 1 1 calc(50% - 2.5rem);
  min-width: 250px;
  padding: 0 1rem;
  box-sizing: border-box;  /* ← ADD THIS LINE */
}

.video-grid-cards-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* Mobile: stacks vertically, each block becomes 1 column */
@media (max-width: 768px) {
  .video-grid {
    flex-direction: column;
    gap: 2rem;
  }
  
  .video-block {
    flex: 1 1 100%;
    width: 100%;
    padding: 0;
    margin-bottom: 2rem;
  }
  
  .video-grid-cards-2col {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .col-headline {
    display: block;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  
  lite-youtube {
    max-width: 100%;
    margin: 0 auto;
  }
}

/* Ensure lite-youtube embeds are responsive */
/* Make the lite-youtube thumbnails smaller */
lite-youtube {
  display: block;
  width: 100%;
  max-width: 280px;  /* limits thumbnail width */
  margin: 0 auto;    /* centers within its grid cell */
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
}



/* banner - added May 27-2026 /
/* Banner - quiet, responsive, clickable */
.site-banner {
  display: block;
  width: 80%;          /* or 100% if you prefer full width */
  max-width: 1000px;
  margin: 1rem auto;
  border-radius: 8px;
  transition: opacity 0.2s ease;
}

.site-banner:hover {
  opacity: 0.85;
}

.banner-link {
  display: block;
  text-align: center;
}

@media (max-width: 640px) {
  .site-banner {
    width: 95%;        /* slightly wider on mobile, still has margins */
  }
}

/* fixing banner and signature image alignment */
.top-group {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 1rem;
}

.site-mark {
  position: absolute;
  top: 0;
  left: 20px;
  width: 60px;  /* adjust as needed */
  height: auto;
  z-index: 10;
}

.banner-link {
  display: block;
  width: 100%;
  text-align: center;
}

.site-banner {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 8px;
}

/* making responsive */
@media (max-width: 640px) {
  .site-mark {
    width: 40px;
    left: 10px;
  }
  
  .site-banner {
    width: 95%;
  }
}

/* Unify all top text — consistent weight, spacing, size */
.home-tagline,
.cinematic-tagline,
.blurb p,
.col-headline {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #888;
  margin: 0.5rem 0;
  line-height: 1.4;
  text-transform: lowercase;
}

/* Keep links consistent */
.blurb a {
  color: #888;
  text-decoration: none;
  border-bottom: 1px dotted #ccc;
}

.blurb a:hover {
  color: #444;
  border-bottom: 1px solid #888;
}

/* Column headings ("videos", "shorts") slightly distinct but same weight */
.col-headline {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #888;
  margin-bottom: 0.75rem;
}


/* Subscribe Modal - minimal, quiet June 2-2026*/
.subscribe-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
}

.subscribe-modal-content {
  background: #fff;
  padding: 2rem;
  max-width: 400px;
  width: 90%;
  text-align: center;
  border-radius: 8px;
}

.subscribe-close {
  float: right;
  font-size: 1.5rem;
  cursor: pointer;
  color: #999;
}

.subscribe-close:hover {
  color: #222;
}

.subscribe-modal-content h3 {
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.subscribe-modal-content input {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  box-sizing: border-box;
}

.subscribe-modal-content button {
  background: #222;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
}

.subscribe-modal-content button:hover {
  background: #444;
}

.subscribe-note {
  font-size: 0.7rem;
  color: #999;
  margin-top: 1rem;
}

.subscribe-trigger {
  text-align: center;
  font-size: 0.75rem;
  margin: 2rem 0;
}

.subscribe-trigger a {
  color: #888;
  text-decoration: none;
  border-bottom: 1px dotted #ccc;
}

.subscribe-trigger a:hover {
  color: #222;
}

/* this is for songs directly from YT */
/* Song page */
.song-page {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 1rem;
}

.song-title {
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 0.5rem;
}

.song-subtitle {
  text-align: center;
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 2rem;
}

.audio-container {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

audio {
  width: 100%;
  max-width: 500px;
}

.lyrics {
  margin-top: 2rem;
  line-height: 1.6;
  color: #444;
}

.lyrics h2 {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #eee;
  display: inline-block;
  margin-bottom: 1rem;
}

.back-link {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.8rem;
}

.back-link a {
  color: #888;
  text-decoration: none;
  border-bottom: 1px dotted #ccc;
}

