:root {
  --bg: #070b10;
  --whitebg: #ffffff; 
  --bg-soft: #111827;
  --accent: #e5b35d;
  --lightgold: #f0c76d;
  --text: #f9fafb;
  --muted: #9ca3af;
  --border: #1f2933;
  --bg-2: rgba(255,255,255,0.3);
  --mediumgrey:#555;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Georgia", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body { 
  background: var(--bg); 
  color: var(--text); 
  font-family: var(--font-sans); 
}

/* === HEADER & NAVBAR === */
header {
  background: var(--bg-soft);
  color: var(--text);
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--border);
}

.header-links{
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.header-links .header-social {
  display: flex;
  gap: 1rem;
}

.header-links a {
  color: var(--accent);
  font-weight: 500;
  transition: color 0.3s ease;
}

.header-links a:hover {
  color: var(--text);
}

.brand {
  text-align: center;
  margin-bottom: 0.5rem;
}

.brand-title {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.brand-sub {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  padding-left: 5.5rem; /* subtle, elegant shift */
}



.brand-name {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}

.header-social a {
  font-size: 1.3rem;
  color: var(--accent);
  transition: 0.2s ease;
}

.header-social a:hover {
  color: #888;
}

.navbar {
  background: transparent !important;
}

.navbar-nav {
  gap: 1.5rem;
}

.navbar-nav li a {
  text-decoration: none; /* removes underline */
  color: var(--text);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.navbar-nav li a:hover {
  text-decoration: none; /* removes underline */
  color: var(--accent);
}

/* === MAIN CONTENT === */
main {
  padding: 2rem 1rem;
}

.alert {
  margin: 1rem auto;
  max-width: 600px;
}

/* === FOOTER === */
footer {
  background: var(--bg-soft);
  color: var(--muted);
  padding: 2rem 1.25rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

/* Container that holds the social block */
.footer-links {
  width: 100%;
  display: flex;
  justify-content: center;     /* centers the entire block */
  margin-top: 2rem;
}

/* Social links row */
.footer-social {
  display: flex;
  flex-wrap: wrap;             /* allows wrapping on small screens */
  justify-content: center;     /* centers the links */
  gap: 0.8rem 1.6rem;          /* vertical + horizontal spacing */
  padding: 0.5rem 0;
  max-width: 600px;            /* keeps layout tidy on large screens */
}

/* Individual links */
.footer-social a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  font-size: 1rem;
  white-space: nowrap;         /* prevents awkward line breaks */
  transition: color 0.25s ease, transform 0.25s ease;
}

/* Modern hover effect */
.footer-social a:hover {
  color: var(--text);
  transform: translateY(-2px);
}

/* Tablet & Desktop refinement */
@media (min-width: 768px) {
  .footer-social {
    gap: 1rem 2.2rem;          /* more breathing room on larger screens */
  }
}

/* === ROTATING MESSAGE === */
#rotating-message {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent);
  text-align: center;
  margin: 1rem 0;
  transition: opacity 0.5s ease;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 992px) {
  .navbar-nav {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .brand-title {
    font-size: 1.20rem;
  }
  main {
    padding: 1.5rem 1rem;
  }
  footer {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .brand-sub {
    font-size: 0.8rem;
  }
  #rotating-message {
    font-size: 1rem;
  }
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(229, 179, 93, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


.carousel-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (min-width: 992px) {
  .carousel-item img {
    height: 700px;        /* larger height on desktops */
  }
}

@media (max-width: 991px) {
  .carousel-item img {
    height: 400px;        /* smaller height on tablets/mobiles */
  }
}

.home-h1 {
  padding: 3rem 1.25rem;
  max-width: 1100px;
  margin: auto;
  text-align: center;
  position: relative;
}

/* Modern headline styling */
.home-h1 h1 {
  font-family: var(--font-sans);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover effect: color shift + slight scale */
.home-h1 h1:hover {
  color: var(--text);
  transform: scale(1.05);
}

/* Animated underline effect */
.home-h1 h1::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: var(--accent);
  margin: 0.5rem auto 0;
  transition: width 0.4s ease;
}

.home-h1 h1:hover::after {
  width: 100%;
}

.home-h1 >p {
  font-size: 1.2rem;
  color:var(--muted);
}


.hero {
  max-width:1900px;
  display: grid;
  grid-template-columns: 1fr 1fr;   /* two columns on desktop */
  align-items: center;
  padding: 4rem 2rem;
  gap: 2rem;
}

/* Image side */
.hero-image {
  min-height: 400px;                /* ensures visible height */
  border-radius: 8px;               /* optional modern touch */
}

/* Text side */
.hero-text {
  color:var(--text);
  padding: 1rem;
  text-align: left;
}

.hero-text h2 {
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-text h1 {
  font-size: 3rem;
  font-family: serif;
  margin: 1rem 0;
}

.hero-text p {
  color: var(--text);
  max-width: 500px;
}

/* Buttons */
.hero-text .btn {
  margin-right: 1rem;
}

/* 📱 Responsive adjustments */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;     /* stack vertically */
    text-align: center;             /* center text on mobile */
  }

  .hero-text {
    padding: 2rem 1rem;
  }

  .hero-text h1 {
    font-size: 2rem;                /* smaller headline */
  }

  .hero-image {
    min-height: 250px;              /* smaller image height */
  }
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;              /* pill shape */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Primary button: golden with glow */
.btn-primary {
  background: var(--accent);
  color: var(--bg);
  border: 2px solid var(--bg);
}

.btn-primary:hover {
  background: var(--font-serif);              /* lighter gold */
  box-shadow: var(--accent);
  transform: translateY(-3px);
}

/* Ghost button: outlined with playful fill on hover */
.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-ghost:hover {
  background: var(--accent);
  color: var(--bg);
  transform: scale(1.05);
}

/* Fun ripple effect */
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--bg-2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.btn:hover::after {
  width: 200%;
  height: 200%;
}

.comments-slider {
  background: var(--bg-soft);
  padding: 3rem 2rem;
  color: var(--text);
  text-align: center;
  height: auto;            /* default */
  min-height: 250px;
}

@media (min-width: 768px) {
  .comments-slider {
    height: 350px;         /* larger screens keep fixed height */
  }
}


.comment-box {
  max-width: 900px;
  margin: auto;
  font-size: 1.25rem;
  line-height: 1.6;
  font-style: italic;
}

.comment-box h5 {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--accent);
}

.comment-box h5 small{
  font-size: 1.00rem;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--accent);
}

.subscribe {
  background: var(--bg-soft);
  color: var(--text);
  padding: 3rem 2rem;
  text-align: center;
}

.subscribe-container {
  max-width: 600px;
  margin: auto;
}

.subscribe h2 {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.subscribe p {
  color: var(--muted);
  margin-bottom: 2rem;
}

.subscribe-form {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.subscribe-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: 30px;
  font-size: 1rem;
}

.subscribe-form button {
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
}

.latest-news {
  background: var(--bg-soft);
  padding: 4rem 2rem;
  text-align: center;
}

.latest-news h2 {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.latest-news .intro {
  color: var(--muted);
  margin-bottom: 2rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.news-item {
  background: var(--bg);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--bg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--bg-2);
}

.news-item h3 {
  margin-bottom: 1rem;
  color: var(--accent);
}

.news-item p {
  color: var(--text);
  margin-bottom: 1rem;
}


.bio-list {
  list-style: none;
  padding: 0;
}
.bio-list li {
  background: var(--whitebg);
  margin: 8px 0;
  padding: 12px;
  border-radius: 8px;
  box-shadow: var(--bg);
}

.bio-hero { 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  padding: 20px; 
  border-radius: 16px;
  background: linear-gradient(135deg, var(--whitebg), var(--bg-soft)); 
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  overflow: hidden;
  position: relative;
}

.bio-hero img { 
  max-width: 100%; 
  height: auto; 
  border-radius: 16px; 
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Fun hover effect */
.bio-hero img:hover { 
  transform: scale(1.05); 
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

/* Optional decorative overlay */
.bio-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.15), transparent);
  pointer-events: none;
}

@media (max-width: 600px) { 
  .bio-hero { 
    padding: 12px; 
    border-radius: 12px;
  } 
  .bio-hero img {
    border-radius: 12px;
  }
}

.bio-text {
  color: var(--muted);
  -webkit-font-smoothing: antialiased;
  font-smooth: always;
  
  letter-spacing: 0.3px;
}

.bio-block {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    margin: 3rem 0;
}

.bio-block.reverse {
    flex-direction: row-reverse;
}

.bio-img {
    width: 40%;
    border-radius: 10px;
    object-fit: cover;
}

.bio-text-block {
    width: 60%;
}

.bio-text-block p {
    font-size: 1.25rem;
    line-height: 1.75;
    margin-bottom: 1.4rem;
}

/* Mobile */
@media (max-width: 768px) {
    .bio-block,
    .bio-block.reverse {
        flex-direction: column;
    }

    .bio-img,
    .bio-text-block {
        width: 100%;
    }
}


.award-text{
  color: var(--accent); 
}

#awards li {
  text-align: left;
  padding: 8px 12px;
  margin-left: 10%;   /* use percentage instead of fixed px */
 
  font-size: 1.2rem;
}

/* On very small screens, remove the extra margin */
@media (max-width: 768px) {
  #awards li {
    margin-left: 5%;   /* smaller indent on tablets/phones */
  }
}

@media (max-width: 480px) {
  #awards li {
    margin-left: 0;    /* no indent on small phones */
    padding-left: 16px; /* keep a little text padding */
  }
}

.bio-text h2{
  color: var(--accent);
}

.awards-h2 {
  text-align: left;
  margin-left: 10%;   /* optional: adds a bit of spacing from the edge */
}

#contact a{
  text-decoration: none;
  color: var(--accent); 
  font-weight: 500;
}

