/* === HOME PAGE === */

/* Main content wrapper */
.index-section,
.dj-service-intro {
  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);
}

/* Headings */
.index-section h2,
.index-section h3,
.dj-service-intro h2,
.dj-service-intro h3 {
  font-family: 'Permanent Marker', cursive;
  color: #ff4500;
  text-shadow: 0 0 6px #ff4500, 0 0 12px #ff6a00;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

/* Paragraphs */
.index-section p,
.dj-service-intro p {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  color: #f0f0f0;
}

/* Leading paragraph */
.dj-service-intro .leading {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* Highlight box */
.index-highlight,
.dj-service-intro .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;
  border-radius: 6px;
}

/* Feature list */
.index-features,
.dj-features {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

.index-features li,
.dj-features li {
  margin-bottom: 0.5rem;
  padding-left: 1.2rem;
  position: relative;
  color: #e6e6e6;
}

/* Tagline */
.tagline {
  font-family: 'Permanent Marker', cursive;
  font-size: 1.3rem;
  color: #ff4500;
  text-align: center;
  margin-top: 2rem;
  text-shadow: 0 0 6px #ff4500, 0 0 12px #ff6a00;
}

/* Call-to-action button */
.flame-btn {
  display: inline-block;
  background: linear-gradient(90deg, #ff4500, #ff6a00);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 0 0 6px #ff4500;
  box-shadow: 0 0 12px rgba(255,69,0,0.4);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.flame-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 16px #ff4500, 0 0 24px #ff6a00;
  color: #fff;
}

.flame-btn:focus {
  outline: 2px solid #ff6a00;
  outline-offset: 2px;
}

/* === Responsive Tweaks === */
@media (max-width: 768px) {
  .index-section,
  .dj-service-intro {
    padding: 1.5rem;
  }

  .index-section h2,
  .dj-service-intro h2 {
    font-size: 1.4rem;
    text-align: center;
  }

  .index-section p,
  .dj-service-intro p {
    font-size: 1rem;
  }

  .tagline {
    font-size: 1.1rem;
  }
}
