:root {
    --highlight-color: #f6eac1;
    --primary-light-color: #9ed3db;
    --primary-dark-color: #315062;
    --secondary-color: #fcfbf4;

}

html {
    cursor: url('ui/clicker.png') 16 16, auto;
}

body {
    font-family: 'Crimson Pro', serif;
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 4.5rem;
    font-family: 'Cinzel', sans-serif;
}

h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
}


p {
   font-size: 2.5rem;
   text-align: left;
}

#nav-bar-section {
    position: sticky;
    display: flex;
    top: 0;
    z-index: 100;
    width: 100%;
    background-color: var(--secondary-color);
    z-index: 10000;
    
}

.nav-bar-container {
    display: flex;
    top: 0;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    width: 100%;
    height: 12vh;
}


.nav-logo {
    height: 12vh;
    display: flex;
    margin-right: 14px;

}

.nav-logo h1{
    font-size: 24px;
    color: #000;
    font-weight: bold;
    width: 100%;
    margin-left: 3vh;
    letter-spacing: 0.1rem; 
    font-family: 'MedievalSharp', cursive;
}

.nav-logo span {
    font-weight:normal;
}

.nav-links {
    list-style: none;
    display: flex; 
    gap: 24px;
    padding: auto;
    margin: 0;

}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-size: 2rem;
    padding: 10px;
    cursor: url('ui/pointer.png')16 16, auto;

}

.nav-links a:hover {
    color: var(--primary-dark-color);
    transition: color 0.3s;
}

#hero-section {
    display: flex;
    position: relative;
    z-index: 100;
    flex: 2;
    width: 100%;
    height: 90vh
    /* background-position: center; */
}

.hero-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-text {
    position: absolute;
    top: 55%;
    left: 35%;
    transform: translate(-50%, -50%);
    text-align: left;
    line-height: 0.3;
    color: rgb(255, 255, 255);
    z-index: 2;
    text-shadow: 6px 9px 8px #000;
}

.hero-img img{
    width: 100%;
    display: block;
    transform: translateY(-20%);

   
}

.samples-container {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 50%;
    padding: 20px;
    z-index: 200;
}

.samples-text {
    padding-right: 40px;
    color: white; 
}

.player-container {
    max-width: 800px;
    margin: 0px 40px;
    position: relative;
    
}

.audio-player {
    display: flex;
    align-items: center;
    border: 1px solid var(--highlight-color);
    border-radius: 7px;
    margin-bottom: 10px;
    background-color: white;
    overflow: hidden;
    box-shadow: var(--highlight-color) 0px 5px 15px;

}

.controls {
    display: flex; 
}

.btn {
    background-color: var(--primary-light-color);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: url('ui/pointer.png')16 16, auto;
    transition: background-color 0.3s
}

.btn:hover {
    background-color: var(--primary-dark-color);
}

.btn svg {
    width: 20px;
    height: 20px;
}

.play-btn {
    fill: white;
}

.download-btn {
    fill: var(--primary-light-color);
    background-color: white;
}

.track-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;

}

.main-content-wrapper {
    display: relative;
    width: 100%;
}

#samples-section {
    position: absolute;
    top:50%;
    right: 10%;
    width: 350px;
    padding: 20px;
    z-index: 200;
}

.link-arrow {
    color: var(--primary-dark-color);
    font-size: 24px;
    display: flex;
    justify-content: flex-end;
    margin: 0;


}

.link-arrow a {
    color: var(--primary-light-color);
    text-decoration: none;
    cursor: url('ui/pointer.png') 16 16, auto;

}


