*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
 
  
  transition: background-image 1s cubic-bezier(0.4,0,0.2,1);
  /* fallback for browsers that don't support background-image transition */
  transition-property: background-image, background-color;
  transition-duration: 1s;
}

header{
     background: linear-gradient(120deg, #FFD000 0%, #1db954 40%, #2310ce 75%, #e96c05 100%);
  /* height: 70px; */
  transition: background 0.9s cubic-bezier(0.4,0,0.2,1), box-shadow 0.7s cubic-bezier(0.4,0,0.2,1), opacity 0.9s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  position: sticky;
  top: 0;
  z-index: 100;  
  opacity: 1;

}

header .navbar{
     display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  height: 70px;
  max-width: 1400px;
  margin: 0 auto;
}
.navbar .nav-links{
 display: flex;
  list-style: none;
  gap: 2.5rem;
  padding: 0;
  margin: 0 40px;
  align-items: center;
}
.logo a {
  display: inline-block; /* This allows the transform property to work */
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth transition for the hover effect */
}

.logo a:hover {
  transform: scale(1.1); /* Scales the logo up by 10% on hover */
}
.logo-image{
    height: 5rem;
}
.logo{
    display: flex;
  align-items: center;
  gap: 12px;
}
.nav-links li{
    font-size: 1.2rem;
}
.nav-links li a{
    color: #fff;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 6px;
  transition: background 0.3s, color 0.3s;
  letter-spacing: 1px;
}


.navbar .contact,
.navbar .login-sign-up {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-links li a:hover,
.nav-links li a.active {
  background: rgba(255,255,255,0.18);
  color: #FFD000;
}

.navbar .contact button{
  background: #FFD000;
  color: #222;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 1.1rem;
  font-family:  Roboto, serif;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.3s;
  z-index: 1;
}
.navbar .contact button:hover{
    position: relative;
  z-index: 2;
}
.navbar .contact button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #FFD000 0%, #ff6a00 100%);
  opacity: 0.18;
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: 1;
}
.navbar .contact button:hover::before {
  transform: scaleX(1);
}

.navbar .contact button:hover {
  color: #fff;
}

.navbar .login-sign-up .login{
    background: #1db954;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 32px;
  font-size: 1.1rem;
  font-family: Roboto, serif;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.3s;
  z-index: 1;
}

.navbar .login-sign-up .login span {
  position: relative;
  z-index: 2;
}

.navbar .login-sign-up .login::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, #fff 0%, #1db954 80%);
  opacity: 0.15;
  transform: scale(0.2);
  border-radius: 50px;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: 1;
}

.navbar .login-sign-up .login:hover::before {
  transform: scale(1.1);
}

.navbar .login-sign-up .login:hover {
  color: #222;
}
.navbar
.hamburger-menu{
  display: none;
}

.hero-content{
    /* background-video: url(/Source/bg-image.jpg); */

    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 80px;
    height: calc(100vh - 100px);
    text-align: center;
    color: #fff;
}
.bg-video{
    position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.2);
  /* overflow: hidden; */
  pointer-events: none;
  z-index: -1; 
}

.hero-content p{
    font-size: 5rem;
    width: 50%;
    margin-left: 20px;
    text-align: left;
     color: #fff;
  text-shadow: 2px 2px 8px #000, 0 0 10px #1db954;
   font-family:  Roboto, serif;
    margin-bottom: 30px;
    margin-top: 30px;
}

