    html, body {
      margin: auto;
      padding: 0;
      background-color: #191919;
      color: #e0e0e0;
      font-family: 'Open Sans', Arial, sans-serif;     
      scroll-behavior: smooth;
    }

::-webkit-scrollbar {
    width: 0px;
    background: transparent; /* make scrollbar transparent */
}
    /* Action Bar */
    .action-bar {
      background: #232323 url('content/media/images/bg-texture-charcoal.png') repeat;
      color: #e0e0e0;
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 32px 0 625px;
      height: 48px;
      border-bottom: 1px solid #333;
    }
    .action-bar .contact-info {
      display: flex;
      align-items: center;
      gap: 24px;
      
    }
    .action-bar .contact-info i {
      margin-right: 6px;
      color: #bea13e;
    }
    .action-bar .social-icons {
      display: flex;
      gap: 18px;
    }
    .action-bar .social-icons a {
      color: #e0e0e0;
      font-size: 1.2rem;
      transition: transform 0.2s, color 0.2s;
      display: inline-block;
    }
    .action-bar .social-icons a:hover {
      color: #00ccff;
      transform: scale(1.2) rotate(-10deg);
    }

    /* Hamburger for mobile */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 36px;
  height: 36px;
  cursor: pointer;
  margin-left: auto;
}
.hamburger span {
  height: 4px;
  width: 100%;
  background: #bea13e;
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 900px) {
  .header-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 600px) {
  .header-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
   

    /* Sticky Header */
  header {
   position: sticky;
   top: 0;
   z-index: 1000;
   background: #232323 url('images/bg-texture-charcoal.png') repeat;
   border-bottom: 1px solid #333;

   
}
     /* Header/Nav */

header {
      background: #232323 url('content/media/images/bg-texture-charcoal.png') repeat;
      padding: 0;
      border-bottom: 1px solid #333;
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      min-height: 100px;
    }
    .logo {
      flex: 0 0 auto;
      padding: 0 25px 0 25px;
      display: flex;
      align-items: center;
    }
    .logo img {
      height: 120px;
      width: auto;
      display: block;
    }
    nav {
      flex: 1 1 auto;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      background: #232323;
    }
    .navbar {
      display: flex;
      gap: 36px;
      list-style: none;
      margin: 0;
      padding: 0 25px 0 0;
    }
    .navbar li {
      display: inline-block;
    }
    .navbar a {
      position: relative; 
      color: #bea13e;
      font-family: 'Montserrat', Arial, sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-decoration: none;
      transition: color 0.2s;
      padding: 8px 0;
      
    }

    .navbar a::after {
      content: '';
      position: absolute;
      left: 0; right: 0; bottom: -2px;
      height: 2px;
      background: linear-gradient(180deg, #232323 0%, #00ccff 100%, #232323 0%);
      opacity: 0;
      transform: scaleX(0.7);
      transition: opacity 0.4s, transform 0.4s;
      border-radius: 2px;
    }
    .navbar a:hover, .navbar a.active {
      color: #00ccff;      
      border-bottom: 2px solid #00ccff;
    }

    .navbar a:hover::after, .navbar a.active::after {
      opacity: 1;
      transform: scaleX(1);
  }
    .navbar .buy-now a {
      color: #fff;
      background: linear-gradient(90deg, #bea13e 60%, #948D07 100%);
      border-radius: 24px;
      padding: 8px 22px;
      font-size: 1.1rem;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      letter-spacing: 2px;
      margin-left: 18px;
      box-shadow: 0 2px 12px rgba(190,161,62,0.15);
      transition: background 0.2s, color 0.2s, transform 0.2s;
      text-decoration: none !important;
      border-bottom: none !important;
    }

    .navbar .buy-now a::after {
      display: none !important;
}
    .navbar .buy-now a:hover {
      background: linear-gradient(90deg, #00ccff 60%, #12bfae 100%);
      color: #232323;
      transform: scale(1.07);
    }
    /* Hero Image */

  .hero {
  position: relative;
  width: 100vw;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #111;
  z-index: 1;
}

.hero-image-container {
  position: relative;
  display: inline-block;
  animation: heroFadeIn 2.5s cubic-bezier(.4,0,.2,1) forwards;
  opacity: 0;
  
}

@media (max-width: 900px) {
  .hero-image-container {
    max-width: 100vw;
    padding: 0 4vw;
  }
  }
  @keyframes heroFadeIn {
  to { opacity: 1; }
}

@keyframes titleFadeIn {
  to { opacity: 1; }
}
 
 .hero-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  border-bottom: 2px solid #232323;
}

@media (max-width: 600px) {
  .hero-img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 768px) {
  .hero-img {
   width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .hero-img {
    width: 100%;
    height: auto;
  }
}
    /* Section Styles */
    section {
      padding: 80px 0 80px 0;
      background: #232323;
    }
    section:nth-of-type(even) {
      background: #111111;
    }
    .section-title {
      text-align: center;
      margin-bottom: 32px;
    }
    h1 {
      font-family: 'Playfair Display SC', serif;
      text-transform: uppercase;
      text-align: center;
      font-size: 60px;
      font-weight: 700;
      color: #bea13e;
      margin: 0 0 16px 0;
      margin-bottom: 2px;
      letter-spacing: 2px;
    }
    h3 {
      font-family: 'Montserrat', Arial, sans-serif;
      text-align: center;
      font-size: 30px;
      font-weight: 300;
      color: #00ccff;
      margin: 0 0 24px 0;
      margin-top: 2px;
      margin-bottom: 40px;
      letter-spacing: 1px;
    }

     h5 {
      font-family: 'Montserrat', Arial, sans-serif;
      text-align: center;
      font-size:1.1rem;
      color:#bea13e;
      margin: 24 0 24px 0;
      letter-spacing: 1px;
    }

    p, li, a, span {
      font-family: 'Open Sans', Arial, sans-serif;
      color: #e0e0e0;
      font-size: 1.08rem;
      line-height: 1.7;
      max-width: 760px;
    }
    /* Band Section */

        
    .band-description {
      max-width: 760px;
      margin: 0 auto 40px auto;
      padding: 0 32px;
      display: center;
      text-align: left;
      
      
    }

    @keyframes bounceIn {
  0% { transform: scale(0.7); opacity: 0; }
  60% { transform: scale(1.1); opacity: 1; }
  80% { transform: scale(0.95);}
  100% { transform: scale(1);}
}
@keyframes slideUp {
  0% { transform: translateY(60px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
#band .section-title h1.in-view,
#band .section-title h3.in-view {
  animation: bounceIn 1s cubic-bezier(.68,-0.55,.27,1.55);
}

#band .band-description p {
  opacity: 0;
}
#band .band-description p.in-view {
  animation: slideUp 1s 0.5s forwards;
}
#band .band-description p.in-view {
  opacity: 0;
  animation: slideUp 1s 0.5s forwards;
}
#band .band-description p:nth-child(2) { animation-delay: 0.7s; }
#band .band-description p:nth-child(3) { animation-delay: 0.9s; }
  
    .band-portfolio-img {
      display: block;
      margin: 0 auto 40px auto;
      width:auto;
      height: auto;
      max-width: 1200px;
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 4px 32px rgba(0,0,0,0.25);
    }
    .band-staff-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.staff-card {
  position: relative;
  width: 285px;   /* 380px * 0.75 ≈ 285px */
  height: 324px;  /* 432px * 0.75 ≈ 324px */
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  transition: transform 0.2s, box-shadow 0.2s;
  background: #232323;
}
.staff-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.staff-card:hover {
  transform: scale(1.06) rotate(-2deg);
  box-shadow: 0 8px 8px #00ccff;
}
.staff-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: #bea13e;
  color: #181818;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  padding: 14px 0 10px 0;
  letter-spacing: 1px;
  border-radius: 0 0 12px 12px;
  transition: background 0.2s;
  /* Always visible, no sliding */
}

.staff-caption p {
 
  background: #bea13e;
  color: #181818;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .9rem;
  font-weight: 550;
  text-align: center;
  letter-spacing: 1px;
  padding: 0 0 5px 0;
  margin: 0;
  border-radius: 0 0 12px 12px;
  transition: background 0.2s;
  /* Always visible, no sliding */
}
.staff-card:hover .staff-caption {
  bottom: 0;
  background: #00ccff;
  color: #181818;
}

.staff-card:hover .staff-caption p {
  bottom: 0;
  background: #00ccff;
  color: #181818;
}
/* Modal styles */
.portfolio-modal {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(24,24,24,0.95);
  align-items: center;
  justify-content: center;
}
.portfolio-modal.open {
  display: flex;
}
.portfolio-modal img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 8px 32px #000a;
}
.close-modal {
  position: absolute;
  top: 40px;
  right: 60px;
  font-size: 3rem;
  color: #bea13e;
  cursor: pointer;
  z-index: 3100;
  transition: color 0.2s;
}

.portfolio-modal.light-bg {
  background: #e0e0e0 !important;
}
.portfolio-modal.light-bg img {
  background: #e0e0e0;
  box-shadow: 0 8px 32px #000a;
}
.close-modal:hover {
  color: #00ccff;
}
@media (max-width: 900px) {
  .band-staff-row { gap: 18px; }
  .staff-card { width: 90vw; height: 300px; }
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 40px;
  justify-items: center;
}
.gallery-item img {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s, transform 1.2s;
  cursor: pointer;
}
.gallery-item.visible img {
  opacity: 1;
  transform: translateY(0);
}
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(24,24,24,0.95);
  align-items: center;
  justify-content: center;
}
.gallery-modal.open {
  display: flex;
}
.gallery-modal img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 8px 32px #000a;
}
.close-modal#close-gallery-img-modal {
  position: absolute;
  top: 40px;
  right: 60px;
  font-size: 3rem;
  color: #bea13e;
  cursor: pointer;
  z-index: 3100;
  transition: color 0.2s;
}
.close-modal#close-gallery-img-modal:hover {
  color: #1de9b6;
}
  
