 :root {
     --accent: #d6c400;

     --bg-dark: #2e2c28;
     --bg-light: #f7f5f2;
     --bg-warm: #edeae4;

     --text-dark: #2e2c28;
     --text-muted: #5a5044;
     --text-light: #f7f5f2;

     --border-accent: rgba(242, 228, 0, 0.15);
 }

 .navbar {
     background-color: var(--bg-dark);
     /* warm charcoal */
     border-bottom: 1px solid var(--border-accent);
     padding: 0.75rem 1rem;
 }

 .navbar-brand {
     display: flex;
     align-items: center;
 }

 .navbar-brand img {
     height: 40px;
     width: auto;
 }

 .navbar-nav .nav-link {
     font-family: 'IBM Plex Sans', sans-serif;
     font-size: 0.95rem;
     text-transform: uppercase;
     letter-spacing: 0.05em;
     color: var(--text-light);
     margin-left: 1rem;
     position: relative;
     transition: color 0.2s ease;
 }

 .navbar-nav .nav-link:hover,
 .navbar-nav .nav-link:focus {
     color: var(--accent);
     /* #d6c400 */
 }

 .navbar-nav .nav-link.active {
     color: var(--accent);
 }

 .hero {
     min-height: 80vh;
     background-image: url('../assets/heavy-delight-band-photo-16x9.webp');
     background-size: cover;
     background-position: center;
     /* background-repeat: no-repeat; */
 }

 .navbar-nav .nav-link::after {
     content: '';
     position: absolute;
     left: 0;
     bottom: -6px;
     width: 0;
     height: 2px;
     background-color: var(--accent);
     transition: width 0.2s ease;
 }

 .navbar-nav .nav-link:hover::after,
 .navbar-nav .nav-link.active::after {
     width: 100%;
 }

 .navbar-toggler {
     border-color: var(--border-accent);
 }

 .navbar-toggler-icon {
     filter: invert(1);
 }

 .navbar-collapse {
     background-color: var(--bg-dark);
     padding: 1rem 0;
 }

 .hero-title {
     font-family: 'Archivo Black', sans-serif;
     font-size: clamp(3rem, 6vw, 5rem);
     letter-spacing: 0.04em;
     text-transform: uppercase;
     text-shadow: 0 6px 24px rgba(0, 0, 0, 0.65);
 }

 .hero-tagline {
     font-family: 'Montserrat', sans-serif;
     color: #f2e400;
     /* muted yellow */
     font-size: 1rem;
     letter-spacing: 0.25em;
     text-transform: uppercase;
     opacity: 0.9;
 }

 .hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.5);
 }

 .hero::after {
     content: "";
     position: absolute;
     inset: 0;
     background: linear-gradient(rgba(0, 0, 0, 0.55),
             rgba(0, 0, 0, 0.25));
     z-index: 1;
 }

 .hero-content {
     position: relative;
     z-index: 2;
 }

 section {
     padding: 5rem 0;
 }

 /* .section-title {
     font-family: 'Archivo', sans-serif;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.05em;
     font-size: 2rem;
     line-height: 1.25;
     margin-bottom: 2rem;
 } */

 .section-title {
     font-family: 'Archivo', sans-serif;
     font-weight: 600;
     letter-spacing: 0.04em;
     text-transform: uppercase;
     margin-bottom: 1rem;
     text-align: center;
     letter-spacing: 0.08em;
 }

 .section-bg-alt {
     background-color: #f8f9fa;
 }

 .social-logos .col {
     text-align: center;
 }

 .media-grid .card {
     border: none;
     background: transparent;
 }

 footer {
     background-color: #000;
     color: white;
     padding: 3rem 0 1rem;
 }

 footer a {
     color: white;
     text-decoration: none;
 }

 footer a:hover {
     text-decoration: underline;
 }


 .overlay {
     background: rgba(0, 0, 0, 0.5);
 }

 .about-section {
     background-color: var(--bg-light);
 }

 .about-section p {
     font-family: 'IBM Plex Sans', sans-serif;
     font-size: 1rem;
     line-height: 1.7;
     max-width: 65ch;
     margin: 0 auto 1.25rem;
     color: #33302b;
 }

 .tour-section {
     background-color: #f1eee8;
     border-top: 1px solid var(--border-accent);
     color: var(--text-dark);
     padding: 3rem 0;
     /* top and bottom spacing */
     /* warm charcoal */
     /* background-color: #edeae4; */
     /* background-color: #1f1f1f;
        color: #f7f5f2; */
 }

 .tour-section p {
     text-align: left;
 }

 .tour-headline {
     font-family: 'Archivo', sans-serif;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.04em;
     margin-top: 1rem;
     margin-bottom: 0.5rem;

 }

 .tour-body {
     font-family: 'IBM Plex Sans', sans-serif;
     font-size: 1rem;
     line-height: 1.65;
     max-width: 55ch;
     color: #33302b;
     margin-bottom: 1.25rem;
     text-align: left;
 }

 .booking-cta {
     display: inline-block;
     background-color: var(--accent);
     color: #1f1f1f;
     padding: 0.75rem 1.5rem;
     font-weight: 600;
     text-decoration: none;
     margin-top: 1rem;
     /* spacing above button */
     border-radius: 2px;
 }

 .booking-cta:hover {
     background-color: #e5d800;
 }

 .section-bg-alt {
     background-color: var(--bg-warm);
     /* soft warm neutral */
 }

 .media-section {
     padding: 3rem 0;
     background-color: var(--bg-warm);
     color: var(--text-dark);
 }

 .media-section-heading {
     margin-top: 2rem;
     margin-bottom: 2.5rem;
     color: var(--text-dark);
     /* warm charcoal */

 }

 .media-section .card {
     background-color: var(--bg-light);
     /* slightly lighter than section */
     border: none;
     border-radius: 4px;
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
     margin-bottom: 1.5rem;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .media-section .card-body p {
     font-family: 'IBM Plex Sans', sans-serif;
     font-size: 0.95rem;
     line-height: 1.6;
     color: var(--text-dark);
     margin-bottom: 0;
     /* removes extra spacing inside card */
 }

 .media-section .card:hover {
     transform: translateY(-4px);
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
 }

 .press-card {
     background-color: var(--bg-light);
     /* same as video cards */
     border: none;
     border-radius: 4px;
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
     padding: 0;
     /* card-img-top + card-body handles spacing */
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .press-card .press-title {
     font-family: 'IBM Plex Sans', sans-serif;
     font-weight: 600;
     font-size: 1rem;
     color: var(--text-dark);
     /* warm charcoal */
     margin-bottom: 0.25rem;
 }

 .press-card .press-meta {
     font-family: 'IBM Plex Sans', sans-serif;
     font-size: 0.85rem;
     color: var(--text-muted);
     /* slightly lighter warm gray */
     margin-bottom: 0.5rem;
 }

 .press-card .press-link {
     font-family: 'IBM Plex Sans', sans-serif;
     font-size: 0.95rem;
     color: var(--accent);
     text-decoration: underline;
 }

 .press-card .press-link:hover {
     color: #b8aa00;
 }

 .press-card img {
     border-top-left-radius: 4px;
     border-top-right-radius: 4px;
     object-fit: cover;
     width: 100%;
     height: 180px;
     /* consistent card height */
     filter: brightness(0.95);
     /* slightly muted, warm feel */
 }

 .social-section {
     background-color: var(--bg-dark);
     /* warm charcoal */
     color: var(--text-light);
     /* soft off-white for text and icons */
     text-align: center;
     padding-bottom: 4rem;
 }

 .social-section-heading {
     color: var(--text-light);
 }

 .social-section-heading::after {
     content: '';
     display: block;
     width: 60px;
     height: 2px;
     background-color: var(--accent);
     /* warm yellow */
     margin: 0.5rem auto 0;
 }

 #social-logos-placeholder {
     display: flex;
     justify-content: center;
     flex-wrap: wrap;
     gap: 1.5rem;
 }

 .social-icon {
     font-size: 2rem;
     color: var(--text-light);
     transition: color 0.2s ease-in-out;
 }

 .social-icon:hover {
     color: var(--accent);
 }

 .contact-section-heading {
     color: var(--text-dark);
 }

 #contact .form-control {
     font-family: 'IBM Plex Sans', sans-serif;
     font-size: 1rem;
     padding: 0.75rem 1rem;
     border: 1px solid #d6c400;
     /* subtle accent border */
     border-radius: 4px;
     margin-bottom: 1rem;
 }

 #contact .btn-primary {
     background-color: var(--accent);
     border: none;
     color: #1f1f1f;
     /* dark text on yellow button */
     font-weight: 600;
     padding: 0.75rem 1.5rem;
     border-radius: 2px;
     transition: background-color 0.2s ease;
 }

 #contact .btn-primary:hover {
     background-color: #b8aa00;
     /* slightly darker accent on hover */
 }

 .social-icon:hover {
     color: var(--accent);
     transform: scale(1.1);
 }

 footer {
     background-color: var(--bg-dark);
     /* warm charcoal, same as nav */
     color: var(--text-light);
     /* off-white text for contrast */
     padding: 2.5rem 0;
     /* top/bottom breathing room */
     border-top: 1px solid var(--border-accent);
     /* subtle accent line */
 }

 footer .fab {
     color: var(--text-light);
     /* off-white */
     transition: color 0.2s ease, transform 0.2s ease;
 }

 footer .fab:hover {
     color: var(--accent);
     /* warm yellow accent */
     transform: scale(1.1);
     /* subtle hover pop */
 }

 footer .footer-copy {
     font-family: 'IBM Plex Sans', sans-serif;
     font-size: 0.85rem;
     color: #bfb8a0;
     /* subtle warm gray */
     margin-top: 0.5rem;
 }

 @media (max-width: 767px) {
     .hero {
         min-height: 35vh;
     }

     section {
         padding: 3rem 0;
     }

     .section-title {
         margin-top: 1.5rem;
         margin-bottom: 2rem;
         font-size: 1.8rem;
         /* slightly smaller on mobile if needed */
     }

     .navbar-brand img {
         height: 22px;
         width: auto;
     }

     .tour-body {
         line-height: 1.6;
         padding: 0 1rem;
         font-size: 1.05rem;
     }

     .tour-headline {
         padding: 0 1rem;
         font-size: 1.1rem;
     }

     .about-section p {
         font-size: 1.05rem;
         text-align: left;
         padding: 0 1.25rem;
     }
 }