html {
    scroll-behavior: smooth;
    scroll-padding: 60px;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    overflow-x: hidden; /* Ensure no horizontal scrolling */
}

.music-hero {
    top: 60px;
    position: relative;
    width: 100%;
    height: 600px; /* Set a fixed height for the hero section */
    background-image: url('/IMAGES/music/Music\ Production\ Hero\ Image.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-overlay {
    color: #fff;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5); /* Slightly darkened overlay */
    padding: 20px;
    border-radius: 10px;
}

.hero-overlay h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero-overlay p {
    font-size: 1.5em;
}



.soundcloud-section {
   padding-top: 20px;
    padding-bottom: 60px;
    background-color: #151515; /* Matches the section's background color */
    text-align: center; /* Center the content */
}

.soundcloud-player {
    margin-top: 60px;
    
    padding: 30px;
    text-align: center;
    background-color: #151515;
    color: #fff;
}

.soundcloud-player h2 {
    font-size: 2em;
    margin-bottom: 50px;
}

/* vh-hero-banner/////////////////////////////////////////////////////////////////////////////// */
.vh-hero-banner {
    position: relative;
    
    left: 0;
    width: 100%;
    height: 600px;
    overflow: cover;
    z-index: 1;
  }

 
  
  .video-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    
  }
  
  .video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  

  
  .hero-logo img {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 220px;
    z-index: 10;
  }


  .text-overlay {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    padding: 10px 20px; /* Add padding to prevent overlapping */
    width: 90%; /* Ensure it does not exceed container width */
    max-width: 600px; /* Limit maximum width */
  }

  .text-overlay h2 {

    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 0px; /* Adjust the margin as needed */
  }
  
  .text-overlay p {
    font-size: 1.5em;
    font-weight: normal;
    margin-top: 0; /* Reset the default margin for <p> */
  }
  
@media (max-width: 620px) {
    .text-overlay h2 {
        font-size: 2.1em;
        font-weight: bold;
        margin-bottom: 0px; /* Adjust the margin as needed */
      }

      .text-overlay p {
        font-size: 1.4em;
        font-weight: normal;
        
      }

}


/* ecwid-store/////////////////////////////////////////////////////////////////////////////// */
.ecwid-store {
    padding: 50px;
    text-align: center;
    background-color: #222;
    color: #fff;
    position: relative; /* Ensure the position is relative, not fixed */
    background-attachment: scroll; /* Default scroll behavior for background */
}

.ecwid-store h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

/* Change the hyperlink color to white */
.ecwid-productBrowser-description a {
    color: #ffffff !important; /* Set links to white */
    text-decoration: underline; /* Optional: keep the underline for visibility */
}

/* Change the hyperlink color on hover (optional) */
.ecwid-productBrowser-description a:hover {
    color: #ffcc00 !important; /* Example: Change to a yellow color on hover */
}

/* Inquiry Form */
.custom-music-inquiry {
    background-color: #333; /* Change to your desired background color */
    color: #fff;
    padding: 30px;
    height: 600px; /* Fixed height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.inquiry-form-container {
    width: 80%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #444; /* Inner background color */
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.inquiry-form-container h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.inquiry-form-container label {
    display: block;
    font-size: 1em;
    margin-top: 10px;
    text-align: left;
}

.inquiry-form-container input,
.inquiry-form-container select,
.inquiry-form-container textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: none;
    border-radius: 5px;
    box-sizing: border-box;
}

.inquiry-form-container button {
    width: 100%;
    padding: 12px;
    background-color: #ffcc00;
    color: #000;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.inquiry-form-container button:hover {
    background-color: #e6b800;
}



.hidden {
    display: none; /* Hide the thank you message by default */
}