#contact a:hover { 
  color: var(--bg-2); 
}

.concerts {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

.concerts-title {
  font-family: "Playfair Display", serif;
  font-size: 2.6em;
  text-align: center;
  margin-bottom: 50px;
  color: var(--accent);
  letter-spacing: 1px;
  position: relative;
  animation: fadeInDown 0.8s ease;
}

.concerts-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent);
  margin: 14px auto 0;
  border-radius: 2px;
  animation: slideIn 1s ease;
}

.concert-card {
  background: var(--whitebg);
  border-radius: 18px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.concert-card::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: all 0.6s ease;
}

.concert-card:hover::before {
  left: 100%;
}

.concert-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}

.concert-card h3 {
  color: var(--accent);
  margin-top: 0;
  font-size: 1.6em;
  font-weight: 700;
  transition: color 0.3s ease;
}

.concert-card:hover h3 {
  color: var(--bg);
}

.concert-card .date {
  color: var(--mediumgrey);
  font-size: 1em;
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
  letter-spacing: 0.5px;
}

.concert-card p {
  color: var(--bg-soft);
  margin: 0 0 10px;
  line-height: 1.7;
  font-size: 1.05em;
  transition: color 0.3s ease;
}

.concert-card:hover p {
  color: var(--bg-soft);
}

