.header-banner {
    position: relative;
    width: 100%;
    text-align: center;
}

.header-banner img {
    width: 100%;
    height: auto;
}


/* Titel over de banner */
.artist-title {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.8rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 8px;
}

/* Ondertekst subtieler */
.artist-subtitle {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    font-weight: 300;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 15px;
    border-radius: 8px;
}

/* Navigatiebalk blijft plakken na de header */
.custom-navbar {
    background: linear-gradient(to right, rgb(0, 171, 251), rgb(91, 202, 255));
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000; /* Zorgt ervoor dat de navbar boven de content blijft */
}


.custom-navbar .nav-link {
    color: white !important;
    transition: background 0.3s ease-in-out;
}

.custom-navbar .nav-link:hover, .custom-navbar .nav-link.active {
    background-color: rgb(45, 62, 72);
}

.navbar-brand img {height:50px;}

/* Koppen met subtiele schaduw */
h1, h2, h3, h4, h5, h6 {
    color: rgb(0, 171, 251);
    text-shadow: 1px 1px 2px rgb(45, 62, 72);
}

/* Extra aanpassingen voor consistentie */
body {
    font-size: larger;
}

.container {
    
}

iframe, .borderr75{
	border-radius: .75rem;
}


/* Music Section Styling */
.music-section {
    text-align: center;
    margin-top: 20px;
}


/* Footer styling */
.custom-footer {
    background-color: rgb(45, 62, 72);
    padding: 20px 0;
    color: white;
    margin-top: 40px;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Social media icons */
.social-links a {
    color: white;
    font-size: 24px;
    margin: 0 10px;
    display: inline-block;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.social-links a:hover {
    transform: scale(1.2);
    color: rgb(0, 171, 251);
}

.footer-text {
    font-size: 0.9rem;
    margin-top: 10px;
    text-align: center;
}
@media (max-width: 1199px) {
    .artist-title,
    .artist-subtitle {
        display: none;
    }
}