/* Booking Section */


#booking {
 background-color: #191919;
 margin: 0 auto 40px auto;
 padding: 0 32px;
 display: center;
 text-align: left;
 transition: background 0.3s;
 z-index: 1;
  
}

#booking h1 {
padding: 32px 0 0 0;
}

#booking p {
display: center;
text-align: left;
max-width:600px; 
margin:0 auto;
padding: 12px 0;
}

/* Booking Section Animations */
@keyframes bookingBounceIn {
  0% { transform: scale(0.7); opacity: 0; }
  60% { transform: scale(1.1); opacity: 1; }
  80% { transform: scale(0.95);}
  100% { transform: scale(1);}
}
@keyframes bookingSlideUp {
  0% { transform: translateY(60px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
#booking .booking-animate {
  opacity: 0;
}
#booking .booking-animate.in-view {
  opacity: 1;
}
#booking .section-title h1.booking-animate.in-view,
#booking .section-title h3.booking-animate.in-view {
  animation: bookingBounceIn 1s cubic-bezier(.68,-0.55,.27,1.55);
}
#booking p.booking-animate.in-view {
  animation: bookingSlideUp 1s 0.5s forwards;
}
#booking p.booking-animate {
  opacity: 0;
}
#booking  p:nth-child(2) { animation-delay: 0.7s; }
#booking  p:nth-child(3) { animation-delay: 0.9s; }