.concertinfobtn { 
  display: inline-block; 
  padding: 12px 22px;
  background: var(--accent); 
  color: var(--white); /* always white text */ 
  text-decoration: none; 
  border-radius: 30px; 
  font-weight: 600; 
  letter-spacing: 0.5px; 
  transition: all 0.3s ease; 
  box-shadow: 0 4px 12px rgba(0,0,0,0.12); 
}

.concertinfobtn:hover { 
  background: var(--lightgold); 
  transform: translateY(-3px) scale(1.05); 
  color: var(--bg-soft); /* keep text white for clarity */ 
  box-shadow: 0 6px 16px rgba(0,0,0,0.18); }

/* Fun animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { width: 0; opacity: 0; }
  to { width: 80px; opacity: 1; }
}
.form-legend {
  font-size: 1.2em;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 10px;
}

.pdf-download {
    text-align: center;
}

.pdf-download a {
    text-decoration: none;   /* removes underline */
    color: inherit;          /* keeps the same text colour as the heading */
}

.page-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.2rem;
    font-weight: 700;
}

.form-group {
    margin-bottom: 25px;
}
.blog-card {
    background: var(--text);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: none;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Responsive image container */
.blog-card-img {
    width: 100%;
    aspect-ratio: 16 / 9; /* You can change this to 4/3, 3/2, etc. */
    overflow: hidden;
}

/* Image fills the container responsively */
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.btn-post { background: transparent; 
  border: 2px solid var(--bg); /* or your preferred color */ 
  color: var(--bg); 
  transition: all 0.25s ease; } 
  
.btn-post:hover {
  background:var(--bg); /* hover background color */ 
  color: var(--whitebg); /* text color on hover */ 
  border-color: var(--bg); 
}


.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background: white;
    width: 100%;
    max-width: 1900px;
    padding: 20px;
    border-radius: 8px;
    position: relative;
}