#changing-headings{
    font-size: 6rem;
 font-weight: 800;
   font-family: Roboto, serif;  
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    will-change: transform, opacity;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    margin-bottom: 40px;
}
#changing-headings.fade-out{
    opacity: 0;
    transform: translateY(-30px);
}
.explore-button{
    background-color: transparent;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.5rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.explore-button:hover{
    background-color: #ffffff5d;
    color: white;
}
.about-section{
    background-image:  url(/Source/18.jpg);
      background-size: cover;
      background-repeat: no-repeat;
      background-attachment: fixed;
      background-position: center;
      min-height: 100vh;
      margin: 0;
      filter: brightness(0.8);
}
.about-section .about-content{
  display: flex;
  flex-direction: column;
  align-items: center; /* Vertical center */
  justify-content: space-between;
  gap: 40px;
  padding: 40px 0;
}
.about-content h1{
    font-size: 5rem;
    flex-direction: start;
    color: #fff;
    text-transform: uppercase;
}
.about-content-heading{
     margin-bottom: 20px;
    text-shadow: 2px 2px 8px #000, 0 0 10px #1db954;
    font-family: Roboto, serif;
}
.about-content h2{
       font-size: 2rem;
       position: absolute;
       left: 30%;
 
    display: inline-block;
    /* margin-top: 15%; */
    flex-direction: start;
    color: #fff;
    text-transform: uppercase;
}
.about-content .para{
    flex: 1 1 50%;
  max-width: 80vw;
   margin-left: 10px;
  
  color: #222;
  background: rgba(22, 15, 15, 0.363);
  padding: 24px 32px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.about-content .para p{
    margin-bottom: 20px;
    font-family: Roboto serif;
    color: #fff;
    font-size: 2.2rem;
    line-height: 1.6;
}
.about-content .para span{
  font-weight: bolder;
}
.services-section{
    display: flex;
    height: 1100px;
    align-items: center;
    flex-direction: column;
    
}
.service-image-center {
    position: relative;
    width: 100%;

  display: flex;
  margin-bottom: 60px;
  justify-content: center;
  flex-direction: column;
  align-items: center;

}

.service-image-center img {
   display: flex;
    justify-content: center;
  max-width: 420px;
  width: 100%;
  padding-top: 30px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.20);
}
.services-section .studio-content{
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 24px 0 150px 0;
    letter-spacing: 2px;
    text-align: center;
    color: #fff;
    background-color: black;
    width: 400px;
    height: 100px;
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
.services-content h2{
  font-size: 2rem;
  letter-spacing: 3px;
}
.services-section .services-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 88vw;
    letter-spacing: 3px;
    height: 80px;
    margin-top: 40px;
         
    background: rgba(0,0,0,0.35); 
    font-size: 2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    color: #fff;
    text-align: center;
    padding: 16px 12px;
    font-family: Roboto, serif;
}

.record-create-section{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-betweenx;
    background-image: url(/Source/2.jpg);
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      background-attachment: fixed;
      min-height: 100vh;
      margin: 0;
}
.record-create-section .recording-image{
    position: relative;
    margin-left: 60px;
    margin-top: -20px;

}
.record-create-section .recording{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    left: 1%;
    width: 50%;
    height: 580px;
    padding: 20px;
    color: #fff;
    text-align: center;
    background: linear-gradient(180deg,  #050505, #9795959a);
}
.record-create-section .recording h2{
    position: relative;
    margin-top: 0px;
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px #000, 0 0 10px #1db954;
    font-family: Roboto, serif;
}
.recording h3{
  font-size: 2rem;
  font-family: Roboto, serif;
}
.record-create-section .recording p{
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 2px 2px 8px #000, 0 0 10px #1db954;
    font-family: Roboto, serif;
}
.record-create-section .recording #record-btn{
    position: relative;
  /* overflow: hidden; */
  top: -30px;
  z-index: 1;
  height: 100px;
  background: #1db954;
  color: #fff;
  border: none;
  padding: 32px 18px;
  border-radius: 8px;
  font-size: 1.7rem;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s;
}

.descriptive{
      display: flex;
  justify-content: center;
  align-items: center;
  min-height: 180px;
  text-align: center;
  padding: 48px 0 32px 0;
  width: 100%;
  box-sizing: border-box;
}
.descriptive h1{
    font-size: 3rem;
    color: #fff;
    text-shadow: 2px 2px 8px #000, 0 0 10px #1db954;
    font-family: Roboto, serif;
    margin-bottom: 20px;
    padding: 24px 88px;  
}
.creating{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    background-image: url(/Source/1.jpg);
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      background-attachment: fixed;
      min-height: 100vh;
      margin: 0;
}
.creating .create {
    position: relative;
    margin-left: 200px;
  background: linear-gradient(180deg,  #050505, #9795959a);
  max-width: 700px;
  min-height: 420px;
  margin: 48px auto;
  padding: 48px 40px 60px 40px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  text-align: center;
}

.create h2 {
  font-family: Roboto, serif;
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 32px;
  font-weight: 800;
  letter-spacing: 2.5px;
}
.create h3{
  font-family: Roboto, serif;
  font-size: 2.5rem;
   color: #fff;
  margin-bottom: 32px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

.create p {
  color: #fff;
  font-family:  Roboto, serif;
  font-size: 1.35rem;
  margin-bottom: 44px;
  line-height: 1.7;
}



.sound-design{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-image: url(/Source/9.jpg);
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      background-attachment: fixed;
      min-height: 80vh;
      height: auto;
      margin: 0;
}
.sound-design .sound-image{
    position: relative;
    margin-left: 60px;
    margin-top: -20px;
}
.sound-design .sound-design-content{
    position: relative;
    margin-left: 200px;
  background: linear-gradient(180deg, #050505, #9795959a);
  max-width: 700px;
  min-height: 420px;
  margin: 38px auto;
  padding: 48px 40px 60px 40px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  text-align: center;   
}
.sound-design-content h2 {
  font-family:  Roboto, serif;
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 32px;
  font-weight: 800;
  letter-spacing: 2.5px;
}
.sound-design-content h3{
  font-family: Roboto, serif;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 32px;
  font-weight: 800;
  letter-spacing: 2.5px;
}
.sound-design-content p {
  color: #fff;
  font-family: Roboto, serif;
  font-size: 1.35rem;
  margin-bottom: 44px;
  line-height: 1.7;

}
.music-distribution{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-image: url(/Source/8.jpg);
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      background-attachment: fixed;
      min-height: 100vh;
      margin: 0;
}
.music-distribution .music-image{
    position: relative;
    margin-left: 60px;
    margin-top: -20px;
}
.music-distribution .music-distribution-content{
    position: relative;
    margin-left: 200px;
  background: linear-gradient(180deg, #050505, #9795959a);
  max-width: 700px;
  min-height: 420px;
  margin: 48px auto;
  padding: 48px 40px 60px 40px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  text-align: center;   
}
.music-distribution-content h2 {
  font-family: Roboto, serif;
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 32px;
  font-weight: 800;
  letter-spacing: 2.5px;
}
.music-distribution-content h3 {
   font-family: Roboto, serif;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 32px;
  font-weight: 800;
  letter-spacing: 2.5px;
}
.music-distribution-content p {
  color: #fff;
  font-family:  Roboto, serif;
  font-size: 1.35rem;
  margin-bottom: 44px;
  line-height: 1.7;
}



.fade-section-image {
  margin-right: 80px;
    opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
  will-change: opacity, transform;
}
.fade-section-image.visible {
    opacity: 1;
  transform: translateY(0);
}
.fade-descriptive-heading {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
  will-change: opacity, transform;
}
.fade-descriptive-heading.visible {
  opacity: 1;
  transform: translateY(0);
}
#descriptive-recording {
  background: linear-gradient(180deg, #232526 0%, #414345 100%);
}
#descriptive-recording h1 {
  color: #FFD000;
  font-family:  Roboto, serif;
  font-size: 2.3rem;
  font-weight: 700;
  text-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
#descriptive-creating {
  background: linear-gradient(180deg, #181c24 0%, #232526 100%);
}
#descriptive-creating h1 {
  color: #fff;
  font-family:Roboto, serif;
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 12px rgba(30,185,84,0.18);
}


.Special-Works {
    background-image:url(/Source/10.jpg);
  background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    min-height: 100vh;
    margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
    flex-direction: column;
}

.partners-logo-slides{
  background: rgba(238, 236, 236, 0.692);
  overflow: hidden;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  height: 8rem;
  margin-top: 2rem;
  animation: logo-scroll;
}
@keyframes logo-scroll {
  0%{transform:translateX(0);}
  100%{transform: translateX(-50%);}
}
.logo-track{
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: logo-scroll 42s linear infinite;
  will-change: transform;
}
.logo-track img{
  width: 100px;
  height: 6rem;
  margin: 1.5rem 0; 
  object-fit: contain;
  margin: 0 16px;
  flex-shrink: 0;
  transition: filter 0.2s;
  filter: grayscale(0.2) brightness(1.1);
}
.special-works-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.special-works-title {
  font-family:  Roboto, serif;
  font-size: 2.5rem;
  color: #FFD000;
  margin-bottom: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
  text-align: center;
}

.special-works-subtitle {
  font-family:  Roboto, serif;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 32px;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center;
}


.special-works-video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.special-works-carousel {
  margin-top: 36px;
  min-height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 600px;
  overflow: hidden;
}

.carousel-text {
  position: absolute;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
  font-size: 3rem;
  color: #FFD000;
  font-family:  Roboto, serif;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  width: 100%;
  left: 0;
}

.carousel-text.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}
.mission{
        background-image:url(/Source/12.jpg);
  background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    position: relative;
    min-height: 450px;
    padding: 20px 0;
    width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
    flex-direction: column;
}

.mission-slider{
    display: flex;
    width: 100%;
    position: relative;
    min-height: 380px;
    justify-content: center;
    align-items: center;
}
 .mission-slide {
 position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  z-index: 1;
  width: 420px;
  max-width: 90vw;
  min-height: 180px;
  box-sizing: border-box;
  padding: 32px 28px;

  background-color:  white;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  color: #000;
  font-family:  Roboto, serif;
 transform: translate(-50%, -50%) scale(0.92);
  transition: 
    opacity 0.5s cubic-bezier(0.4,0,0.2,1),
    transform 0.7s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
.mission-slide.active {
  /* opacity: 1;
  z-index: 3;
  transform: translateX(-50%, -50%) scale(1); */
  pointer-events: auto;
  /* border-radius: 15px; */
}

.mission-slide h2 {
  font-family:  Roboto, serif;
  font-size: 2.3rem;
  margin-bottom: 28px;
  color: #FFD000;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
  text-align: center;
  align-self: center;
}

.mission-slide p {
  color: #000;
  font-size: 1.25rem;
  line-height: 2;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
  width: 100%;
}

footer{
          background-image:url(/Source/14.jpg);
  background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    min-height: 100vh;
    margin: 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
  align-items: center;
    flex-direction: row;
    position: relative;
    padding-bottom: 56px;
}
/* Footer Layout */


footer::before{
  content: '';
  position: absolute;
  inset: 0;
 background: rgba(0,0,0,0.35); 
  backdrop-filter: brightness(0.2); /* Reduce brightness */
  z-index: 1;
  pointer-events: none;
}
footer > *{
  position: relative;
  z-index: 2;
}
/* Footer Columns */
footer > div {
  flex: 1 1 260px;
  max-width: 340px;
  min-width: 220px;
  /* background: rgba(255,255,255,0.04); */
  border-radius: 16px;
  padding: 32px 24px;
  margin: 0 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* box-shadow: 0 4px 24px rgba(0,14px,15px,0.80); */
}

/* Logo Styling */
footer .logo-image img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 18px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Love Us Section */
footer .love-us h2 {
  font-size: 1.5rem;
  color: #FFD000;
  margin-bottom: 8px; 
  font-family: Roboto, serif;
}
footer .love-us p {
  color: #fff;
  margin-bottom: 18px;
  font-size: 1.2rem;
  font-family:Roboto, serif;
}
footer .love-us ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: Roboto, serif;
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.love-us ul li a{
  text-decoration: none;
  transition:  0.5s;
  color: #FFD000;
}
ul li a:hover{
  color: #ffffff;
}

/* Connect Us Section */
footer .connect-us h2 {
  color: #FFD000;
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-family:  Roboto, serif;
}
footer .connect-us h1 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-family: Roboto, serif;
  letter-spacing: 2px;
}
footer .connect-us p {
  color: #fff;
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 0;
  font-family: Roboto, serif;
  letter-spacing: 3px;
}

/* Club Join Section */
footer .club-join h2 {
  color: #FFD000;
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family:  Roboto, serif;
}
footer .club-join input[type="email"] {
  width: 90%;
  padding: 10px 12px;
  border-radius: 8px;
  text-align: center;
  background-color: transparent;
  color: white;
  border: none;
  margin-bottom: 16px;
  font-size: 1rem;
  outline: none;

}
.club-join input::placeholder{
  color: white;
  font-family:  Roboto, serif;
  font-size: 1rem;
  letter-spacing: 1px;
  opacity: 1;
  transition: color 0.3s;
}
footer .club-join a {
  display: inline-block;
  background: #1db954;
  color: #fff;
  padding: 10px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  font-size: 2rem;
  transition: background 0.2s;
}
footer .club-join a:hover {
  background: #FFD000;
  color: #222;
}
#footer-copyright {
    position: absolute;
    bottom: 0;
  width: 100vw;
  min-width: 100vw;
  text-align: center;
  padding: 16px 0 10px 0;
  background: linear-gradient(90deg, #1db954 0%, #2310ce 60%, #e96c05 100%);
  color: #fff;
  font-size: 1rem;
  font-family: Roboto, serif;
  letter-spacing: 1px;
  margin-top: 18px;
  border-radius: 0 0 12px 12px;
}
section {
  position: relative;
  overflow: hidden;
}

/* Overlay for all section backgrounds */
section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25); /* Adjust opacity for desired darkness */
  backdrop-filter: brightness(0.8); /* Reduce brightness */
  z-index: 1;
  pointer-events: none;
}

/* Ensure section content stays above the overlay */
section > * {
  position: relative;
  z-index: 2;
}


@media (max-width: 1024px){
     header .navbar {
        padding: 0 20px;
    }
    .navbar .nav-links {
        gap: 1.5rem;
    }
    .navbar .nav-links li a {
        font-size: 1rem;
        padding: 8px 14px;
    }
    .navbar .contact button,
    .navbar .login-sign-up .login {
        padding: 10px 20px;
        font-size: 1rem;
    }
   .hero-content {
        padding: 60px 20px;
        height: auto; /* Allow height to adjust */
        min-height: 80vh; /* Ensure it's still tall enough */
    }
    .hero-content p {
        width: 80%; /* Adjust width for better readability */
        margin-left: 0; /* Center text */
        text-align: center;
        font-size: 3.5rem; /* Reduce font size */
    }
    #changing-headings {
        font-size: 4.5rem; /* Reduce font size */
    }
      .about-section .about-content {
        padding: 40px 20px;
    }
    .about-content h1 {
        font-size: 3.5rem;
    }
    .about-content h2 {
        font-size: 1.5rem;
        position: static; /* Remove absolute positioning */
        left: auto;
        margin-top: 10px; /* Add some space */
    }
    .about-content .para {
        max-width: 90vw;
        padding: 20px 24px;
    }
    .about-content .para p {
        font-size: 1.5rem;
        text-align: center;
    }

    /* Services Section */
    .services-section {
        height: auto; /* Remove fixed height */
        min-height: 80vh; /* Ensure it's still tall enough */
        padding: 40px 20px;
    }
    .services-section .studio-content {
        width: 80%; /* Make width responsive */
        max-width: 350px; /* Cap max width */
        margin: 24px auto 100px auto; /* Center and adjust margin */
    }
    .services-section .services-content {
        height: auto; /* Allow height to adjust */
        padding: 12px 10px;
        font-size: 1.5rem;
    }
.record-create-section .recording,
.creating .create {
    left: 0; /* Reset the horizontal positioning */
    width: 90%; /* Use a percentage width */
    margin: 0 auto; /* Center the block */
}

  .record-create-section,
.creating,
.sound-design,
.music-distribution {
    flex-direction: column;
    text-align: center; /* Center the text now that it's stacked */
    min-height: auto; /* Allow height to be determined by content */
    padding: 60px 20px; /* Reduce side padding */
}

/* Move images to the top of the column */
.record-create-section .recording-image,
.creating .creating-image,
.sound-design .sound-image,
.music-distribution .music-image{
    order: -1; /* This moves the image before the text content in a flex column */
    margin: 40px auto; /* Adjust margins for a column layout */
      max-width: 80%;
}
    .record-create-section .recording,
    .creating .create,
    .sound-design .sound-design-content,
    .music-distribution .music-distribution-content {
        left: auto; /* Remove fixed left positioning */
        margin: 0 auto; /* Center the content block */
        width: 90%; /* Make width responsive */
        max-width: 500px; /* Cap max width for readability */
        min-height: auto; /* Allow height to adjust */
        padding: 30px 20px;
    }
    .record-create-section .recording h2,
    .creating .create h2,
    .sound-design-content h2,
    .music-distribution-content h2 {
        font-size: 2.5rem; /* Reduce heading font size */
    }
    .record-create-section .recording h3,
    .creating .create h3,
    .sound-design-content h3,
    .music-distribution-content h3 {
        font-size: 1.8rem; /* Reduce sub-heading font size */
    }
    .record-create-section .recording p,
    .creating .create p,
    .sound-design-content p,
    .music-distribution-content p {
        font-size: 1.1rem; /* Reduce paragraph font size */
    }
    .descriptive h1 {
        font-size: 2rem; /* Reduce descriptive heading font size */
        padding: 20px 40px;
    }
   .Special-Works{
     padding-top: 0;
   }

    /* Special Works */
    .special-works-title {
        font-size: 2rem;
        margin-top: 0;
    }
    .special-works-subtitle {
        font-size: 1.2rem;
    }
    .carousel-text {
        font-size: 2.5rem;
    }

    /* Mission */
    .mission-slider {
        height: auto; /* Allow height to adjust */
        min-height: 350px;
    }
    .mission-slide {
        width: 90%; /* Make width responsive */
        max-width: 400px; /* Cap max width */
        padding: 25px 20px;
    }
    .mission-slide h2 {
        font-size: 2rem;
    }
    .mission-slide p {
        font-size: 1rem;
        line-height: 1.8;
    }

    /* Footer */
    footer {
        flex-direction: column; /* Stack footer columns vertically */
        padding-bottom: 20px; /* Adjust bottom padding */
        min-height: auto; /* Allow height to adjust */
    }
    footer > div {
        margin: 20px auto; /* Center columns and add vertical margin */
        max-width: 90%; /* Allow columns to be wider */
        min-width: 280px; /* Ensure minimum width */
    }
    footer .love-us h2,
    footer .connect-us h2,
    footer .club-join h2 {
        font-size: 1.2rem;
    }
    footer .love-us p,
    footer .love-us ul li,
    footer .connect-us h1,
    footer .connect-us p,
    footer .club-join input,
    footer .club-join a {
        font-size: 1rem;
        text-align: center;
    }
    footer .club-join a {
        padding: 8px 20px;
    }
    #footer-copyright {
        font-size: 0.9rem;
        padding: 12px 0 8px 0;
    }
}

