    /* ------------------------------ Global Styles ------------------------------ */
    *,
    *:before,
    *:after {
      box-sizing: border-box;
    }
    body {
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
      color: #fff;
      background: #000;
    }
    a {
      text-decoration: none;
      color: #fff;
    }
    
    /* ------------------------------ Header (Retained) ------------------------------ */
    header {
      background: rgba(0, 0, 0, 0.7);
      padding: 40px;
      position: relative;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 3000; /* Ensure header appears above overlay */
    }
    .logo img {
      max-width: 300px;
      height: auto;
    }
    nav {
      position: relative;
      display: flex;
      align-items: center;
    }
    ul.desktop-menu {
      list-style: none;
      display: flex;
      margin: 0;
      padding: 0;
    }
    ul.desktop-menu > li {
      position: relative;
      margin-left: 20px;
    }
    ul.desktop-menu > li > a {
      font-weight: bold;
      transition: color 0.3s ease;
    }
    ul.desktop-menu > li > a:hover {
      color: #ddd;
    }
    /* Dropdown submenu with fade/slide effect */
    ul.desktop-menu li ul.dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      background: rgba(0, 0, 0, 0.8);
      list-style: none;
      margin: 0;
      padding: 10px 0;
      min-width: 150px;
      z-index: 9999;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    }
    ul.desktop-menu li ul.dropdown li a {
      display: block;
      padding: 8px 15px;
      white-space: nowrap;
    }
    ul.desktop-menu li ul.dropdown li a:hover {
      background: rgba(255, 255, 255, 0.1);
    }
    ul.desktop-menu li:hover ul.dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .social-media {
      display: flex;
      align-items: center;
      margin-left: 20px;
    }
    .social-media a {
      margin-left: 10px;
      display: inline-block;
    }
    .social-media img {
      width: 24px;
      height: auto;
    }
    .contact-us {
      margin-left: 20px;
    }
    .contact-us a {
      display: inline-block;
      padding: 10px 30px;
      background-color: #ffd511;
      color: #000;
      font-size: 18px;
      border-radius: 4px;
      transition: background 0.3s ease;
      font-weight: bold;
      text-transform: uppercase;
    }
    .contact-us a:hover {
      background-color: #ebb300;
    }
    .burger-menu {
      display: none;
      flex-direction: column;
      cursor: pointer;
      margin-left: 20px;
    }
    .burger-menu span {
      display: block;
      width: 25px;
      height: 3px;
      margin: 4px 0;
      background: #fff;
      transition: background 0.3s ease;
    }
    @media screen and (max-width: 1115px) {
      ul.desktop-menu,
      .social-media,
      .contact-us {
        display: none;
      }
      .burger-menu {
        display: flex;
      }
      .logo img {
        max-width: 200px;
      }
    }
    
    /* ------------------------------ Hero Banner ------------------------------ */
    .hero-banner {
      position: relative;
      height: 50vh;
      background: url('img/concert.jpg') no-repeat center center/cover;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-banner h1 {
      font-size: 36px;
      background: rgba(0, 0, 0, 0.6);
      padding: 20px;
      border-radius: 4px;
    }
    
    /* ------------------------------ Main Content Section ------------------------------ */
    .content-section {
      padding: 50px 20px;
      background-color: #000;
      text-align: center;
    }
    .content-section h2 {
      font-size: 32px;
      margin-bottom: 20px;
    }
    .content-section p {
      max-width: 800px;
      margin: 0 auto 20px;
      line-height: 1.6;
      font-size: 18px;
    }
    
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.gallery a {
  flex: 1 1 30%;
  max-width: 32%;
  aspect-ratio: 16 / 9; /* This makes all gallery items 16:9 shape */
  display: block;
  overflow: hidden;
  border-radius: 8px; /* optional, for rounded corners */
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* This makes the image fill and crop, not distort */
  display: block;
}
@media (max-width: 900px) {
  .gallery a { flex: 1 1 48%; max-width: 48%; }
}
@media (max-width: 600px) {
  .gallery a { flex: 1 1 100%; max-width: 100%; }
}


    @media screen and (max-width: 768px) {
      .gallery img {
        width: 90%;
      }
    }
    
    /* ------------------------------ Contact Section ------------------------------ */
    .contact-section {
      background-color: #000;
      padding: 50px 20px;
      text-align: center;
    }
    .contact-section h2 {
      font-size: 28px;
      margin-bottom: 20px;
    }
    .contact-section form {
      max-width: 600px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .contact-section input,
    .contact-section textarea {
      width: 100%;
      padding: 15px;
      margin-bottom: 15px;
      border: none;
      border-radius: 4px;
      background: #333;
      color: #fff;
      font-size: 16px;
      font-family: inherit;
    }
    .contact-section textarea {
      height: 150px;
      resize: vertical;
    }
    .contact-section button {
      background-color: #ffd511;
      border: none;
      color: #000;
      padding: 15px 30px;
      font-size: 18px;
      border-radius: 4px;
      font-weight: bold;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.3s ease;
    }
    .contact-section button:hover {
      background-color: #ebb300;
    }
    @media screen and (max-width: 768px) {
      .contact-section form {
        width: 90%;
        padding: 0;
      }
    }
    
    /* ------------------------------ Footer Section ------------------------------ */
    footer {
      background-color: #111;
      padding: 40px 20px;
      color: #aaa;
      font-size: 14px;
    }
    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      margin-bottom: 20px;
    }
    .footer-column {
      width: 22%;
      min-width: 200px;
      margin-bottom: 20px;
      text-align: center;
    }
    .footer-column h4 {
      margin-bottom: 10px;
      color: #fff;
      font-size: 16px;
      text-transform: uppercase;
    }
    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-column ul li {
      margin-bottom: 8px;
    }
    .footer-column ul li a {
      color: #aaa;
      font-size: 14px;
      transition: color 0.3s ease;
    }
    .footer-column ul li a:hover {
      color: #fff;
    }
    .footer-bottom {
      border-top: 1px solid #333;
      padding-top: 20px;
      text-align: center;
    }
    .footer-social {
      margin-bottom: 10px;
    }
    .footer-social a {
      margin: 0 5px;
      display: inline-block;
    }
    .footer-social img {
      width: 24px;
      height: auto;
    }
    


.content-table-wrapper {
  max-width: 900px;
  margin: 40px auto 0 auto;
  overflow-x: auto;
}

/* Default desktop/tablet styling */
.content-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  font-size: 17px;
  background: #181818;
  color: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.13);
}