.close-btn {
    position: absolute;
    top: 14px;
    right: 14px;

    /* Bigger button */
    width: 52px;
    height: 52px;

    /* Modern circular style */
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);

    /* Bigger cross */
    font-size: 34px;
    font-weight: 700;
    color: #222;

    /* Center the X perfectly */
    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    /* Modern shadow + smooth animation */
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
}

.close-btn:hover {
    background: #ff4d4f;
    color: white;
    transform: scale(1.12);
}

.close-btn:active {
    transform: scale(0.95);
}


.album-hero img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.tagline {
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: #ffc107;
}
.btn-album {
    border-radius: 999px;
    padding: 0.6rem 1.4rem;
}
.review-quote {
    border-left: 3px solid #ffc107;
    padding-left: 1rem;
    margin-bottom: 1rem;
    font-style: italic;
}
.section-title {
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.95rem;
    color: #bbbbbb;
}

.track-list .track-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 14px 18px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.25s ease;
    cursor: pointer;
}

.track-list .track-item:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

.track-number {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffc107;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.track-title {
    font-size: 1.05rem;
    font-weight: 500;
}

.track-sub {
    font-size: 0.9rem;
    opacity: 0.8;
}

#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Push behind all content */
    opacity: 0.35; /* Optional: soften the video */
}

/* Default state: text is black */
.dropdown-menu .dropdown-item {
    color: black !important;
}

/* Hover state: keep Bootstrap’s default blue */
.dropdown-menu .dropdown-item:hover {
    color: var(--accent) !important;
}

.concert-section {
  background: #fafafa;
}

.video-wrapper {
  overflow: hidden;
  border-radius: 12px;
}

.responsive-video {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.concert-title {
  color: #d4af37; /* richer gold */
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* Wider white cards ONLY inside the concerts section */
#concerts .concert-card {
  background: #ffffff;
  padding: 3.5rem 3rem;
  border-radius: 22px;
  width: 100%;
  max-width: 700px;        /* wider cards */
  min-height: 380px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  text-align: center;
  color: #000;
}

#concerts .concert-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.25);
}

/* Typography */
#concerts .concert-location {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

#concerts .concert-date,
#concerts .concert-name {
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}

/* Button */
#concerts .concert-btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background: #000;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.25s ease;
}

#concerts .concert-btn:hover {
  background: #333;
}
/* Section background */
#latest-news {
  background: #fafafa;
}

/* Heading */
.news-heading {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* Intro text */
#latest-news .intro {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  opacity: 0.85;
}

/* News card */
.news-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

/* Text inside cards */
.news-date {
  font-size: 0.95rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 0.5rem;
}