@media (max-width: 768px) {
  .navbar{
    position: relative;
  }
  .logo a {
  display: inline-block; /* This allows the transform property to work */
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth transition for the hover effect */
}

.logo a:hover {
  transform: scale(1.1); /* Scales the logo up by 10% on hover */
}
  .navbar .nav-links{
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;width: 100%;

  }
 .navbar .nav-links.active{
    opacity:  1;
    transform:  translateY(0);
    pointer-events: auto;
     background-color:  rgba(26, 22, 22, 0.781);
    display: flex;
  }
  .navbar .nav-links li{
    width: 100%;
    text-align: center;
    border-bottom:  1px solid rgb(128, 128, 128);
  }
  .navbar .nav-links li:last-child{
    border-bottom: none;
  }
 .navbar .nav-links li a{
    padding: 18px 0;
    display: block;
    color: #eee;
    transition: background-color 0.3s, color 0.3s;
  }
  .navbar .nav-links li a:hover{
    background-color:  rgb(255, 255, 255);
    color: #FFD000;
  }
    .navbar .contact,
    .navbar .login-sign-up {
        display: flex;
        justify-content: center;
    }
  .navbar  .hamburger-menu {
        display: block; /* Show on mobile */
        cursor: pointer;
        font-size: 2rem;
        color: #fff;
        z-index: 101;
    }
      
    .about-section,
    .services-section,
    .record-create-section,
    .creating,
    .sound-design,
    .music-distribution,
    .Special-Works {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .services-section .studio-content {
        margin-bottom: 60px; /* Reduce large bottom margin */
    }
     .bg-video {
        /* The videos on this page were darker, so we brighten them more */
        filter: brightness(1.8);
        object-position: center 70%; /* Focus on the lower part of the video */
    }
    .hero-content{
      align-items: center;
      padding-left: 15px;
    }
    /* Hero Section */
    .hero-content p {
        font-size: 2.2rem;
        width: 95%;
    }
    #changing-headings {
        font-size: 3.2rem;
    }
    .explore-button {
        font-size: 1.2rem;
        padding: 12px 25px;
    }

    /* About Section */
    .about-content h1 {
        font-size: 2.8rem;
    }
    .about-content-heading{
      text-align: center;
    }
    .about-content h2 {
        font-size: 1.2rem;
        text-align: center;
    }
    .about-content .para p {
        font-size: 1.2rem;
    }
       .studio-content h1 {
        font-size: 1.5rem; /* Make font size responsive */
        line-height: 1.4;
    }

    /* Services Section */
    .services-section .studio-content {
        width: 90%;
        max-width: 300px;
         margin-bottom: 60px; /* Reduce large bottom margin */
        height: auto; /* Let height be determined by content */
        padding: 20px 15px;
    }
    .services-section .services-content {
         width: 90%;
        padding: 30px 20px; /* Increase padding for better spacing */
        height: auto; /* Let height be determined by content */
        border-radius: 16px; /* Add rounded corners */
        background: rgba(10, 10, 10, 0.55); /* Modern "glass" background */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }
    .services-section .services-content h2 {
        font-size: 1.8rem;
        color: #FFD000;
        margin-bottom: 15px;
    }
    .services-section .services-content p {
        font-size: 1rem;
        line-height: 1.7; /* Increased line height for readability */
        color: #e0e0e0;
    }
    /* Record/Create/Mixing/Sound Design/Music Distribution Sections */
    .record-create-section .recording,
    .creating .create,
    .sound-design .sound-design-content,
    .music-distribution .music-distribution-content {
        width: 95%;
        padding: 35px 15px;
    }
    .record-create-section .recording h2,
    .creating .create h2,
    .sound-design-content h2,
    .music-distribution-content h2 {
        font-size: 2rem;
    }
    .record-create-section .recording h3,
    .creating .create h3,
    .sound-design-content h3 {
        font-size: 1.5rem;
    }
    .record-create-section .recording p,
    .creating .create p,
    .sound-design-content p,
    .music-distribution-content p {
        font-size: 1rem;
        text-align: center;
    }
    .descriptive h1 {
        font-size: 1.5rem;
        padding: 15px 20px;
    }
  
  

    /* Special Works */
    .special-works-title {
        font-size: 1.8rem;
    }
    .special-works-subtitle {
        font-size: 1rem;
    }
    .carousel-text {
        font-size: 2rem;
    }
    .logo-track img {
        width: 80px; /* Smaller logos */
        height: 5rem;
    }

    /* Mission */
      .mission {
        min-height: 450px; /* Give it a bit more height on mobile */
        padding: 20px 0; /* Add some vertical padding */
    }
    .mission-slider {
        min-height: 380px; /* Ensure it has enough space for the taller card */
    }
    .mission-slide {
        width: 90%;
        max-width: 340px;
        padding: 25px 20px;
        min-height: 0;
    }
    .mission-slide h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    .mission-slide p {
        font-size: 1rem;
        text-align: center;
        font-weight: 200;
        line-height: 1.7;
    }

    /* Footer */
    footer > div {
        margin: 15px auto;
        min-width: 250px;
    }
    footer .love-us h2,
    footer .connect-us h2,
    footer .club-join h2 {
      text-align: center;
        font-size: 1.1rem;
        text-align: center;
    }
    footer .love-us p,
    footer .love-us ul li,
    footer .connect-us p,
    footer .club-join input,
    footer .club-join a {
        font-size: 0.9rem;
        text-align: center;
    }
    footer .club-join a {
        padding: 6px 15px;
    }
    footer .connect-us .footer-contact-link{
      text-align: center;
      font-size: 0.9rem;
    }
    #footer-copyright {
        font-size: 0.8rem;
    }
    .hero-content p {
    font-size: 2.5rem; /* Drastically smaller than the original 5rem */
    width: 95%; /* Take up more of the screen width */
    text-align: center;
    margin-left: 0;
}

#changing-headings {
    font-size: 3.5rem; /* Smaller than the original 6rem */
}
}