/* Minimal custom CSS: Bootstrap handles the layout and responsiveness. */

:root {
  --tutorial-red: #b42318;
  --tutorial-red-dark: #7a271a;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

[id] {
  scroll-margin-top: 88px;
}

.fw-black {
  font-weight: 900;
}

.brand-icon {
  width: 2rem;
  height: 2rem;
}

.profile-button {
  width: 2.5rem;
  height: 2.5rem;
}

.navbar .nav-link {
  transition: color 0.2s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: #ED2939 !important;
}

.hero-section {
  min-height: 75vh;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.42) 42%, rgba(0, 0, 0, 0.08) 72%),
    url("assets/Hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-copy,
.section-heading {
  max-width: 46rem;
}

.hero-visual {
  background: linear-gradient(145deg, rgba(220, 53, 69, 0.22), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(220, 53, 69, 0.2);
}

.feature-icon,
.feature-icon-sm,
.playlist-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  font-size: 1.6rem;
}

.feature-icon-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.feature-icon-sm {
  width: 3rem;
  height: 3rem;
  font-size: 1.15rem;
}

.playlist-number {
  width: 2rem;
  height: 2rem;
  font-weight: 700;
}

.card-lift,
.playlist-link {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.card-lift:hover {
  transform: translateY(-0.35rem);
  box-shadow: 0 1rem 2rem rgba(33, 37, 41, 0.12) !important;
}

.playlist-link {
  background-color: rgba(255, 255, 255, 0.06);
}

.playlist-link:hover {
  background-color: rgba(220, 53, 69, 0.3);
  transform: translateX(0.25rem);
}

.brand-icon-footer {
  width: 1.25rem;
  height: 1.25rem;
}

@media (max-width: 991.98px) {
  .hero-section {
    background-position: 65% center;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    min-height: auto;
    background-position: 72% center;
    background-image:
      linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.72) 58%, rgba(0, 0, 0, 0.35) 100%),
      url("assets/Hero.png");
  }


  .display-3 {
    font-size: 3rem;
  }
}
