 /* Custom CSS with improved responsive design */
 :root {
     --primary-pink: #d670b9;
     --primary-cyan: #00c4e2;
     --primary-dark: #949494;
     --bg-dark: #2d2424;
     --content-max-width: 1127px;

     /* Font Families */
     --primary-header-font: 'Cinzel Decorative', serif;
     --accent-font: 'Great Vibes', cursive;
     --body-font: 'Cormorant Garamond', serif;
     --ui-font: 'Montserrat', Arial, Helvetica, sans-serif;
 }

 * {
     box-sizing: border-box;
 }

 body {
     font-family: var(--body-font), var(--ui-font);
     color: #fff;
     background: #000;
     margin: 0;
     padding: 0;
     overflow-x: hidden;
 }

 em {
     font-style: italic;
     color: var(--primary-dark);
 }

 /* SEO Keywords Bar - Hidden but CSS preserved */
 .seo-keywords-bar {
     height: 31px;
     background: #000;
 }

 .seo-keywords-bar p {
     font-size: 9px;
     height: 30px;
     text-align: center;
     margin: 0;
     padding: 10px 5px;
     line-height: 1.2;
 }

 /* Header with social icons - Responsive */
 .header-social {
     background: url('../images/header_bg.jpg') center/cover no-repeat;
     width: 100%;
     max-width: var(--content-max-width);
     margin: 0 auto;
     position: relative;
     height: 52px;
 }

 .social-icons {
     position: absolute;
     right: 25%;
     top: 50%;
     transform: translateY(-50%);
     display: flex;
     gap: 4px;
 }

 .social-icons img {
     width: auto;
     height: clamp(24px, 3.5vw, 36px);
 }

 /* Navigation - Keep original design */
 .main-nav {
     background: url('../images/main_nav_bg.jpg') center/cover no-repeat;
     width: 100%;
     max-width: var(--content-max-width);
     margin: 0 auto;
     position: relative;
     height: 41px;
 }

 .nav-container {
     width: 100%;
     height: 100%;
     position: relative;
 }

 .nav-items {
     display: flex;
     align-items: center;
     height: 100%;
     justify-content: space-between;
     padding: 0 112px;
 }

 .nav-center-logo {
     background: url('../images/main_nav_title.png') center/contain no-repeat;
     width: 167px;
     height: 41px;
     flex-shrink: 0;
 }

 .nav-left,
 .nav-right {
     display: flex;
     gap: 0;
 }

 .nav-item {
     display: block;
 }

 .nav-item img {
     transition: all 0.2s ease;
     height: auto;
     display: block;
 }

 /* Mobile Navigation */
 .mobile-nav-toggle {
     display: none;
     background: none;
     border: none;
     color: white;
     font-size: 24px;
     cursor: pointer;
     position: absolute;
     right: 20px;
     top: 50%;
     transform: translateY(-50%);
     z-index: 1000;
 }

 .mobile-nav-menu {
     display: none;
     position: absolute;
     top: 100%;
     left: 0;
     right: 0;
     background: var(--primary-cyan);
     z-index: 999;
     padding: 20px;
 }

 .mobile-nav-menu.active {
     display: block;
 }

 .mobile-nav-menu a {
     display: block;
     color: white;
     text-decoration: none;
     padding: 10px 0;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
     text-align: center;
 }

 .mobile-nav-menu a:hover {
     color: var(--primary-pink);
 }

 .mobile-social-icons {
     display: flex;
     justify-content: center;
     gap: 15px;
     padding: 15px 0;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
     margin-bottom: 10px;
 }

 /* Hamburger menu animation */
 .hamburger {
     display: inline-block;
     cursor: pointer;
 }

 .hamburger span {
     display: block;
     width: 25px;
     height: 3px;
     background: white;
     margin: 5px 0;
     transition: 0.3s;
 }

 .hamburger.active span:nth-child(1) {
     transform: rotate(-45deg) translate(-5px, 6px);
 }

 .hamburger.active span:nth-child(2) {
     opacity: 0;
 }

 .hamburger.active span:nth-child(3) {
     transform: rotate(45deg) translate(-5px, -6px);
 }

 /* Hero Slider - Fully Responsive */
 .hero-slider {
     position: relative;
     width: 100%;
     max-width: var(--content-max-width);
     margin: 0 auto;
     overflow: hidden;
     /* Use aspect ratio for consistent proportions */
     aspect-ratio: 1127 / 747;
 }

 .slide {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     opacity: 0;
     transition: opacity 1s ease-in-out;
 }

 .slide.active {
     opacity: 1;
 }

 .slide img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center;
 }

 /* Content Layout - Responsive */
 .content-wrapper {
     max-width: var(--content-max-width);
     margin: 0 auto;
     position: relative;
     background: url('../images/bg_content.png') center repeat-y;
     background-size: 100% auto;
     min-height: 500px;
 }

 .content-wrapper::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 11.35%;
     /* 128px / 1127px */
     height: 100%;
     background: url('../images/bg_content_left.png') top left no-repeat;
     background-size: 100% auto;
     z-index: 1;
 }

 .content-wrapper::after {
     content: '';
     position: absolute;
     top: 0;
     right: 0;
     width: 12.07%;
     /* 136px / 1127px */
     height: 100%;
     background: url('../images/bg_content_right.png') top right no-repeat;
     background-size: 100% auto;
     z-index: 1;
 }

 .content-row {
     display: flex;
     gap: 20px;
     padding: 0 13.13%;
     /* 148px / 1127px */
     position: relative;
     z-index: 2;
 }

 .main-content {
     flex: 1;
     padding: 3% 2% 5%;
     max-width: 516px;
 }

 .sidebar {
     width: 35%;
     max-width: 300px;
     padding: 3% 0 5%;
     text-align: center;
 }

 /* Typography - Responsive */
 .main-content h1 {
     font-family: var(--primary-header-font), var(--ui-font);
     font-size: clamp(20px, 2.5vw, 28px);
     color: var(--primary-cyan);
     font-weight: normal;
     margin-bottom: 1em;
 }

 .main-content h2 {
     font-family: var(--primary-header-font), var(--ui-font);
     font-size: clamp(18px, 2.1vw, 24px);
     color: var(--primary-cyan);
     font-weight: normal;
     margin-bottom: 0.8em;
 }

 .main-content h3 {
     font-family: var(--primary-header-font), var(--ui-font);
     font-size: clamp(16px, 1.8vw, 20px);
     color: var(--primary-cyan);
     font-weight: normal;
     margin-bottom: 0.6em;
 }

 .main-content p {
     font-size: clamp(15px, 1.6vw, 18px);
     line-height: 1.6;
     text-align: justify;
     margin-bottom: 1em;
 }

 .main-content strong {
     color: var(--primary-cyan);
     font-size: 1.1em;
 }

 .main-content a {
     color: var(--primary-pink);
     text-decoration: none;
 }

 .main-content a:hover {
     text-decoration: underline;
     color: var(--primary-cyan);
     cursor: crosshair;
 }

 .float-left {
     float: left;
     margin: 0 20px 10px 0;
     width: 40%;
     max-width: 200px;
     height: auto;
 }

 .sidebar h3 {
     font-family: var(--primary-header-font), var(--ui-font);
     font-size: clamp(16px, 1.8vw, 20px);
     color: var(--primary-cyan);
     font-weight: normal;
     margin-top: 20px;
 }

 .sidebar p {
     font-size: clamp(14px, 1.4vw, 15px);
     line-height: 1.5;
     text-align: justify;
     margin: 20px 10px 0 10px;
 }

 /* Footer */
 .footer {
     background-color: var(--bg-dark);
     padding: 40px 20px;
     margin-top: 40px;
 }

 .footer-nav {
     display: flex;
     justify-content: center;
     align-items: center;
     flex-wrap: wrap;
     gap: clamp(15px, 3vw, 30px);
     margin-bottom: 20px;
 }

 .footer-nav img {
     height: clamp(60px, 8vw, 80px);
     width: auto;
 }

 .footer-nav a {
     color: #fff;
     font-size: clamp(13px, 1.5vw, 15px);
     text-decoration: none;
     white-space: nowrap;
 }

 .footer-nav a:hover {
     text-decoration: underline;
 }

 .footer-phone {
     text-align: center;
     color: #bebaba;
     font-size: clamp(15px, 1.6vw, 17px);
     margin: 20px 0;
     text-decoration: none;
 }

 .footer-copy {
     text-align: center;
     color: #8c8989;
     font-size: clamp(12px, 1.4vw, 14px);
 }

 .footer-copy a {
     color: #8c8989;
 }

 /* Responsive images */
 img {
     max-width: 100%;
     height: auto;
 }

 /* Media Queries for better breakpoints */
 @media (max-width: 1200px) {
     .content-row {
         padding: 0 10%;
     }
 }

 @media (max-width: 968px) {

     /* Keep nav background on mobile but adjust styling */
     .header-social {
         display: none;
     }

     .main-nav {
         /* Use solid background on mobile */
         background: var(--bg-dark);
         min-height: 60px;
         height: auto;
     }

     .nav-container {
         display: flex;
         align-items: center;
         justify-content: center;
         min-height: 60px;
         position: relative;
     }

     /* Show logo on mobile */
     .nav-center-logo {
         display: block;
         width: 140px;
         height: 35px;
         margin: 0 auto;
     }

     .nav-items {
         display: none;
     }

     .mobile-nav-toggle {
         display: block;
         position: absolute;
         right: 20px;
         top: 50%;
         transform: translateY(-50%);
     }

     /* Adjust mobile menu position */
     .mobile-nav-menu {
         top: calc(100% - 10px);
     }

     .content-wrapper {
         background: var(--bg-dark);
     }

     .content-wrapper::before,
     .content-wrapper::after {
         display: none;
     }

     .content-row {
         flex-direction: column;
         padding: 0 5%;
     }

     .sidebar {
         width: 100%;
         max-width: 100%;
         padding: 20px 0;
     }

     .main-content {
         max-width: 100%;
         padding: 20px 0;
     }

     /* Center all images in main content on mobile */
     .main-content img {
         display: block;
         margin-left: auto;
         margin-right: auto;
     }

     .float-left {
         float: none;
         display: block;
         margin: 0 auto 20px;
         width: 60%;
         max-width: 300px;
     }

     .hero-slider {
         aspect-ratio: 16 / 10;
     }

     /* Ensure sidebar content is properly centered */
     .sidebar img {
         display: block;
         margin-left: auto;
         margin-right: auto;
         max-width: 80%;
     }
 }

 @media (max-width: 576px) {
     .hero-slider {
         aspect-ratio: 4 / 3;
     }

     .main-content p,
     .sidebar p {
         text-align: left;
     }

     .footer-nav {
         flex-direction: column;
         gap: 10px;
     }

     /* Ensure footer logo is centered on small screens */
     .footer-nav img {
         display: block;
         margin: 0 auto 15px;
     }

     .content-row {
         padding: 0 15px;
     }

     /* Force single column layout for all content */
     .sidebar {
         display: flex;
         flex-direction: column;
         align-items: center;
         width: 100%;
     }

     .sidebar>* {
         width: 100%;
         max-width: 300px;
         margin-bottom: 20px;
     }
 }

 /* Utility classes */
 .mb-3 {
     margin-bottom: 1rem !important;
 }

 .mb-4 {
     margin-bottom: 1.5rem !important;
 }

 .mt-3 {
     margin-top: 1rem !important;
 }

 /* Primary Header Font */
 h1,
 .main-content h1,
 .nav-center-logo,
 .footer-nav img {
     font-family: var(--primary-header-font), var(--ui-font);
     letter-spacing: 0.01em;
 }

 /* Accent/Display Font for emphasis, quotes, or names */
 .accent,
 .quote,
 .display,
 blockquote,
 cite {
     font-family: var(--accent-font), var(--ui-font);
     font-style: normal;
     font-weight: 400;
 }

 /* Body Font */
 p,
 .main-content p,
 .sidebar p,
 .footer-copy,
 .footer-phone,
 .footer-nav a {
     font-family: var(--body-font), var(--ui-font);
 }

 /* UI Font for navigation and buttons as backup */
 .nav-item,
 .mobile-nav-menu a,
 button,
 input,
 select,
 textarea {
     font-family: var(--ui-font), var(--body-font);
 }

 /* Ensure strong and emphasis use accent font for extra pop */
 b {
     font-family: var(--accent-font), var(--ui-font);
 }

 /* Additional styles specific to locations page */
 .location-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
     gap: 20px;
     margin: 30px 0;
 }

 .location-card {
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 8px;
     padding: 20px;
     transition: all 0.3s ease;
 }

 .location-card:hover {
     background: rgba(255, 255, 255, 0.1);
     transform: translateY(-2px);
     box-shadow: 0 4px 20px rgba(214, 112, 185, 0.3);
 }

 .location-card h4 {
     color: var(--primary-cyan);
     font-size: 18px;
     margin-bottom: 10px;
     font-family: var(--ui-font);
 }

 .location-card a {
     color: var(--primary-cyan);
     text-decoration: none;
 }

 .location-card a:hover {
     color: var(--primary-pink);
     text-decoration: underline;
 }

 .location-address {
     color: #ddd;
     font-size: 14px;
     margin-bottom: 5px;
 }

 .age-limit {
     color: var(--primary-pink);
     font-size: 14px;
     font-weight: bold;
 }

 .schedule-section,
 .pricing-section {
     background: rgba(255, 255, 255, 0.05);
     border-radius: 8px;
     padding: 30px;
     margin: 30px 0;
 }

 .pricing-table {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 20px;
     margin: 20px 0;
 }

 .price-card {
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 8px;
     padding: 20px;
     text-align: center;
 }

 .price-card h5 {
     color: var(--primary-cyan);
     margin-bottom: 10px;
 }

 .price {
     font-size: 24px;
     color: var(--primary-pink);
     font-weight: bold;
 }

 .book-button {
     display: inline-block;
     margin: 30px auto;
     padding: 15px 40px;
     background: var(--primary-pink);
     color: white;
     text-decoration: none;
     border-radius: 50px;
     transition: all 0.3s ease;
     font-weight: bold;
     text-transform: uppercase;
 }

 .book-button:hover {
     background: var(--primary-cyan);
     color: white;
     transform: translateY(-2px);
     box-shadow: 0 4px 20px rgba(0, 196, 226, 0.4);
 }

 .terms-section {
     margin-top: 40px;
     padding: 20px;
     background: rgba(255, 255, 255, 0.05);
     border-radius: 8px;
 }

 /* Mobile responsiveness for location cards */
 @media (max-width: 576px) {
     .location-grid {
         grid-template-columns: 1fr;
     }

     .pricing-table {
         grid-template-columns: 1fr;
     }
 }

 /* Banner image responsive */
 .page-banner {
     width: 100%;
     height: auto;
     max-width: var(--content-max-width);
     margin: 0 auto;
     display: block;
 }

 /* Full width content for locations page */
 .full-width-content {
     max-width: 900px;
     margin: 0 auto;
     padding: 3% 2% 5%;
 }

 .hire-drag-button {
     position: fixed;
     bottom: 20px;
     left: 20px;
     background: rgba(248, 37, 211, 0.9);
     color: white;
     padding: 15px 25px;
     border-radius: 50px;
     text-decoration: none;
     font-weight: bold;
     box-shadow: 0 4px 20px rgba(248, 37, 211, 0.4);
     transition: all 0.3s ease;
     z-index: 1000;
 }

 .hire-drag-button:hover {
     background: rgba(248, 37, 211, 1);
     transform: translateY(-2px);
     color: white;
 }

 @media (max-width: 768px) {
     .hire-drag-button {
         position: static;
         display: block;
         width: 90%;
         margin: 20px auto;
         text-align: center;
     }
 }

  /* Additional styles specific to gallery page */
  .photo-gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 15px;
      margin: 30px 0;
  }

  .photo-item {
      position: relative;
      aspect-ratio: 1;
      overflow: hidden;
      border-radius: 8px;
      transition: transform 0.3s ease;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .photo-item:hover {
      transform: scale(1.03);
      box-shadow: 0 8px 25px rgba(214, 112, 185, 0.3);
      border-color: var(--primary-pink);
  }

  .photo-preview {
      width: 100%;
      height: 100%;
      object-fit: cover;
      cursor: pointer;
      transition: opacity 0.3s ease;
  }

  .photo-item:hover .photo-preview {
      opacity: 0.9;
  }

  /* Banner responsive */
  .gallery-banner {
      width: 100%;
      height: auto;
      max-width: var(--content-max-width);
      margin: 0 auto;
      display: block;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
      .photo-gallery-grid {
          grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
          gap: 12px;
      }
  }

  @media (max-width: 576px) {
      .photo-gallery-grid {
          grid-template-columns: 1fr 1fr;
          gap: 10px;
      }
  }

  /* Override colorbox for better mobile experience */
  @media (max-width: 768px) {
      #cboxOverlay {
          background: rgba(0, 0, 0, 0.95) !important;
      }

      #cboxContent {
          width: 85.5% !important;
          height: auto !important;
      }

      #cboxLoadedContent {
          width: 100% !important;
          height: auto !important;
          padding: 0 !important;
      }

      #cboxLoadedContent img {
          width: 100% !important;
          height: auto !important;
          max-height: 80vh !important;
          object-fit: contain !important;
      }

      #cboxClose {
          top: 10px !important;
          right: 10px !important;
          width: 30px !important;
          height: 30px !important;
          background-size: 20px !important;
      }

      #cboxNext,
      #cboxPrevious {
          height: 50px !important;
          width: 50px !important;
          top: 50% !important;
          margin-top: -25px !important;
      }
  }

 /* Location-specific styles */
 .venue-info-box {
     background: linear-gradient(135deg, rgba(214, 112, 185, 0.1), rgba(0, 196, 226, 0.1));
     border: 2px solid var(--primary-pink);
     border-radius: 15px;
     padding: 30px;
     margin: 30px 0;
     position: relative;
     overflow: hidden;
 }

 .venue-info-box::before {
     content: '';
     position: absolute;
     top: -50%;
     right: -50%;
     width: 200%;
     height: 200%;
     background: radial-gradient(circle, rgba(214, 112, 185, 0.1) 0%, transparent 70%);
     animation: pulse 4s ease-in-out infinite;
 }

 @keyframes pulse {

     0%,
     100% {
         transform: scale(0.8);
         opacity: 0.5;
     }

     50% {
         transform: scale(1.2);
         opacity: 0.8;
     }
 }

 .venue-info-box h2 {
     color: var(--primary-cyan);
     text-align: center;
     margin-bottom: 25px;
     position: relative;
     z-index: 1;
 }

 .venue-detail {
     display: flex;
     align-items: center;
     margin: 15px 0;
     padding: 10px;
     background: rgba(255, 255, 255, 0.05);
     border-radius: 8px;
     position: relative;
     z-index: 1;
 }

 .venue-detail img {
     margin-right: 15px;
 }

 .venue-detail p {
     margin: 0;
     font-size: 18px;
     color: #fff;
 }

 .venue-detail strong {
     color: var(--primary-pink);
 }

 /* FAQ Styles */
 .faq-section {
     margin-top: 40px;
     padding: 30px;
     background: rgba(255, 255, 255, 0.05);
     border-radius: 15px;
 }

 .faq-section h2 {
     color: var(--primary-cyan);
     text-align: center;
     margin-bottom: 30px;
     font-family: var(--primary-header-font);
 }

 .faq-item {
     margin-bottom: 15px;
     background: rgba(255, 255, 255, 0.05);
     border-radius: 10px;
     overflow: hidden;
     transition: all 0.3s ease;
 }

 .faq-item:hover {
     background: rgba(255, 255, 255, 0.08);
     transform: translateY(-2px);
 }

 .faq-question {
     width: 100%;
     text-align: left;
     padding: 20px;
     background: none;
     border: none;
     color: var(--primary-pink);
     font-size: 16px;
     font-weight: bold;
     cursor: pointer;
     position: relative;
     transition: all 0.3s ease;
 }

 .faq-question::after {
     content: '+';
     position: absolute;
     right: 20px;
     top: 50%;
     transform: translateY(-50%);
     font-size: 24px;
     transition: transform 0.3s ease;
 }

 .faq-item.active .faq-question::after {
     transform: translateY(-50%) rotate(45deg);
 }

 .faq-answer {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s ease;
     padding: 0 20px;
 }

 .faq-item.active .faq-answer {
     max-height: 500px;
     padding: 0 20px 20px;
 }

 .faq-answer p {
     margin-top: 10px;
     color: #ddd;
     line-height: 1.6;
 }

 /* Calendar styles */
 .calendar-container {
     margin: 20px 0;
     padding: 20px;
     background: rgba(255, 255, 255, 0.05);
     border-radius: 10px;
 }

 /* Additional content sections */
 .addtl-content {
     margin-top: 30px;
 }

 .addtl-content h3 {
     color: var(--primary-cyan);
     margin-top: 25px;
     margin-bottom: 15px;
 }

 /* Responsive adjustments */
 @media (max-width: 768px) {
     .venue-info-box {
         padding: 20px;
     }

     .venue-detail {
         flex-direction: column;
         text-align: center;
     }

     .venue-detail img {
         margin-right: 0;
         margin-bottom: 10px;
     }

     .faq-question {
         font-size: 14px;
         padding: 15px;
     }
 }

 /* Get Tickets Button */
 .get-tickets-btn {
     display: inline-block;
     background: var(--primary-pink);
     color: white;
     padding: 15px 40px;
     border-radius: 50px;
     text-decoration: none;
     font-weight: bold;
     text-transform: uppercase;
     transition: all 0.3s ease;
     margin: 20px auto;
     display: block;
     text-align: center;
     max-width: 300px;
 }

 .get-tickets-btn:hover {
     background: var(--primary-cyan);
     color: white;
     transform: translateY(-2px);
     box-shadow: 0 4px 20px rgba(0, 196, 226, 0.4);
 }

 /* Footer Locations */
 .footer-locations {
     padding: 0px;
     text-align: center;
     max-width: 900px;
     margin: 0 auto;
 }
 .footer-locations a {
     font-size: 14px;
     text-decoration: none;
     color: #fff;
 }