/* Custom CSS */
body {
    font-family: 'Roboto', sans-serif;
    background: url('../img/bg.png');
    background-size: cover;
    color: #f8f9fa;
}


.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
}

.hero-section {
    background: url('../img/background.jpg') no-repeat center center;
    background-size: cover;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-section .container {
    z-index: 2;
}

.card {
    transition: transform 0.3s ease;
    border: none;
    background-color: #343a40;
    color: white;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

#lyrics-content {
    height: 400px;
    overflow-y: auto;
    text-align: center;
    padding: 1rem;
    transition: all 0.3s ease;
    scroll-behavior: smooth;
}

.lyric-line {
    padding: 8px;
    margin: 4px 0;
    border-radius: 5px;
    transition: all 0.3s ease;
    opacity: 0.6;
    font-size: 1.1rem;
}

.lyric-line.highlight {
    font-weight: bold;
    color: #ffc107; /* Bootstrap's yellow */
    transform: scale(1.05);
    opacity: 1;
}


.modal-content {
    background-color: #212529;
    color: white;
}

.modal-header {
    border-bottom: 1px solid #495057;
}

.btn-close-white {
    filter: invert(1);
}

.serdigital-link {
  text-transform: uppercase;
  font-weight: bold;
  color: orange;
  text-decoration: none;
}

.serdigital-link:hover {
  color: darkorange;
}