.about-me-container {
    background: linear-gradient(-45deg, var(--primary-light-color), var(--primary-dark-color), #070e16); /* Dark blue gradient */
    transform: skewY(-3deg);
    margin: 30px 0;
    padding: 80px 0;
    text-align: center;
    color: white;
    position: relative;
    z-index: 2099;
    overflow: hidden;
    top: -100px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}


.about-me-container p {
    transform: skewY(3deg);
    padding: 0vh 20vh;
    text-shadow: 3px 3px 8px black;
}

.about-me-container h2 {
    transform: skewY(3deg); /* Unskew text */
    font-size: 5rem;
    letter-spacing: -5px;
    color: rgba(250, 248, 248, 0.897); /* Very light transparent text like the screenshot */
    text-shadow: 7px 3px 8px black;
    font-weight: 900;
    font-family: 'MedievalSharp', serif;
    margin: 0;
}



.rectangle {
    width: 30%;
    background: var(--highlight-color);
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
  }
  
  /* slideshow container */
  .slideshow-container {
    position: relative;
    width: 60rem;
    max-width: 80%;
    margin: 0 auto;
  }
  
  /* Slides */
  .mySlides {
    display: none;
    padding: 2rem 5rem 0 5rem;
    text-align: center;
  }
  
  .mySlidesContainer {
    min-height: 5rem;
    padding: 3.5rem 2.5rem 2rem 3.5rem;
    background: var(--highlight-color);
  }
  
  /* next & previous buttons */
  .prev,
  .next {
    cursor: url('ui/pointer.png') 16 16, auto;
    position: absolute;
    top: 55%;
    width: auto;
    margin-top: -1.875rem;
    padding: 1rem;
    color: #232323;
    font-weight: bold;
    font-size: 3rem;
    border-radius: 3px;
    user-select: none;
    transition: 0.4s;
  }
  
  /* position the "next button" to the right */
  .next {
    position: absolute;
    right: 0;
    border-radius: 3px;
  }
  
  /* on hover, add a black bg color with a little bit see-through */
  .prev:hover,
  .next:hover {
    background-color: #000; /* fallback color */
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--highlight-color);
    text-decoration: none;
  }
  
  /* the dot/bullet/indicator container */
  .dot-container {
    text-align: center;
    padding: 0 1.25rem;
  }
  
  /* the dots/bullets/indicators */
  .dot {
    height: 0.9375rem;
    width: 0.9375rem;
    margin: 0 2px;
    background-color: var(--highlight-color);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.4s ease;
  }
  
  /* add bg color to the active dot/circle */
  .active {
    background-color: #232323;
  }
  

#customer-revs {
    background-color: var(--primary-dark-color);
    width: 100%;
    font-family: 'Crimson Pro', sans-serif;
    padding: 12vh 0 7vh 0;
    transform: translateY(-40%);
}
  
#customer-revs h1 {
    font-size: 2.5rem;
    text-align: left;
    font-weight: 400;
    color: var(--highlight-color);
    margin: 3rem 0 0 0;
  }
  
#customer-revs h1 span {
    font-family: "MedievalSharp", cursive;
    font-size: 4rem;
    color: white;
    text-shadow: 3px 3px 14px black;
  }
  
  #customer-revs p,
  #customer-revs q {
    font-size: 1.2rem;
    color: black;
    text-shadow: 3px 3px 14px white;
  }
  
  #customer-revs q {
    font-weight: 500;
    line-height: 1.5rem;
  }
  
  #customer-revs p {
    color: var(--highlight-color);
  }

#services-section {
    background-color: var(--secondary-color);
    width: 100%;
    transform: translateY(-50%);
    position: absolute;
    margin-top: 10px
}

.services-container {
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    padding: 5vh;
}

.services-container h2 {
    color: black;
    font-size: 5rem;
    letter-spacing: -5px;
    text-shadow: 7px 3px 8px rgb(148, 148, 148);
    font-weight: 900;
    font-family: 'MedievalSharp', serif;
    margin: 0;

}

.row {
    display: flex;
    font-weight: 500;
    font-size: 1.32rem;
}

.cell {
    flex: 2;
    padding: 20px;
    text-align: center;
}

