body {
  background-color: #300a0a;
  color: #f8f9fa;
  font-family: 'Segoe UI', Roboto, sans-serif;
}

#hm {
    background-color: #444;
    color: #f8f9fa;
}

header h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 3rem;
  color: #f8f9fa;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    text-shadow: 0 0 25px rgba(255, 255, 255, 1);
    transform: scale(1.03);
  }
  100% {
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    transform: scale(1);
  }
}

.service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border: 2px solid #444;
}

.service-img:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

#services h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

#services p {
  font-size: 0.95rem;
}

#custom-guitar-video video {
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.15);
}