html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}
h1, h2, h3, h4, h5, h6{
    font-family: 'Bungee', sans-serif;
}


.navbar .container-fluid {
    position: relative;
}

.navbar-center-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    font-family: 'Mr Dafoe', cursive;
    white-space: nowrap;
    pointer-events: none;
}



body, p {
    font-family: 'Work Sans', sans-serif;
}
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

.navbar {
    background: rgba(255, 255, 255, 0.1) !important;
    /*background: rgba(0, 0, 0, 0.3) !important; */
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(10px);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

body {
    margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

.banner {
    position: relative;
    width: 100%;
    height: 400px; /* Adjust as needed */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /*border-radius: 10px;*/
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Makes image fill the section */
    display: block;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for readability */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.banner-title {
    font-size: 3rem;
    margin: 0;
}

.banner-subtitle {
    font-size: 1.5rem;
    margin: 10px 0 20px;
}

.banner-button {
    padding: 12px 30px;
    background-color: #FF6F61; /* Coral accent */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.banner-button:hover {
    background-color: #E55B50;
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 2rem;
    }
    .banner-subtitle {
        font-size: 1.2rem;
    }
}

.bgimg {
    height: 600px;
    position: fixed;
    top:0;
    left:0;
    background-image: url('https://images.unsplash.com/photo-1473923377535-0002805f57e8?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=d239ac0e409e18cf74ace503c491714f&auto=format&fit=crop&w=1469&q=80');
    background-attachment: fixed;
    background-position: center top;
}

.modal-dialog {
    max-width: 700px; /* Adjust this value as needed */
    padding-left: 8px;
    padding-right: 8px;
}

.artist-bio-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.artist-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.artist-bio-text {
    width: 100%;
}