.content-table th,
.content-table td {
  padding: 14px 18px;
  text-align: left;
}

.content-table thead {
  background: #232323;
  font-weight: bold;
}

.content-table th {
  border-bottom: 2px solid #333;
  letter-spacing: 0.04em;
}

.content-table tr:not(:last-child) td {
  border-bottom: 1px solid #262626;
}

.content-table tbody tr:hover {
  background: #22242c;
}

/* ------------------ Responsive styles for mobile ------------------ */
@media (max-width: 700px) {
  .content-table, .content-table thead, .content-table tbody, .content-table th, .content-table td, .content-table tr {
    display: block;
    width: 100%;
  }
  .content-table thead {
    display: none;
  }
  .content-table tr {
    margin-bottom: 18px;
    background: #181818;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.11);
    overflow: hidden;
  }
  .content-table td {
    padding: 12px 16px;
    text-align: left;
    border: none;
    position: relative;
  }
  .content-table td:before {
    content: attr(data-label);
    display: block;
    font-size: 13px;
    font-weight: bold;
    color: #ffd511;
    margin-bottom: 4px;
    letter-spacing: 0.04em;
  }
  .content-table tr:not(:last-child) {
    margin-bottom: 18px;
  }
}
	  
	  









    /* ------------------------------ Mobile Overlay ------------------------------ */
    #mobileOverlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0, 0, 0, 1);
      z-index: 2000;
      overflow: hidden;
      opacity: 0;
      transform: translateY(-100%);
      transition: opacity 0.5s ease, transform 0.5s ease;
      pointer-events: none;
    }
    #mobileOverlay.active {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
    .mobile-menu-container {
      position: relative;
      width: 100%;
      height: 100%;
    }
    #mainMobileMenu {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: transform 0.4s ease;
      transform: translateX(0);
    }
    .mobile-submenu {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: transform 0.4s ease;
      transform: translateX(100%);
    }
    .mobile-submenu.active-submenu {
      transform: translateX(0);
    }
    .mobile-menu-section a {
      color: #fff;
      font-size: 24px;
      margin: 15px;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }
    .mobile-menu-section a:hover {
      color: #ddd;
    }
