/* Typography */
body {
    font-family: 'Corbel', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
  }
  
  .page-heading {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
  }
  
  .page-text {
    font-weight: bold;
    font-size: 1.1rem;
  }
  
  /* Navbar Styling */
  .navbar-wrapper {
    width: 100%;
  }
  
  .custom-navbar {
    background-color: #060733;
    border-radius: 50px;
    margin-right: 30px;
    width: 70%;
    
  }
  @media (max-width:768px){
    .custom-navbar {
      background-color: #060733;
      border-radius: 50px;
      margin-right: 0px !important; 
      width: 70%;
      
    }
  }
  
  .navbar-brand,
  .nav-link,
  .btn-danger {
    font-family: 'Anton', sans-serif !important;
    font-size: 1.2rem;
  }
  
  .navbar-brand {
    font-size: 1.5rem;
    font-weight: 100 ;
  }
  
  .nav-link {
    transition: 0.2s;
    font-weight: 50 !important;
  }
  .nav-link:hover {
    text-decoration: underline;
  }
  
  .btn-danger {
    border-radius: 20px;
    padding: 6px 20px;
  }
  
  /* Custom toggler icon */
  .navbar-toggler {
    border: none;
  }
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
  





 /* Outer container with red borders */
.gig-ticker {
    width: 100%;
    overflow: hidden;
    background-color: #4554ae;
    border-top: 3px solid #e50914;
    border-bottom: 3px solid #e50914;
    padding: 1.5rem 0; /* Added vertical padding */
  }
  
  /* Sliding track */
  .gig-ticker-track {
    display: flex;
    white-space: nowrap;
    animation: scrollLoop 20s linear infinite;
  }
  
  /* Repeated content */
  .gig-ticker-track span {
    color: #fff;
    font-family: 'Anton', sans-serif;
    font-size: 1.75rem; /* Slightly increased font size */
    padding-right: 2rem;
    line-height: 2.5rem; /* Ensures good vertical spacing */
  }
  
  /* Keyframes for seamless scrolling */
  @keyframes scrollLoop {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  









  .fullscreen-bg-section {
  height: 100vh !important;
  width: 100%;
  background-image: url('/images/captionweb.png'); /* Desktop image */
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  border-bottom: 6px solid #e50914;
}

@media (max-width: 768px) {
  .fullscreen-bg-section {
    background-image: url('/images/Caption.png'); /* Mobile image */
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    border-bottom: 6px solid #e50914;
  }
}





.gig-footer {
  background-color: #111;
  color: #fff;
  padding: 40px 20px 20px;
  text-align: center;
  font-family: 'Anton', sans-serif;
  border-top: 3px solid #e50914;
  font-weight: 100 !important;
}

.footer-logo img {
  width: 160px;
  margin-bottom: 20px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-nav a,
.footer-nav .terms-btn {
  color: #fff;
  text-decoration: none;
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-nav .terms-btn:hover {
  color: #f1c40f;
}

.terms-btn {
  background: none;
  border: none;
  cursor: pointer;
}

/* Social Media Section */
.social-section {
  margin-bottom: 10px !important;
  padding: 0px 0;
}

.social-title {
  font-family: 'Anton', sans-serif;
  font-size: 2rem;
  margin-top: 50px !important;
  font-weight: 400;
  color: #f12d0f;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 0ypx;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: #fff;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 50%;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.social-link:hover {
  color: #ffaa00;
  text-decoration: none;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}


.social-link.telegram:hover {
  
  border-color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 136, 204, 0.4);
}

.social-link.mail:hover {
  
  border-color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 136, 204, 0.4);
}

.social-link.twitter:hover {
  background: #000000;
  border-color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.social-link i {
  font-size: 1.5rem;
}

/* Press Kit Button */
.press-kit-btn {
  background: rgb(212, 0, 0);
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
}

.press-kit-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(229, 9, 20, 0.5);
}

.press-kit-btn i {
  font-size: 1.1rem;
}

/* Press Kit Modal */
.press-kit-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: #1a1a1a;
  margin: 2% auto;
  padding: 0;
  border-radius: 15px;
  width: 90%;
  max-width: 1200px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.modal-header {
  background:#080731;
  color: white;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 15px 15px 0 0;
}

.modal-header h2 {
  margin: 0;
  font-family: 'Anton', sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
}

.close-btn {
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: all 0.3s ease;
}

.close-btn:hover {
  transform: scale(1.2);
  color: #f1c40f;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  padding: 30px;
}

.gallery-item {
  position: relative;
  background: #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.download-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(229, 9, 20, 0.9);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.download-btn:hover {
  background: #e50914;
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.5);
}

.download-btn i {
  font-size: 1rem;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #aaa;
}

/* Responsive Design */
@media (max-width: 768px) {
  .social-links {
    gap: 20px;
  }
  
  .social-link {
    width: 45px;
    height: 45px;
  }
  
  .social-link i {
    font-size: 1.3rem;
  }
  
  .social-title {
    font-size: 1.3rem;
  }
  
  .press-kit-btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
  
  .gallery-container {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px;
  }
  
  .modal-header h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .social-link {
    width: 40px;
    height: 40px;
  }
  
  .social-link i {
    font-size: 1.2rem;
  }
  
  .gallery-container {
    grid-template-columns: 1fr;
  }
  
  .modal-content {
    width: 95%;
    margin: 5% auto;
  }
}

  

  @media (max-width:768px){  .nnn222 {
    width: 55% !important;
    margin-top: 2px !important;
  }
}

.nnn222 {
  text-decoration: none;
  width: 30%;
  height: auto;
 
}



.back-btn {
  background-color: #e50914;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 2rem;
  font-family: 'Anton', sans-serif;
  border-radius: 12px;
  transition: 0.3s ease;
  color: white;
}
.back-btn:hover {
  background-color: #fff;
  color: #000;
}


.learn-more-btn {
  background-color: #e50914;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 2rem;
  font-family: 'Anton', sans-serif;
  border-radius: 12px;
  transition: 0.3s ease;
  color: white;
}

.learn-more-btn:hover {
  background-color: #fff;
  color: #000;
}


.press-kit-btn {
  display: inline-block;
  padding: 12px 20px;
  background-color: red;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}
.press-kit-btn:hover {
  background-color: #fff;
  color: #000;
}


.email-link {
  color: #fff;
  text-decoration: none !important;
  transition: color 0.3s ease;
}

.email-link:hover {
  color: #f8e61b; /* Or any accent color you prefer */
  text-decoration: underline;
}
