/* Base mobile styles */
body {
  font-family: system-ui, sans-serif;
  margin: 0;
  padding: 1rem;
  line-height: 1.6;
  font-size: 1.1rem;
  background: #fff;
  color: #222;
}

main {
  max-width: 40rem;
  margin: auto;
  padding: 1rem;
}

/* Justify normal paragraphs */
p {
  margin-bottom: 1rem;
  text-align: justify;      /* Justified text for paragraphs */
}

/* Headings */
h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.responsive-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 1rem auto;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Limit image size on desktop */
@media (min-width: 768px) {
  .responsive-image {
    max-width: 60%;   /* Try 50–70% depending on taste */
  }
}

/* Lyrics container */
.lyrics {
  margin: 1rem 0;
}

/* Each stanza block (LEFT-ALIGNED) */
.lyrics .stanza {
  background: #f9f9f9;        
  border-left: 4px solid #c49f60; 
  padding: 0.8rem 1rem;       
  border-radius: 6px;         
  margin-bottom: 1.5rem;      
  box-shadow: 0 1px 3px rgba(0,0,0,0.05); 
  text-align: left;           /* Left-align song lyrics */
}

/* Lines inside a stanza */
.lyrics .stanza ul {
  list-style: none;       
  padding-left: 0;
  margin: 0;
}

.lyrics .stanza ul li {
  line-height: 1.4;
  margin-bottom: 0.4rem;  
  white-space: pre-wrap;
  font-style: italic;     
  color: #333;
}

/* Desktop adjustments */
@media (min-width: 768px) {
  body {
    font-size: 0.95rem;
    padding: 2rem;
  }
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .lyrics .stanza ul li {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }
}