/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #4b12c6;
    color: #ffffff;
    line-height: 1.6;
}

/* Navigation Styles */
nav {
    background-color: #1e1e1e;
    padding: 1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
   /*  position:fixed;*/
   /*  width: 100%;*/
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-right: 1em;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff8800;
}

/* Hero Section Styles */
.hero {
    text-align: center;
    padding: 3em 1em;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

.hero p {
    font-size: 1em;
    margin-bottom: 1.5em;
}

.btn {
    display: inline-block;
    padding: 0.5em 1em;
    text-decoration: none;
    color: #fff;
    background-color: #ff8800;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #1e1e1e;
}

/* Contact Section Styles */
.contact {
    /*background-color: #1e1e1e;*/
    background-color: #263a77;
    padding: 4em 1em;
    text-align: center;
}

.contact h2 {
    font-size: 2.2em;
    margin-bottom: 1em;
    color: #F7E7CE;
}

.contact p {
    font-size: 1.1em;
    color: #f8f6f6;
}

/* Footer Styles */
footer {
    background-color: #1e1e1e;
    padding-bottom: 1em;
    text-align: center;
    position: relative;
    margin-top: auto;
    bottom: 0;
    width: 100%;
}

/* Navigation Styles with Animation */
nav {
    background-color: #1e1e1e;
    padding: 1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    /*animation: pulseLogo 1s infinite alternate; /* New animation for logo */
}
/*
@keyframes pulseLogo {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}
*/


.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-right: 1em;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff8800;
}

.nav-links li:hover {
    opacity: 1;
    transform: scale(1.2);
    transition: transform 0.3s ease;
}


nav {
    /*background-color: #1e1e1e;*/
    background-color:212121;
    padding: 1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-right: 1em;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease; /* Added transition for transform property */
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff8800;
}

.nav-links li:hover {
    opacity: 1;
    transform: scale(1.2);
    transition: transform 0.3s ease; /* Added transition for transform property */
}

/* Navigation small devices*/

.nav-links2 {
    list-style: none;
    display: flex;
}

.nav-links2 li {
    margin-right: 1em;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.nav-links2 a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}



/* About Section Styles */
.about {
   /* background-color: #1e1e1e;*/
    
    background-color: #1a0c44;
    padding: 1% 5% 1% 5%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; /* Stack items vertically */
}

.about-content {
    
    display: flex;
    align-items: center; /* Align items to the top */
    justify-content: center;
    flex-direction:row-reverse; /* Place items in a row */
    width: 100%;
  
}

.profile-picture {
    width: 260px;
    height:260px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 0px;
    display: flex; /* Center the content horizontally */
    align-items: center; /* Center the content vertically */
}

.profile-picture img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.about h2 {
    font-size: 2.2em;
    margin-bottom: 0em;
    color: #FFFFF0;
}

.about p {
    font-size: 1em;
    color: #aaa;
    text-align: center; 
}

 /* Additional styling for better readability */

  .tracklist {
    padding: 10px;
    margin: 5px 0;
  }

/* About Section Styles SMALL */
.about-small {
    /*background-color: #1e1e1e;*/
    background-color: #200f53;
    padding: 1% 5% 1% 5%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; /* Stack items vertically */
}

.about-content-small {
    display: flex;
    align-items: center; /* Align items to the top */
    justify-content: center;
    flex-direction:column;
  
}

.about-small h2 {
    font-size: 2.2em;
    margin-bottom: 0em;
    color: #FFFFF0;
    padding-bottom: 5%;
}

.about-small p {
    font-size: 1em;
    color: #aaa;
    text-align: center; 
    padding-top: 5%;
    padding-bottom: 5%;
}


/* Mixes Section Styles */
/*.mixes {
    padding: 4em 1em;
    text-align: center;
}
*/

.mixes {
    background-color: #5c3aa3;
    padding: 1em 1em;
    text-align: center;
}

.mixes h2 {
    font-size: 2.2em;
    margin-bottom: 1em;
    color: #FFFFF0;
}

.mix {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px;
    transition: transform 0.3s ease; /* Adding a transition for a subtle effect */

}

.mix:hover {
    transform: scale(1.05); /* Scaling the mix on hover for a subtle effect */
}

.mix h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

.mix p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 15px;
}

.mix a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff8800;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease; /* Adding transition for button color change */
}

.mix a:hover {
    background-color: #e07400; /* Changing button color on hover */
}


/* Releases Section Styles */

.releases {
    background-color: #310681;
  padding: 1em 1em; 
    text-align: center;
}

.releases h2 {
    font-size: 2.2em;
    margin-bottom: 1em;
    color: #FFFFF0;
}

.releases a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff8800;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease; /* Adding transition for button color change */
}

.releases p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 15px;
}

.release {
  /*  width: 90vw; */
    height: 400px; /* Set a fixed height for the container */  
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px;
    transition: transform 0.3s ease; /* Adding a transition for a subtle effect */
    background-image: url('images/wedding dj booth 1.jpg'); /* Set the path to your image */
    background-size: cover; /* Scale the background image to cover the entire div */
    background-position: center; /* Center the background image */
    background-repeat: no-repeat; /* Do not repeat the background image */
}

.release:hover {
    transform: scale(1.05); /* Scaling the mix on hover for a subtle effect */
}

.release h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}



.release a:hover {
    background-color: #e07400; /* Changing button color on hover */
}



