.brand-title {
  font-family: 'Poppins', sans-serif;
  letter-spacing: 4px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.brand-title .highlight {
  color: #ffc107;
  font-style: italic;
}

.text-shadow {
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.hero-section .btn-light {
  font-weight: 600;
  box-shadow: 0 0 10px rgba(255,255,255,0.3);
  transition: all 0.3s ease;
}

.hero-section .btn-light:hover {
  background-color: #fff;
  color: #000;
  box-shadow: 0 0 15px rgba(255,255,255,0.5);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .brand-title {
    font-size: 2.5rem;
  }

  .hero-section {
    padding: 3rem 1rem;
    min-height: 80vh;
  }
}