.news-summary {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 1.5rem;
}

/* Button */
.news-btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  background: #000;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.25s ease;
}

.news-btn:hover {
  background: #333;
}


/* QR Section */
.qr-section {
  margin-bottom: 40px;
  text-align: center;
}

/* Responsive 3-column layout */
.qr-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;                 /* 控制三图之间的距离 */
  flex-wrap: wrap;           /* 小屏幕自动换行 */
}

/* Each QR item */
.qr-item {
  text-align: center;
}

/* Make all QR images same size and clear */
.qr-item img {
  width: 280px;              /* 统一宽度 */
  height: 280px;             /* 统一高度 */
  object-fit: contain;       /* 保持比例，不变形 */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.25s ease;
  image-rendering: crisp-edges;
  image-rendering: pixelated; /* 保持二维码清晰 */
}

.qr-item img:hover {
  transform: scale(1.88);
}

.qr-item p {
  margin-top: 8px;
  font-size: 0.95rem;
}

/* Mobile responsiveness */
@media (max-width: 900px) {
  .qr-item img {
    width: 230px;
    height: 230px;
  }
}

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.icon-link:hover {
  opacity: 0.75;
}

.price {
  color: var(--accent);
}

.bio-hero-composition {
    max-width: 820px;      /* clean, modern width */
    margin: 0 auto;        /* center container */
}

.bio-hero-composition img {
    width: 100%;
    height: auto;          /* prevents distortion */
    border-radius: 14px;   /* softer, modern corners */
    display: block;
    box-shadow: 0 10px 28px rgba(0,0,0,0.12); /* premium shadow */
    image-rendering: auto; /* ensures crisp rendering */
}

.composition-description {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    font-size: 1.05rem;
}

.composition-description h2 {
    font-weight: 600;
}

.composition-description h4 {
    font-weight: 600;
    margin-top: 1.5rem;
}

.card-body {
  min-height: 260px; /* adjust as needed */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.video-thumbnail-wrapper {
    position: relative;
    cursor: pointer;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 64px;
    color: white;
    opacity: 0.85;
    pointer-events: none;
}

.video-thumbnail {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

 .date {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.ticket-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 12px 22px;
    background: #0057b8;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s ease;
}

.ticket-button:hover {
    background: #003f87;
}

.container-news {
  max-width: 1250px;
  margin: 60px auto;
  padding: 0 20px;
  background: #fff;
  color: #666;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  padding: 40px 50px;
}

.small-news-card:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    transition: 0.2s ease;
    color: #666;
}
.news-content-box {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 2rem;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.small-news-thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 6px;
}

a {
    color: var(--accent);
}
a:hover, a:focus {
    color: var(--accent);
}

.yf-masonry-wrapper {
  max-width: 1500px;
  margin: 20px auto 100px;   /* reduced from 60px */
  padding: 0 28px;
}

.yf-gallery-title {
  font-size: 2.6rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}

.yf-gallery-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 45px;
}

/* Masonry layout */
.yf-masonry {
  column-count: 3;
  column-gap: 28px;
  position: relative;          /* allow stacking */
  z-index: 1;
}

@media (max-width: 1200px) {
  .yf-masonry { column-count: 2; }
}

@media (max-width: 700px) {
  .yf-masonry { column-count: 1; }
}

/* Allow hover image to escape the grid */
.yf-masonry-item {
  break-inside: avoid;
  margin-bottom: 28px;
  overflow: visible;           /* <-- critical */
  position: relative;          /* <-- needed for z-index */
  border-radius: 18px;
  transition: transform .25s ease, box-shadow .25s ease;
  z-index: 1;
}

.yf-masonry-item img {
  width: 100%;
  display: block;
  border-radius: 18px;
  transition: transform .35s ease;
  position: relative;
  z-index: 2;
}

/* BIG hover enlargement that sits on top of the page */
.yf-masonry-item:hover img {
  transform: scale(1.6);       /* enlarge */
  z-index: 9999;               /* bring to top */
  position: relative;
}

