/* === ABOUT PAGE === */

/* Main content wrapper */
.about-section {
  background: #1a1a1a;
  border: 2px solid #ff4500;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 12px rgba(255,69,0,0.3);
  line-height: 1.7;
}

/* Headings */
.about-section h2,
.about-section h3 {
  font-family: 'Permanent Marker', cursive;
  color: #ff4500;
  text-shadow: 0 0 6px #ff4500, 0 0 12px #ff6a00;
  margin-bottom: 1rem;
}

/* Paragraphs */
.about-section p {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  color: #f0f0f0;
}

/* Intro: image + first paragraph side-by-side */
.about-intro {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.about-intro .featured-image {
  flex: 0 0 40%;
}

.about-intro .featured-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  border: 2px solid #ff4500;
  box-shadow: 0 0 10px rgba(255,69,0,0.4);
}

.about-intro p {
  flex: 1;
  margin: 0;
}

/* Highlight box */
.highlight-box {
  background: rgba(255,69,0,0.1);
  border-left: 4px solid #ff4500;
  padding: 1rem;
  margin: 2rem 0;
  color: #fff;
  text-shadow: 0 0 6px #ff4500, 0 0 12px #ff6a00;
}

/* Offerings list */
.about-offerings {
  list-style: none;
  padding-left: 0;
}

.about-offerings li {
  margin-bottom: 0.5rem;
}

.about-offerings li::before {
  content: "🔥 ";
  color: #ff4500;
}
.flame-offerings {
  background: #1a1a1a;
  border: 2px solid #ff4500;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 12px rgba(255,69,0,0.3);
  line-height: 1.7;
  color: #f0f0f0;
}

.flame-offerings h3 {
  font-family: 'Permanent Marker', cursive;
  color: #ff4500;
  text-shadow: 0 0 6px #ff4500, 0 0 12px #ff6a00;
  margin-bottom: 1rem;
}

.flame-offerings ul.about-offerings li {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.flame-flicker {
  animation: flickerOn 1.5s infinite;
}

@keyframes flickerOn {
  0%, 100% { opacity: 1; }
  25% { opacity: 0.6; }
  50% { opacity: 0.9; }
  75% { opacity: 0.7; }
}

/* === Portfolio Sidebar === */
.discography-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Unify sidebar portfolio with About section look */
.sidebar .widget {
  background: #1a1a1a; /* same as about-section */
  border: 2px solid #ff4500;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 0 12px rgba(255,69,0,0.3);
}

.sidebar .widget-title {
  font-family: 'Permanent Marker', cursive;
  color: #ff4500;
  text-shadow: 0 0 6px #ff4500, 0 0 12px #ff6a00;
  margin-bottom: 1rem;
  text-align: left;
}

/* Discography list items */
.discography-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  background: rgba(0,0,0,0.7);
  border: 1px solid #ff4500;
  border-radius: 6px;
  padding: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.discography-list li:hover {
  transform: scale(1.02);
  box-shadow: 0 0 12px #ff4500, 0 0 20px #ff6a00;
}

/* Thumbnail images locked to 124x124 */
.discography-list .cover {
  flex-shrink: 0;
  width: 124px;
  height: 124px;
  overflow: hidden;
  border-radius: 4px;
  border: 2px solid #ff4500;
  margin-right: 0.75rem;
}

.discography-list .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Text details */
.discography-list .detail {
  flex: 1;
  color: #eee;
}

.discography-list .detail h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
}

.discography-list .detail h3 a {
  color: #ff4500;
  text-decoration: none;
  transition: text-shadow 0.3s ease;
}

.discography-list .detail h3 a:hover {
  text-shadow: 0 0 6px #ff4500, 0 0 12px #ff6a00;
}

.discography-list .detail .year {
  display: block;
  font-size: 0.85rem;
  color: #aaa;
}

.discography-list .detail .track {
  display: block;
  font-size: 0.9rem;
  color: #fff;
  text-shadow: 0 0 4px #ff4500;
}

/* === Responsive Tweaks === */
@media (max-width: 768px) {
  .about-intro {
    flex-direction: column;
  }

  .about-intro .featured-image {
    flex: none;
    width: 100%;
    margin-bottom: 1rem;
  }

  .about-section {
    padding: 1.5rem;
  }

  .about-section h2 {
    font-size: 1.4rem;
    text-align: center;
  }

  .about-section p {
    font-size: 1rem;
  }

  .discography-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .discography-list .cover {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }

  .discography-list .detail h3 {
    font-size: 0.95rem;
  }
}
