.gig-fullscreen {
    
    height: 100%;
    background-color: #080731;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    box-sizing: border-box;
    overflow-y: auto;
  }
  
  .gig-content {
    max-width: 1200px;
    text-align: center;
  }
  
  .gig-main-header {
    font-size: 4rem;
    line-height: 1.4;
    margin-bottom: 2rem;
    font-family: 'Anton', sans-serif;
    color: #fff;
  }
  
  .gig-main-header .highlight {
    color: #e50914;
    font-weight: bold;
  }
  
  .gig-subtext {
    font-size: 1.1rem;
    margin: 1rem 0;
    line-height: 1.7;
    color: #ccc;
  }
  
  .gig-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0rem;
  }
  
  .gig-card {
    position: relative;
    background-color: #010101;
    border: 2px solid #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    overflow: hidden;
  }
  
  
  
  .gig-card.with-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* red transparent overlay */
    z-index: 1;
  }
  

  
  .gig-card.with-bg2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* red transparent overlay */
    z-index: 1;
  }
  
  .gig-card-content {
    position: relative;
    z-index: 2;
  }
  
  .gig-card h3 {
    font-size: 2rem;
    color: #e40a10;
    margin-bottom: 1rem;
    font-family: 'Anton', sans-serif;
  }
  
  .gig-card p {
    font-size: 1rem;
    color: #eee;
    line-height: 1.6;
  }
  
  
  
  
  .gig-button {
    background-color: #e50914;
    color: #fff;
    font-size: 1.2rem;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
    
  }
  
  .gig-button:hover {
    background-color: #ff1f3d;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .gig-main-header {
      font-size: 1.8rem;
    }
    .gig-subtext{
      font-size: 1rem;
      padding-left: 5px !important;
      padding-right: 5px !important;
    }
  
    .gig-cards {
      flex-direction: column;
    }
  
    .gig-card {
      text-align: left;
    }
  }
  






  .about-gig {
  height: 100vh !important;
  width: 100%;
  background-image: url('/images/5.png'); /* Desktop image */
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
   border-top: 6px solid #e50914;
    border-bottom: 6px solid #e50914;
}

@media (max-width: 768px) {
  .about-gig {
    background-image: url('/images/5.png'); /* Mobile image */
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    border-bottom: 6px solid #e50914;
  }
}


  
  .about-gig1 {
    position: relative;
    background-color: rgb(32, 32, 54);
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 60px 20px;
    font-family: 'Corbel Light', sans-serif;
    border-top: 6px solid #e50914;
    z-index: 1;
    overflow: hidden;
  }
  
  .about-gig1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5); /* black overlay with transparency */
    z-index: 0;
  }
  
  .about-gig1 * {
    position: relative;
    z-index: 1;
  }
  
  
  .container1 {
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .about-section-title1 {
    
    text-align: left !important;
    font-family: 'Anton', sans-serif;
    font-size: 4.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #e60910;
    
  }
  
  .about-block1 {
    margin-bottom: 40px;
  }
  
  .subheading1 {
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ffffff;
  }
  
  .about-text1 {
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: bold;
    color: #f9f9f9;
  }
  
  .gig-list1 {
    list-style: disc;
    padding-left: 20px;
    font-weight: bold;
    line-height: 1.8;
    font-size: 1rem;
  }
  
  /* Mobile optimization */
  @media (max-width: 768px) {
    .section-title1 {
      font-size: 2.2rem;
    }
  
    .subheading1 {
      font-size: 1.5rem;
    }
  
    .about-text1,
    .gig-list1 {
      font-size: 0.95rem;
    }
  }
  