/* Lift the card */
.yf-masonry-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
  z-index: 9998;               /* ensure container is above page */
}

/* Lightbox overlay */
.yf-lightbox {
  display: none;
  position: fixed;
  z-index: 10000;              /* stays above hover images */
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  padding: 40px;
  overflow: auto;
}

.yf-lightbox-img {
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  animation: yf-fade-in .25s ease-out;
}

@keyframes yf-fade-in {
  from { opacity: 0; transform: scale(.95); }
  to   { opacity: 1; transform: scale(1); }
}

.yf-lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 3rem;
  color: white;
  cursor: pointer;
  font-weight: 300;
  transition: opacity .2s ease;
}

.yf-lightbox-close:hover {
  opacity: 0.6;
}

.lang-switch {
    padding: 1px 5px;
    border: 1px solid #ccc;
    border-radius: 1px;
    text-decoration: none;
    font-size: 9px;
    color: #333;
    transition: 0.2s;
}

.lang-switch:hover {
    background: #f0f0f0;
}

/* Main nav container */
.navbar-cn {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
  white-space: nowrap;
}

/* Normalize ALL nav links including dropdown toggle */
.navbar-cn > li > a,
.navbar-cn .dropdown-toggle {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 20px;
  padding: 8px 12px !important;   /* override Bootstrap */
  border-radius: 6px;
  transition: all 0.25s ease;
  letter-spacing: 0.03em;

  display: flex !important;       /* force vertical centering */
  align-items: center !important;
  line-height: 1.4 !important;    /* fix baseline mismatch */
}

/* Fix Bootstrap's default dropdown arrow alignment */
.navbar-cn .dropdown-toggle::after {
  margin-left: 6px;
  vertical-align: middle;
}

/* Fix the LI container alignment */
.navbar-cn .nav-item.dropdown {
  display: flex;
  align-items: center;
}

/* Hover effect */
.navbar-cn > li > a:hover,
.navbar-cn .dropdown-toggle:hover {
  background: rgba(0,0,0,0.08);
  color: var(--accent);
}

/* Dropdown menu modern style */
.dropdown-menu {
  border-radius: 8px;
  padding: 8px 0;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Dropdown items */
.dropdown-item {
  padding: 10px 16px;
  font-size: 14px;
  transition: background 0.2s ease;
}

.dropdown-item:hover {
  background: rgba(0,0,0,0.06);
}

/* Mobile behavior */
@media (max-width: 991px) {
  .navbar-cn {
    flex-wrap: wrap;
    gap: 14px;
  }
}

/* Layout: left nav + right content */
.bio-nav {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 180px;
  padding: 20px 0;
  font-size: 15px;
}

.bio-nav a {
  text-decoration: none;
  color: var(--text);
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
}

.bio-nav a:hover {
  background: rgba(0,0,0,0.08);
  color: var(--accent);
}

/* Content area */
.bio-content {
  max-width: 750px;
  line-height: 1.8;
  font-size: 16px;
}

/* Section titles */
.bio-content h2 {
  margin-top: 40px;
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 600;
  border-left: 4px solid var(--accent);
  padding-left: 10px;
}

/* Paragraphs */
.bio-content p {
  margin-bottom: 16px;
  color: var(--text);
}

/* Mobile layout */
@media (max-width: 900px) {
  .bio-nav {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 10px;
  }

  .bio-content {
    margin-left: 0;
  }
}
.bio-layout {
  display: flex;
  align-items: flex-start;   /* ensures content starts at the top */
  gap: 40px;                 /* spacing between nav and content */
}

html {
  scroll-padding-top: 180px; /* adjust based on your navbar height */
}
.photo-block {
  margin-bottom: 24px;
}

.bio-photo {
  width: 100%;
  max-width: 500px;
  display: block;
  margin-bottom: 8px;
  border-radius: 8px;
}
.gap {
  margin-left: 40px; /* adjust as needed */
}
