body {
  background: #050505;
  color: #f5f5f5;
  padding-top: 75px;
  font-family: Arial, Helvetica, sans-serif;
}
/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
  background-color: rgba(0, 0, 0, 0.95);
  padding: 14px 45px;
  border-bottom: 1px solid #2a2a2a;
}

.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.nav-link {
  color: #f5f5f5 !important;
  margin-left: 22px;
  text-transform: uppercase;
}

.nav-link:hover {
  color: #ff2a2a !important;
}
.album-page {
  min-height: 100vh;
  background: #050505;
  padding: 160px 80px 80px;
}

.album-container {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 120px;
  align-items: center;
}

.album-cover {
  width: 420px;
  height: 420px;
  object-fit: cover;
}

.album-info {
  max-width: 650px;
}

.album-info h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #f5f5f5;
}

.album-info h2 {
  font-size: 1.8rem;
  margin-top: 30px;
  color: #f5f5f5;
}

.album-info p,
.album-info li {
  color: #f5f5f5;
  font-size: 1.1rem;
  line-height: 1.6;
}

.album-info .btn {
  display: inline-block;
  margin-top: 35px;
}

@media (max-width: 900px) {
  .album-page {
    padding: 120px 25px 60px;
  }

  .album-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .album-cover {
    width: 100%;
    height: auto;
  }
}

/* TITLES */

.section-label {
  color: #ff2a2a;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
}

h2, h3 {
  text-transform: uppercase;
}

/* CARDS */
.card {
  background: #111 !important;
  color: #f5f5f5;
  border: 1px solid #2f2f2f;
}

.card-body {
  background: #111;
}

.card-title {
  color: #ffffff;
}

.card-text {
  color: #cccccc;
  opacity: 0.85;
}

.card-text {
  opacity: 0.85;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(255,0,0,0.18);
}
/* BUTTONS */

.btn {
  background: transparent !important;
  color: #ff2a2a !important;
  border: 1px solid #ff2a2a !important;
  text-transform: uppercase;
}

.btn:hover {
  background: #ff2a2a !important;
  color: #000 !important;
}

/* ABOUT SECTION */

.about-section {
  background: #0b0b0b;
  position: relative;
  padding: 80px 60px;
  border-top: 1px solid #292929;
  border-bottom: 1px solid #292929;
  overflow: hidden;
}

.about-text {
  max-width: 600px;
  margin-left: auto;
  z-index: 2;
}

.about-text h2 {
  color: #f5f5f5;
}

.about-text p {
  color: #cfcfcf;
}

.about-bottom-img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45%;
}

/* MERCH */

.merch-section {
  background: #050505;
  padding: 70px 0;
}

.merch-scroll {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 0 24px;
}

.merch-card {
  min-width: 350px;
  background: rgba(20,20,20,0.95);
  border: 1px solid #2f2f2f;
  border-radius: 10px;
  position: relative;
  transition: 0.3s;
}

.merch-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(255,0,0,0.2);
}

.merch-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.merch-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  border: 1px solid #ff2a2a;
  color: #ff2a2a;
  padding: 6px 12px;
  font-size: 0.7rem;
}

.merch-card h3 {
  margin: 10px;
  color: #fff;
}

.merch-card p {
  margin: 0 10px;
  color: #aaa;
}
.concert-section {
  background: #050505;
  color: #f5f5f5;
  padding: 70px 40px;
  border-top: 1px solid #292929;
}

.live-title {
  color: #f5f5f5;
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 45px;
}

.concert-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid #292929;
}

.concert-date {
  color: #ff2a2a;
  font-weight: 900;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.concert-place {
  color: #aaa;
  font-size: 1rem;
  margin-bottom: 10px;
}

.concert-row h3 {
  color: #f5f5f5;
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ticket-btn {
  color: #ff2a2a;
  text-decoration: none;
  border: 1px solid #ff2a2a;
  padding: 12px 28px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1rem;
}

.ticket-btn:hover {
  background: #ff2a2a;
  color: #000;
}
/* GALLERY */

.gallery-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

/* FOOTER */
footer {
  background: #050505;
  border-top: 1px solid #292929;
  color: #999;
}