.btn-main.ask-quote {
  background: linear-gradient(90deg, #00ccff 60%, #12bfae 100%);
  color: #181818;
  text-align: center;
  border: none;
  border-radius: 24px;
  padding: 12px 0 32px 0;
  font-size: 1.1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  width: 30%;
  display: block;
  margin: 32px auto 0 auto;  
}

.btn-main.ask-quote:hover {
  background: linear-gradient(90deg,#00ccff 60%, #12bfae 100%);
  color: #232323;
  transform: scale(1.03);
}



/* Events Section */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  padding: 0 32px;
  
}
.event-card {
  background: #232323;
  border-radius: 14px;
  box-shadow: 0 4px 24px #0005;
  padding: 18px;
  text-align: center;
  transition: box-shadow 0.3s, border 0.3s;
}
.event-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.event-photo {
  width: 376px;
  height: 204px;
  background: #181818 url('images/placeholder.png') center center/cover no-repeat;
  border-radius: 10px;
  margin: 0 auto 16px auto;
  transition: box-shadow 0.4s, border 0.4s;
  border: 2px solid transparent;
}
.event-card:hover .event-photo {
  box-shadow: 0 0 16px 4px#00ccff, 0 0 8px 8px #bea13e55;
  border: 2px solid#00ccff;
}
.event-card h3 {
  color: #bea13e;
  margin: 10px 0 6px 0;
}
.event-card p {
  color: #e0e0e0;
  font-size: 1rem;
}
@media (max-width: 1200px) {
  .event-photo { width: 100%; }
  .events-grid { grid-template-columns: 1fr; }
}
    /* Reviews */

  .reviews-section-title h3 {
  margin-bottom: 2px;
  margin-top: 0;
  padding: 0;
}

.reviews-section-title h5 {
  margin-top: 0;
  margin-bottom: 24px;
  padding-bottom: 32px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;  
}

.reviews-grid blockquote {
  background: #232323;
  border-left: 2px solid #00ccff;
  border-radius: 8px;
  margin: 0;
  padding: 24px 24px 16px 24px;
  color: #e0e0e0;
  font-size: 1.08rem;
  box-shadow: 0 2px 16px #0004;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.reviews-grid blockquote footer {
  color: #bea13e;
  text-align: right;
  margin-top: 18px;
  font-size: 1rem;
}
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; padding: 0 10px; }
}
@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; padding: 0 2vw; }
}

