.metadata-list dt,
.pitch-label {
    text-transform: uppercase;
    letter-spacing: 1px;
}
:root {
    --brand-teal: #2c5f5d;
    --brand-rust: #ba4818;
    --brand-gold: #e8a540;
    --brand-light: #fdfbf7;
}
body {
    background-color: var(--brand-light);
    font-family: "Inter", sans-serif;
    color: #333;
}

.song-description-text i, 
.song-description-text em {
    color: #ba4818 !important;
    font-style: italic;
    font-weight: 500;
}
.content-width {
    max-width: 900px;
    margin: 0 auto;
}
header {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}
/* Breadcrumb Styling */
.breadcrumb-nav {
    margin-bottom: 10px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 0.65rem; /* Very small as requested */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "\00BB"; /* Hex code for &raquo; */
  padding-right: 0.5rem; /* Adds space after the arrow */
  color: #ccc;
}

.breadcrumb-item a {
    color: #888;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: #dc3545; /* Matches your Bootstrap danger/rust theme */
}

.breadcrumb-item.active {
    color: #adb5bd;
    font-weight: 400;
}
.metadata-list dd a.bmi-link {
    color: var(--brand-rust) !important;
    text-decoration: none !important;
    border: none !important;
}

.metadata-list dd a.bmi-link:hover {
    color: var(--brand-teal) !important;
    text-decoration: none !important;
}
audio::-webkit-media-controls-panel {
    background-color: var(--brand-teal);
}
audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-mute-button,
audio::-webkit-media-controls-play-button,
audio::-webkit-media-controls-time-remaining-display,
audio::-webkit-media-controls-timeline,
audio::-webkit-media-controls-volume-slider {
    filter: invert(100%) brightness(200%);
}
audio::-webkit-media-controls-timeline {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    margin-left: 10px;
    margin-right: 10px;
}
audio {
    border-radius: 20px;
    background-color: var(--brand-teal);
    width: 100%;
    height: 40px;
    margin-bottom: 15px;
}
.logo-box img {
    max-width: 100%;
    height: auto;
    max-height: 100px;
}
.song-title {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-weight: 800;
    color: var(--brand-teal);
    margin: 0;
    line-height: 1.2;
}
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    margin-bottom: 2rem;
}
.badge-pitch {
    background-color: var(--brand-rust) !important;
    color: #fff;
    font-weight: 500;
    font-size: 0.8rem;
}
.badge-pitch:hover {
    transform: translateY(-2px);
    background-color: #9e3d14 !important;
}
.audio-player-wrapper {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    margin-bottom: 1.5rem;
}
.btn-action-inline {
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.03);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
}
.btn-download {
    color: var(--brand-rust);
    margin-right: 8px;
}
.btn-share-inline,
.hold-header span {
    color: var(--brand-teal);
}
.btn-download:hover {
    background: var(--brand-rust);
    color: #fff;
}
.btn-share-inline:hover {
    background: var(--brand-teal);
    color: #fff;
}
@media (min-width: 992px) {
    .btn-share-inline {
        display: none;
    }
    .btn-download {
        margin-right: 0;
    }
}
.hold-section {
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    margin-bottom: 2rem;
}
.hold-header {
    background: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hold-header span {
    font-size: 0.75rem;
    letter-spacing: 1px;
}
.form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 10px;
    font-size: 0.9rem;
}
.btn-submit-hold {
    background-color: var(--brand-teal);
    color: #fff;
    font-weight: 700;
    border-radius: 8px;
    width: 100%;
    padding: 10px;
    margin-top: 10px;
}
.btn-submit-hold:hover {
    background-color: #1e4240;
    color: #fff;
}
.lyrics-container {
    background-color: #fff;
    color: #555;
    padding: 1rem;
    border-left: 2px solid var(--brand-rust);
    font-size: 0.9rem;
    line-height: 1.7;
}
.pitch-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--brand-teal);
    display: block;
    margin-bottom: 8px;
}
.metadata-list dt {
    color: #6c757d;
    font-weight: 600;
    font-size: 0.65rem;
}
.metadata-list dd {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 500;
}
.collapse-header {
    background-color: var(--brand-teal);
    color: #fff;
    border-radius: 12px 12px 0 0;
    cursor: pointer;
}
.lyrics-card-footer {
    background: #fff;
    border-radius: 0 0 12px 12px;
    padding: 1.0rem;
    border-top: 1px solid #eee;
}
.hold-header {
    background: var(--brand-gold) !important;
    padding: 12px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 12px 12px 0 0;
}
.hold-header i,
.hold-header span {
    color: #fff !important;
    font-weight: 800;
}
.song-description-text {
    font-size: 1.00rem;
    line-height: 1.6;
    color: #555; 
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* If you want to style any paragraphs or links inside the description */
.song-description-text p {
    margin-bottom: 1rem;
}

.song-description-text strong {
    color: var(--brand-teal);
}

/* Add these to your existing <style> block */
.text-center { text-align: center; }
.pb-4 { padding-bottom: 1.5rem; }
.text-muted { color: #6c757d; }
.small { font-size: 0.875rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Ensure content-width is defined if it's not in custom.css */
.content-width { max-width: 1100px; width: 100%; }