/*List of Brands & Scroll Animations */

@-webkit-keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-250px * 7));
    }
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-250px * 7));
    }
  }



  .slider {
    background: var(--secondary-color);
    box-shadow: 0 10px 20px -5px var(--highlight-color);
    padding: 50px;
    height: 100px;
    top: 30vh;
    margin: auto;
    display: flex;
    position: relative;
    overflow-x: hidden;
    width: 92%;
  }
  .slider::before, .slider::after {
    background: linear-gradient(to right, var(--secondary-color) 0%, transparent 100%);
    content: "";
    padding: 50px;
    height: 100px;
    position: absolute;
    width: 200px;
    z-index: 2;
  }
  .slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
  }
  .slider::before {
    left: 0;
    top: 0;
  }
  .slider .slide-track {
    -webkit-animation: scroll 35s linear infinite;
            animation: scroll 35s linear infinite;
    display: flex;
    width: calc(250px * 14);
  }
  .slider .slide {
    height: 100px;
    width: 250px;
  }
  @media screen and (max-width: 720px) {
    .slider img{
      width: auto;
    }
  }


/*Contact Form */

#contact-section {
    background-image: url('assets/bamboo_bg.webp');
    background-size: cover;
    background-position: cover;
    position: relative;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 1;
    
}

#contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.952);
    z-index: 2;
}

.contact-container {
  margin-top: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 3;
}

.contact-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.contact-middle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px
}

.contact-middle textarea {
  height: 150px;
  padding-top: 15px;
  border-radius: 20px;
}

.contact-middle h2 {
  color: black;
  margin-bottom: 5px;
  font-weight: 900;
  font-family: 'MedievalSharp', serif;
  font-size: 5rem;
  text-shadow: 7px 3px 8px rgb(148, 148, 148);
  letter-spacing: -5px;
}

.contact-middle-title hr {
  width: 80%;
  height: 5px;
  border: none;
  background-color: var(--primary-light-color);
  border-radius: 10px;
  margin-bottom: 20px
}

.contact-inputs {
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: black;
    border-radius: 50px;
    border: 1px solid var(--primary-light-color);
}

.contact-inputs:focus {
    border: 2px solid var(--highlight-color);
}

.contact-inputs::placeholder {
    color: #a9a9a9;
}

.contact-middle button {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    color: black; 
    font-size: 1rem;
    gap: 10px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(270deg, var(--primary-light-color), var(--highlight-color));
    cursor: url('ui/pointer.png') 16 16, auto;
}

.contact-middle button img {
    height: 15px;
}

.contact-info button:hover {
    background: linear-gradient(270deg, var(--primary-dark-color), var(--secondary-color));
    transition: 0.3s;
}

/* Footer Section */

#footer-section {
  background: linear-gradient(to top, #1f2e3a, var(--primary-dark-color));
  color: white;
  text-align: center;
  border-top: 4px solid var(--highlight-color);
  margin-top: 1rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  padding: 1rem 4rem;
}

.footer-left,
.footer-right {
  display: flex;
  flex-direction: column;
}

.footer-left p, .footer-right p {
  margin: 0;
  font-size: 1rem;
 
}

.footer-left {
  align-items: flex-start;
   line-height: 2rem;
}

.footer-right {
  align-items: flex-end;
}

.footer-right hr{
  border: none; 
  width: 100%;
  height: 1px;
  background-color: white;
}

.footer-socials a {
  margin-right: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
}


.footer-socials a:hover {
  color: #1da1f2; /* or whatever color vibes with your brand */
}


/* Hidden Elements*/

audio {
    display: none;
}

.playing .play-icon {
    display: none;
}

.playing .pause-icon {
    display: inline-block;
}

.pause-icon {
    display: none;
}

/*Making it visually obvious which track is playing on the Hero Page*/
.audio-player .active-track {
    box-shadow: 0 0 6px var(--highlight-color)
}