/* Stormchasers */

#stormchasers {
  margin: 0;
  width: 100%;
  background: #1d1d1d;
}
.storm-p-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 32px auto 0 auto;
  display: center;
  text-align: left;
  align-items: start;
}
.storm-p-columns p {
  background: transparent;
  color: #e0e0e0;
  font-size: 1.08rem;
  margin: 0;
  padding: 12px 12px 24px 12px;
  max-width: 100%;
}
@media (max-width: 900px) {
  .storm-p-columns {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
 .songlist-container {
  max-width: 1200px;
  margin: 20px auto 0 auto;
  padding: 0 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.songlist-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 1fr));
  gap: 24px 24px; /* 24px vertical and horizontal gap */
  align-items: start;
}
.songlist-box {
  background: #232323;
  border-radius: 14px;
  box-shadow: 0 4px 24px #0005;
  padding: 10px;
  min-width: 250px;
  width: auto;
  height: auto;
  box-sizing: border-box;
  margin-bottom: 0;
  border: 2px solid transparent;
  max-width: 300px;
  transition: box-shadow 0.2s, border 0.2s;
  display: flex;
  flex-direction: column;
}
.songlist-box.dragging {
  border: 2px dashed#00ccff;
  box-shadow: 0 0 0 4px#00ccffaa;
}
.songlist-box h3 {
  color: #bea13e;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  margin: 0 0 10px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #444;
  text-align: center;
  cursor: grab;
  user-select: none;
}
.songlist-box ol {
  margin: 0;
  padding-left: 18px;
  font-size: 1.05rem;
}
.songlist-box li {
  margin-bottom: 4px;
  cursor: grab;
  user-select: none;
  transition: color 0.2s;
}
.songlist-box li:hover {
  color:#00ccff;
}
.drag-over {
  background: #232323cc;
  border: 2px dashed #bea13e;
}
.song-request-area {
  flex: 1;
  background: #232323;
  border-radius: 14px;
  box-shadow: 0 4px 24px #0005;
  padding: 24px 18px 18px 18px;
  min-width: 420px;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: sticky;
  top: 120px; /* Adjust as needed for your header height */
  align-self: flex-start;
  z-index: 2;
}
.song-request-area h2 {
  color:#00ccff;
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-align: center;
 
}
#request-box {
  width: 96%;
  min-height: 180px;
  background: #181818;
  color: #e0e0e0;
  border: 2px solid #bea13e;
  border-radius: 8px;
  padding: 6px;
  font-size: 1rem;
  margin-bottom: 18px;
  resize: vertical;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: border 0.2s;
}
#request-box:focus {
  border: 2px solid#00ccff;
  outline: none;
}
#send-request-btn {
  background: linear-gradient(90deg, #00ccff 60%, #12bfae 100%);
  color: #181818;
  border: none;
  border-radius: 24px;
  padding: 12px 0;
  font-size: 1.1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  width: 100%;
}
#send-request-btn:hover {
  background: linear-gradient(90deg,#00ccff 60%, #12bfae 100%);
  color: #232323;
  transform: scale(1.03);
}
@media (max-width: 1100px) {
  .songlist-columns { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 800px) {
  .songlist-container { flex-direction: column; gap: 24px; }
  .songlist-columns { grid-template-columns: 1fr; }
  .song-request-area { margin-left: 0; }  
}

/* Contact */
#contact .form-group {
  margin-bottom: 18px;
  position: relative;
}
#contact label {
  display: block;
  color: #bea13e;
  font-weight: 600;
  margin-bottom: 6px;
}
#contact input, #contact textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #444;
  background: #181818;
  color: #e0e0e0;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: border 0.2s;
}
#contact input:focus, #contact textarea:focus {
  border: 1.5px solid #1de9b6;
  outline: none;
}
#contact button {
  background: linear-gradient(90deg, #00ccff 60%, #12bfae 100%);
  color: #181818;
  border: none;
  border-radius: 24px;
  padding: 12px 0;
  font-size: 1.1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
#contact button.btn-main {
  width: 100%;
}
#contact button:hover {
  background: linear-gradient(90deg,#00ccff 60%, #12bfae 100%);
  color: #232323;
  transform: scale(1.03);
}

