/* Global Styles */
body {
    margin: 0px;
    padding: 0px;
    font-family: 'Times New Roman', Times, serif;
    background-color: black;
}

.navbar{
    background-color: #0b070f !important;
}

.navbar .nav-link {
    color: white !important;
}
.navbar .nav-link:hover {
    color: #ccc !important;
}



.head {
    color: #dd69fa;
    font-size: 100px;
    font-weight: 800;
    font-family: 'Times New Roman', Times, serif;
}

.secondtitle {
    color: #dd69fa;
    font-size: 50px;
    font-weight: 500;
    font-family: 'Times New Roman', Times, serif;
}


h1 {
    font-size: 100px;
}
h2 {
    font-size: 50px;
}
h3 {
    font-size: 35px;
}
h4 {
    font-size: 24px;
}   
h5 {
    font-size: 20px;
}

p {
    font-size: 18px;
}

.hero {
    background: url('/assets/images/heroimage.jpeg') center center/cover no-repeat;
    height: 900px;
    color: white;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 0;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.795);
    z-index: -1;
}

/* Custom Button Styling */
.custom-btn {
    background-color: #dd69fa;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.custom-btn:hover {
    background-color: #e591fa;
    transform: scale(1.05);
    color: #fff;
}

  .space{
        padding: 100px 40px;
    }
 .footspace{
        padding: 50px 40px 25px 40px ;
    }

    /* about */

    #about{
        background-color: #151517;
    }

    .abouimg{
        width: 100%;
        height: 500px;
        border-radius: 15px ;
    }

    .intro{
       color: #dd69fa; 
    }


/* music */

#music{
    background-color: #0e0e0f;
}

#card{
    background-color: #cccccc10;
    border-radius: 10px;
    box-shadow: 2px  2px 2px 2px #dd69fa  ;
    box-shadow: rgba(217, 108, 245.12) 0px 1px 3px, rgba(217, 108, 245, 0.24) 0px 1px 2px;
}

.card-text{
color: #88888b;
}

#icontitle{
    margin-left: -8px;
}

/* media gallery */
 #media{
        background-color: #151517;
    }
.gallery{
    border-radius: 8px;
}

#galleryimages{
    padding: 80px 0px;
}

/* events */

#events{
    background-color: #0e0e0f;
}

/* contact */
 #contact{
        background-color: #151517;
    }

/* Shared Small Button Style */
.small-btn {
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    min-width: 120px;
}

/* Individual Button Colors */
.events-btn {
    background-color: #ff9800;
    color: white;
}
.events-btn:hover {
    background-color: #e67e00;
    transform: scale(1.05);
}

.live-btn {
    background-color: #00bcd4;
    color: white;
}
.live-btn:hover {
    background-color: #0196a3;
    transform: scale(1.05);
}

/* Custom input and textarea styles */
.custom-input {
    background-color: rgba(0, 0, 0, 0.6); /* semi-transparent black */
    color: #fff;
    border: 1px solid #999;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    font-size: 1rem;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.custom-input:focus {
    outline: none;
    border-color: #dd69fa;
    box-shadow: 0 0 5px rgba(221, 105, 250, 0.5);
}

form label {
    color: #fff;
    margin-bottom: 5px;
    display: inline-block;
}


/* footer */

.footpages a{
color: #88888b;
font-size: 14px;
}
.footpages a:hover{
color: #dd69fa;
}


.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  padding: 5px;
  font-size: 24px;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  text-align: center;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  text-decoration: none;
}

.whatsapp-icon {
  display: inline-block;
}

/* Media Queries */

/* Tablet: Devices with width 600px to 991px */
@media (max-width: 991px) {
    .head {
        font-size: 80px; 
    }

    h1 {
        font-size: 80px; 
    }

    h2 {
        font-size: 40px; 
    }

    h3 {
        font-size: 30px; 
    }

    .hero {
        height: 600px; 
    }

    .custom-btn {
        padding: 8px 16px; 
        font-size: 0.9rem; 
    }
     .home{
        padding: 60px 20px;
    }
      .space{
        padding: 40px 20px;
    }
    #card{
        margin-top: 30px;
    }
    #galleryimages{
    padding: 60px 0px;
}
}

/* Mobile: Devices with width 600px or less */
@media (max-width: 600px) {
    .head {
        font-size: 60px; 
    }

    h1 {
        font-size: 60px; 
    }

    h2 {
        font-size: 35px; 
    }

    h3 {
        font-size: 28px; 
    }

    p {
        font-size: 16px;
    }

    .hero {
        height: 500px;
    }

    .custom-btn {
        padding: 8px 12px; 
        font-size: 0.8rem; 
    }

    .navbar .nav-link {
        font-size: 0.9rem; 
    }

    .home{
        padding: 40px 25px;
    }
     .space{
        padding: 40px 20px;
    }
    #icontitle{
    margin-left: 0px;
}
 #card{
        margin-top: 30px;
    }
    #contactform{
        margin-top: 30px;
    }
.aboutxt{
    text-align: center;
}
.abouimg{
        width: 100%;
        height: 400px;
        border-radius: 15px ;
    }

    .footspace{
        padding: 40px 20px 15px 20px ;
    }

    #galleryimages{
    padding: 40px 0px;
}

}


@media (max-width: 767px) {
  .footer-mobile-center {
    text-align: center;
  }
}