/* Contact Section Styles */
.contact {
    
     /*background-color: #1e1e1e;*/
     background-color: #3350a6;
    padding: 4em 1em;
    text-align: center;
    color: #fff;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    margin: 0 10px;
    text-decoration: none;
}

.social-links img {
    width: 60px; /* Adjust the size of your social media icons */
    height: 60px;
    border-radius: 50%;
    transition: transform 0.3s ease; /* Adding a transition for a subtle effect on hover */
}

.social-links a:hover img {
    transform: scale(1.2); /* Scaling the icons on hover for a subtle effect */
}


/* carousel area */
.carousel-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.carousel-content {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 350px;
    
}

.carousel-item {
    width: 100%;
    flex: 0 0 auto;
    /*object-fit: fill;*/
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.carousel-control {
    cursor: pointer;
    background: #333;
    color: #fff;
    padding: 10px;
}

/* Hide the carousel on small screens */
@media screen and (max-width: 600px) {
    .carousel-container {
      display: none;
    }
    .nav-links {
        display: none;
      }
      .nav-links2 {
        display: flex;
      }
      .about {
        display:none;
      }

      .gallery {
        display: flex;
        flex-direction: column; /* Stack images vertically */
        align-items: center; /* Center images */
        gap: 10px;
    }

    
    .gallery img {
        max-height: 80vh; /* Ensures the image doesn’t take up more than 80% of screen height */
        object-fit: contain; /* Keeps the full image visible */
    }
  }


  /*  Show full menu on big screens */
@media screen and (min-width: 601px) {
    .nav-links {
        display: flex;
      }
      .nav-links2 {
        display: none;
      }
      .about-small {
        display:none;
      }
  }

  
  /* Style for monthly charts */
.monthly-chart {
    display: none; /* Hide all monthly charts by default */
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.chart-controls {
    display: flex; /* Use flexbox */
    flex-direction: column; /* Arrange buttons vertically */
    align-items: center; /* Center items horizontally */
    background-color: #865718;
    padding: 5px 0px 0px 0px;
}

.chart-controls button {
    display: block;
    margin-bottom: 5px; /* Add some vertical spacing between buttons */
    padding: 20px 10px; 
    width: 360px;
    text-align: center; /* Center button text */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    border-radius: 10px; /* Rounded corners */
    font-size: 30px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: #b1988c;
}

.controls button:hover {
    background-color: #2980b9; /* Change background color on hover */
}

.monthly-chart h1 {
    font-size: 2.2em;
    margin-bottom: 0em;
    color: #ff8800;
}

.monthly-chart t1 {
    background-color: #3498db; /* Blue */
      color: white;
      width: 100%;
}

.monthly-chart t2 {
    background-color: #2e278f; /* Red */
    color: white;
    width: 100%;
}



 /* Style for the chart container */
 #chart-container {
    text-align: center; /* Center-align the content */
}

/* Style for the chart data */
#chart-container ul {
    list-style: none; /* Remove default list styles */
    padding: 2px; /* Remove default padding */
    background-color: #3498db;
}

#chart-container ul li {
    padding: 20px 20px; /* Add padding */
    margin: 10px 10px; /* Add margin */
    background-color: #4447da; /* Background color */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Box shadow */
    font-family: Arial, sans-serif; /* Font family */
    font-size: 16px; /* Font size */
    color: #fcfcfc; /* Text color */
    transition: background-color 0.3s ease; /* Smooth transition */
}






/* Whyme Section Styles SMALL */
.whyme-small {
    background-color: #263a77;
    /*padding: 1.8em 12em;*/
    padding: 1% 5% 1% 5%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; /* Stack items vertically */
}

.whyme-content-small {
    display: flex;
    align-items: center; /* Align items to the top */
    justify-content: center;
    flex-direction:column;
  
}

.whyme-small h2 {
    font-size: 2.2em;
    margin-bottom: 0em;
    color: #FFFFF0;
    padding-bottom: 5%;
}

.whyme-small p {
    font-size: 1em;
    color: #aaa;
    text-align: center; 
    padding-top: 5%;
    padding-bottom: 5%;
}


/* disco text Section Styles SMALL */
.discotext-small {
    background-color: #310681;
    /*padding: 1.8em 12em;*/
    padding: 0% 5% 1% 5%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; /* Stack items vertically */
}

.discotext-content-small {
    display: flex;
    align-items: center; /* Align items to the top */
    justify-content: center;
    flex-direction:column;
  
}

.discotext-small h2 {
    font-size: 2.2em;
    margin-bottom: 0em;
    color: #FFFFF0;
    padding-bottom: 5%;
}

.discotext-small p {
    font-size: 1em;
    color: #aaa;
    text-align: center; 
    padding-top: 5%;
    padding-bottom: 5%;
}


.no-link {
    text-decoration: none; /* Removes the underline */
    color: inherit; /* Keeps the color consistent with the surrounding text */
    /* pointer-events: none; Disables the link functionality */
    /* cursor: default; /* Changes the cursor to default */
}




/* Gallery Layout */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjust grid */
    gap: 15px;
    padding: 10px;
    max-width: 90%;
    margin: auto;
}

/* Image Styling */
.gallery img {
    width: 100%;
    height: auto;
    border-radius: 10px; /* Rounded corners */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    cursor: pointer;
}

/* Hover Effect */
.gallery img:hover {
    transform: scale(1.05); /* Slight zoom effect */
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.3);
}