#contact .error-message {
  color: #ff5252;
  font-size: 0.95rem;
  position: absolute;
  left: 0;
  bottom: -18px;
  display: none;
  background: #232323;
  padding: 2px 8px;
  border-radius: 4px;
  z-index: 2;
}
#contact input.invalid, #contact textarea.invalid {
  border: 1.5px solid #ff5252;
}
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  text-align: center;
  color: #1de9b6;
  font-size: 1.2rem;
}

.form-success .btn-main {
  margin: 0 auto;
  text-align: center;
  align-items: center;
  justify-content: center;
  max-width: 400px;
}

.form-success p {
  margin-bottom: 18px;
  padding-top: 12px;
  color: #e0e0e0;
  font-size: 1.2rem;
  width: 30%; 
  margin: auto; 
  text-align: center;
}

    /* Footer */
    footer {
      background: #232323 url('content/media/images/bg-texture-charcoal.png') repeat;
      color: #e0e0e0;
      padding: 32px 0 16px 0;
      text-align: center;
      border-top: 1px solid #333;
      margin-top: 60px;
    }
    .footer-social {
      margin-bottom: 12px;
    }
    .footer-social a {
      color: #e0e0e0;
      margin: 0 10px;
      font-size: 1.3rem;
      transition: color 0.2s, transform 0.2s;
      display: inline-block;
    }
    .footer-social a:hover {
      color: #00ccff;
      transform: scale(1.2) rotate(-10deg);
    }
    .copyright {
      color: #bea13e;
      font-size: 1rem;
      margin-top: 8px;
      letter-spacing: 1px;
    }
    /* Responsive */
    @media (max-width: 1100px) {
      .header-inner { padding: 0 10px; }
      .logo { padding: 0 10px 0 10px; }
      nav .navbar { padding-right: 10px; }
      .gallery-grid { max-width: 98vw; }
    }
    @media (max-width: 900px) {
      .header-inner { flex-direction: column; align-items: flex-start; min-height: 80px; }
      nav { width: 100%; justify-content: flex-start; margin-top: 16px; }
      .navbar { gap: 18px; padding: 0; }
      .logo img { height: 48px; }
      .band-staff-row { gap: 18px; }
      .gallery-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 600px) {
      .action-bar, .header-inner { flex-direction: column; align-items: flex-start; padding: 0 4vw; }
      .logo { padding: 0; }
      .navbar { flex-wrap: wrap; gap: 10px; }
      .gallery-grid { grid-template-columns: 1fr; }
      .gallery-item img { height: 100px; }
      section { padding: 40px 0 30px 0; }
    }

    /* Responsive Navbar */
@media (max-width: 900px) {
  .navbar {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 100px;
    right: 0;
    width: 220px;
    background: #232323;
    box-shadow: -2px 0 16px #000a;
    padding: 32px 0;
    z-index: 2000;
    gap: 0;
  }
  .navbar.open {
    display: flex;
  }
  .navbar li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #333;
    text-align: right;
  }
  .navbar li:last-child {
    border-bottom: none;
  }
  .navbar a {
    display: block;
    padding: 16px 32px;
    font-size: 1.2rem;
  }
  .hamburger {
    display: flex;
  }
  .header-inner {
    flex-direction: row;
    align-items: center;
  }
}