 /* Add your custom CSS styles here */
 body {
    font-family: Arial, sans-serif;
  }


.navbar {
  background-color: rgba(255, 255, 255, 0.5);
  font-family: 'Abolition Test', sans-serif;
  font-size: 1.6rem;
}

/* Adjust text color on transparent navigation */
.navbar-dark .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.7);
}

/* Dark text color on hover */
.navbar-dark .navbar-nav .nav-link:hover {
  color: rgba(0, 0, 0, 1);
}

.navbar-brand img {
  display: block;
  max-width: 100px; /* Adjust the maximum width as needed */
  height: auto;
}

.btn{
  font-family: 'Abolition Test', sans-serif;
  font-size: 1.1rem;
}

/* Banner */ 
 .banner h1{
    text-transform: uppercase;
    font-size: 200px;
    margin-left: -190px;
    font-weight: bold;
    opacity: 0;
    animation: fade-in 2s ease-in-out forwards;
 }

  #banner-img {
    background: url('../img/jaep-1.jpg') no-repeat center center;
    background-size: cover;
    padding: 200px 0;
    text-align: center;
    color: #fff;
  }

  /* Add fade-in animation to the banner */
  .banner {
    
  }

  @keyframes fade-in {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }




/* About Section */
.about-section {
  background-color: #f8f9fa;
  padding: 100px 0;
}

.about-section .container {
  max-width: 1100px;
}

.about-section .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.about-section .col-md-6 {
  flex: 0 0 50%;
  padding: 15px;
}

/* Artist Image */
.artist-image img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* About Content */
.about-content {
  padding: 20px;
}

.about-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
  font-family: 'Abolition Test', sans-serif;
}

.about-description {
  font-size: 16px;
  line-height: 1.6;
}

.read-more-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  font-family: 'Abolition Test', sans-serif;
}

.read-more-btn:hover {
  background-color: #0056b3;
}





  .feature-icon {
    font-size: 36px;
    margin-bottom: 10px;
  }


/* Video Section */
#videos {
  background-color: #f8f9fa;
  padding: 100px 0;
}

#videos .container {
  max-width: 1100px;
}

#videos h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;

}

/* Video Carousel */
.top-content{
margin-top: 20px;
}

.video-section .item{
  opacity:0.4;
  transition:.4s ease all;
  margin:0 20px;
  transform:scale(.8);
}


/* Contact Form */
  #contact{
    margin-top: 40px;
    margin-bottom: 0px !important;
    background-color: #f8f9fa;
  }

  #contact h2{
    text-align: center;
    font-weight: bold;
    font-size: 100px; 
    font-family: 'Abolition Test', sans-serif;

  }

  #contact form {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 5px;
  }
  #footer {
    background: #343a40;
    color: #fff;
    padding: 20px 0;
    font-family: 'Abolition Test', sans-serif;
    font-size: 1.2rem;
  }


  /* Media Queries for Mobile */
@media (max-width: 768px) {
  .banner h1{
    font-size: 5.1rem;
    margin-left: -20px;
  }
  .about-section {
    padding: 50px 0;
  }

  .about-section .col-md-6 {
    flex: 0 0 100%;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-description {
    font-size: 1rem;
  }

  top-content .carousel-control-prev, 
    .top-content .carousel-control-next { display: none; }
    .top-content .carousel-indicators li { margin-left: 10px; margin-right: 10px;
     }
}