body {
  font-family: 'Poppins', sans-serif;
}

/* BUTTON */
.btn-pink {
  background: #FF2D95;
  color: #fff;
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 14px;
  transition: 0.3s;
}

.btn-pink:hover {
  background: #e02684;
  transform: translateY(-2px);
}

/* CARD */
.card {
  border: none;
  border-radius: 20px;
  padding: 25px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
  cursor: pointer;
}

.card h5 {
  font-weight: 600;
}

.card p {
  font-size: 14px;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* IMAGE */
.card-img-top {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

/* SECTION */
.section {
  padding: 60px 0;
}

/* NAVBAR */
.navbar {
  padding: 15px 0;
}

.navbar a {
  font-weight: 500;
}

.navbar a.fw-bold {
  color: #FF2D95 !important;
}

/* TEXT */
.text-muted {
  margin-bottom: 10px;
}

/* HERO */
.hero-section {
  height: 80vh;
  background: url('images/hero-music.jpg') center/cover no-repeat;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6); /* slightly darker */
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-slide {
  height: 80vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.hero-slide .container {
  position: relative;
  z-index: 2;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
}

.navbar {
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* NAV LINK STYLE */
.nav-link-custom {
  position: relative;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding-bottom: 5px;
  transition: 0.3s;
}

/* HOVER COLOR */
.nav-link-custom:hover {
  color: #FF2D95;
}

/* UNDERLINE EFFECT */
.nav-link-custom::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #FF2D95;
  transition: 0.3s;
}

/* HOVER ANIMATION */
.nav-link-custom:hover::after {
  width: 100%;
}

/* ACTIVE PAGE */
.nav-link-custom.active {
  color: #FF2D95;
}

/* ACTIVE UNDERLINE */
.nav-link-custom.active::after {
  width: 100%;
}

.section {
  padding: 40px 0;
}

.icon-pink i {
  color: #FF2D95 !important;
}