/* === Base Variables === */
:root {
  --background: #0d0d11;
  --bg-secondary: #1f1f1f;
  --box-shadow: 0 0 20px rgba(178, 102, 255, 0.4);
  --pink: #ff4e9b;
  --purple: #a266ff;
  --pink-gradient: linear-gradient(to right, #ff4e9b, #a266ff);
}

/* === Global === */
.site-body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--background);
  color: #fff;
  margin: 0;
}

h1, h2 {
  font-family: 'Bebas Neue', sans-serif;
}

.nav-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: x-large;
}

/* === Navbar === */
.site-navbar {
  background-color: var(--background);
}

.site-logo {
  height: 80px;
  width: auto;
  display: flex;
}

.logo-img {
  height: 80px;
  width: auto;
  display: flex;
}

.logo-img:hover {
  content: url("images/logo-purple.png");
}

.nav-link {
  color: #bbbbbb;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #b88bff;
}

.nav-link.active {
  color: var(--pink) !important;
}

/* === Hero Section === */
.hero-section {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 3rem;
  color: #fff;
  width: 100%;
}

/* === Cards === */
.card {
  border: none;
  border-radius: 0;
  background: #1e1e68;
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: var(--box-shadow);
}

.card-title {
  font-weight: bold;
}

/* === Artist Cards === */
.artist-card {
  position: relative;
  height: 250px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  color: #fff;
}

.artist-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .3);
  z-index: 1;
}

.artist-card .card-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.artist-card:hover {
  background-size: 150%;
}

.card-footer-custom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

/* === News Cards === */
.news-card {
  background: rgba(31, 31, 31, 0.25);
  color: #fff;
}

/* === Buttons === */
.btn {
  border-radius: 0 !important;
}

.btn-primary-custom {
  background: var(--pink-gradient);
  color: #fff;
  border: none;
  transition: background 0.3s ease, color 0.3s ease;
  padding: 0.5rem 1rem;
}

.btn-primary-custom:hover {
  background: #fff;
  color: var(--background);
}

.btn-secondary-custom {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
  background: #fff;
  color: var(--background);
}

/* === Footer === */
.site-footer {
  background-color: #000;
  color: #bbb;
}

/* === Hero Variants === */
.hero-index {
  background-image: url("images/svenKarlsson.jpg");
}

.hero-tickets {
  background-image: url("images/ticketsHero.jpg");
}

.hero-agenda {
  background-image: url("images/agendaHero.jpg");
}

.hero-over {
  background-image: url("images/overHero.jpg");
}

.hero-contact {
  background-image: url("images/contactHero.jpg");
}

/* === Tickets Form === */
.tickets-form {
  background-color: var(--bg-secondary);
  color: #fff;
}

/* === Agenda Cards === */
.agenda-card {
  background-color: var(--bg-secondary);
  color: #fff;
}

/* === Text muted replacement === */
.text-muted-custom {
  color: #bbbbbb;
}

/* === Spotify embed wrapper === */
.spotify-embed {
  max-width: 400px;
  margin-bottom: 1rem;
}

/* === Address box === */
.address-box {
  background-color: var(--bg-secondary);
  color: #fff;
}

/* === Contact Form === */
.contact-form {
  background-color: var(--bg-secondary);
  color: #fff;
  border-radius: 0.5rem;
}





