@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap");
html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

body {
  font-family: "Lato", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

#loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  background: rgba(225, 177, 44, 0.4);
  backdrop-filter: blur(10px);
}

.loader-container {
  display: flex;
  gap: 1rem;
}
.loader-container .note-icon {
  width: 64px;
  height: 64px;
  filter: invert(27%) sepia(74%) saturate(2734%) hue-rotate(195deg) brightness(86%) contrast(94%);
  transform: perspective(400px) rotateX(15deg);
  transform-style: preserve-3d;
}

@keyframes noteBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.animate-note {
  animation: noteBounce 1.2s infinite ease-in-out;
}

.animate-note-alt {
  animation: noteBounce 1.2s infinite ease-in-out 0.6s;
}

h1,
h2,
h3 {
  font-family: "Lato", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

.social-icon {
  width: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  font-weight: bold;
  text-align: center;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.btn-primary {
  background: hsl(211, 100%, 20%);
  color: #F7F7F7;
}
.btn-primary:hover {
  background: #00254d;
  transform: scale(1.05);
}
.btn-primary--outline {
  background: transparent;
  border: 2px solid hsl(211, 100%, 20%);
  color: hsl(211, 100%, 20%);
}

.btn-secondary {
  background: #E1B12C;
  color: #222;
}
.btn-secondary:hover {
  background: rgb(190.8630705394, 147.4439834025, 27.1369294606);
  transform: scale(1.05);
}
.btn-secondary--outline {
  background: transparent;
  border: 2px solid #E1B12C;
  color: #E1B12C;
}

.text-primary {
  color: hsl(211, 100%, 20%);
}

.text-secondary {
  color: #E1B12C;
}

.light-clr {
  color: #F7F7F7;
}

.bg-dark {
  background-color: #222;
}

.bg-light {
  background-color: #F7F7F7;
}

.bg-primary {
  background-color: hsl(211, 100%, 20%);
}

.bg-secondary {
  background-color: #E1B12C;
}

nav {
  font-family: "Lato", sans-serif !important;
  letter-spacing: 1.5px;
  background: transparent;
  transition: background 0.3s ease-in-out;
  height: 16vh;
}
nav.scrolled {
  background: rgba(0, 49, 102, 0.7);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
@media (max-width: 768px) {
  nav.scrolled {
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

.logo {
  width: clamp(100px, 120px, 30vw);
}

.nav-links {
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.nav-links .nav-link {
  font-size: 1.3rem;
}
@media (max-width: 991px) {
  .nav-links {
    width: 100%;
    position: absolute;
    top: -1000%;
    left: 0;
    z-index: 100;
  }
}
.nav-links.active {
  top: 100%;
  height: 84vh;
  width: 100%;
  background: rgba(0, 49, 102, 0.7);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 10px;
}

#menu-toggle .note-icon {
  font-size: 1.5rem;
  filter: invert(1) !important;
}
@keyframes noteBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
#menu-toggle .animate-note {
  animation: noteBounce 1.2s infinite ease-in-out;
}
#menu-toggle .animate-note-alt {
  animation: noteBounce 1.2s infinite ease-in-out 0.6s;
}

#slider .slide {
  position: relative;
  height: 100vh;
  width: 100vw;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
#slider .slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -2;
}
#slider .slide .bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #003166, #E1B12C);
  opacity: 0.7;
  z-index: -1;
}
#slider #slide1 {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
#slider #slide1::before {
  background-image: url(assets/img/SP_Charan-photos-4.jpg);
}
#slider #slide1 .counter {
  font-weight: bolder;
}
#slider #slide1 a {
  transition: transform 0.3s ease-in-out;
}
#slider #slide1 a:hover {
  transform: scale(1.05);
}
#slider #slide2::before {
  background-image: url(assets/img/SP_Charan-cover-pics-8.jpg);
}
#slider #slide3::before {
  background-image: url(assets/img/SP_Charan-photos-11.jpg);
}

#about {
  position: relative;
  color: hsl(211, 100%, 20%);
  overflow: hidden;
  padding: 80px 20px;
}
#about .musical-staff {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(transparent 0%, transparent 20%, rgba(255, 255, 255, 0.2) 21%, transparent 22%);
  background-size: 100% 40px;
  opacity: 0.3;
  z-index: -1;
}
#about .timeline-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
#about .timeline-item {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 600px;
  margin: 20px 0;
  position: relative;
  animation: fadeIn 1s ease-in-out;
}
#about .timeline-item h3 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
#about .timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
  transform: translateY(20px);
}
#about .timeline-item:nth-child(even) {
  transform: translateY(-20px);
}
#about .note-icon {
  width: 40px;
  height: 40px;
  animation: bounce 2s infinite alternate ease-in-out;
}
#about .timeline-content {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}
@keyframes bounce {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-10px);
  }
}
@media (min-width: 768px) {
  #about .timeline-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  #about .timeline-item {
    width: 45%;
    margin: 40px;
  }
}

.music-section {
  text-align: center;
  background: #E1B12C;
}
.music-section h2 {
  color: #F7F7F7;
}
.music-section h3 {
  color: hsl(211, 100%, 20%);
  font-size: 1.5rem;
}
.music-section .music-list .track {
  position: relative;
  display: flex;
  align-items: center;
  align-self: center;
  justify-content: center;
  gap: 10px;
  background: white;
  color: #00339a;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  overflow: hidden;
  width: 95%;
}
.music-section .music-list .track:hover {
  background: #00339a;
  color: white;
}
.music-section .music-list .track:hover .play-btn {
  transform: scale(1);
}
.music-section .music-list .track img {
  width: 50px;
  height: 50px;
  border-radius: 5px;
}
.music-section .music-list .track .track-info {
  flex-grow: 1;
  text-align: left;
}
.music-section .music-list .track .play-btn {
  position: absolute;
  right: 15px;
  width: 35px;
  height: 35px;
  background: #12b347;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  transform: scale(0.8);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.music-player {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  color: white;
  display: none;
  z-index: 100;
}
.music-player .now-playing {
  display: flex;
  align-items: center;
  gap: 10px;
}
.music-player .now-playing img {
  width: 40px;
  height: 40px;
  border-radius: 5px;
}
.music-player .controls {
  display: flex;
  gap: 10px;
  margin-right: 1rem;
}
.music-player .controls button {
  background: none;
  border: none;
  color: #E1B12C;
  font-size: 18px;
  cursor: pointer;
}
.music-player #seekbar {
  width: 100px;
}
.music-player .close-btn {
  color: red;
  margin-left: 1rem;
  cursor: pointer;
}

.collaboration-list .artist {
  background: #F7F7F7;
  color: hsl(211, 100%, 20%);
  padding: 0.75em;
  border-radius: 5px;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
}
.collaboration-list .artist:hover {
  background: hsl(211, 100%, 20%);
  color: #F7F7F7;
  transform: scale(1.05);
}
.collaboration-list .artist + .artist {
  margin-top: 1rem;
}

.video-section {
  text-align: center;
  color: hsl(211, 100%, 20%);
}
.video-section .video-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.video-section .video-tabs .tab-btn {
  background: #00339a;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s ease-in-out;
}
.video-section .video-tabs .tab-btn.active {
  background: #E1B12C;
}
.video-section .video-tabs .tab-btn:hover {
  background: #E1B12C;
}
.video-section .video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
  justify-content: center;
}
.video-section .video-grid .video-card {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}
.video-section .video-grid .video-card:hover {
  transform: scale(1.05);
}
.video-section .video-grid .video-card img {
  width: 100%;
  border-radius: 5px;
  transition: 0.3s ease-in-out;
  object-fit: cover;
  width: 50%;
  margin-inline: auto;
}
.video-section .video-grid .video-card .play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 300ms ease-in-out;
}
.video-section .video-grid .video-card .play-overlay img {
  width: 50px;
}
@media (min-width: 768px) {
  .video-section .video-grid .video-card .play-overlay {
    opacity: 0;
  }
}
.video-section .video-grid .video-card:hover .play-overlay {
  opacity: 1;
}
.video-section .lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.video-section .lightbox iframe {
  width: 80%;
  height: 60%;
}
.video-section .lightbox .close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}
.video-section .hidden {
  display: none;
}

.photo-gallery {
  text-align: center;
  background-color: hsl(211, 100%, 20%);
  color: #E1B12C;
}
.photo-gallery .gallery-grid {
  column-count: 3;
  column-gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}
.photo-gallery .gallery-grid .gallery-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.photo-gallery .gallery-grid .gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.photo-gallery .gallery-grid .gallery-item img {
  width: 100%;
  border-radius: 5px;
  transition: 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .photo-gallery .gallery-grid {
    column-count: 4;
  }
}
@media (min-width: 1024px) {
  .photo-gallery .gallery-grid {
    column-count: 6;
  }
}

#events {
  text-align: center;
}
#events h2 {
  color: hsl(211, 100%, 20%);
}
#events .event {
  color: hsl(211, 100%, 20%);
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}
#events .event:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
  #events .event {
    flex-direction: row;
  }
}
#events .event .w-7\/10 {
  flex: 0 0 70%;
}
#events .event .w-7\/10 img {
  width: 100%;
  border-radius: 5px;
}
#events .event .w-3\/10 {
  flex: 0 0 30%;
  padding-left: 20px;
  text-align: left;
}
#events .event .w-3\/10 h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}
#events .event .w-3\/10 p {
  font-size: 1.2rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}
#events .event .w-3\/10 p i {
  margin-right: 8px;
  color: #E1B12C;
}

#past-events {
  background: #E1B12C;
  color: hsl(211, 100%, 20%);
}
#past-events .past-event {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
#past-events .past-event:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}
#past-events .past-event img {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 15px;
}
#past-events .past-event h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}
#past-events .past-event p {
  font-size: 1rem;
}
@media (max-width: 768px) {
  #past-events .past-event {
    width: 90%;
  }
}

#contact {
  background: hsl(211, 100%, 20%);
  color: #F7F7F7;
}
#contact h3 {
  color: #E1B12C;
  margin-bottom: 10px;
}
#contact .footer-link {
  color: #F7F7F7;
  font-size: 1rem;
  transition: color 0.3s ease-in-out;
}
#contact .footer-link:hover {
  color: #E1B12C;
}
#contact .footer-input {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color: #F7F7F7;
}
#contact .footer-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
#contact .footer-input:focus {
  outline: none;
  border-color: #E1B12C;
}
#contact .btn-secondary {
  background: #E1B12C;
  color: #222;
  padding: 12px;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}
#contact .btn-secondary:hover {
  background: rgb(231.3485477178, 193.5062240664, 88.6514522822);
  transform: scale(1.05);
}

.charan-img {
  transform: perspective(1200px) translateZ(-100px);
  filter: drop-shadow(0px 20px 30px rgba(0, 0, 0, 0.5));
  transition: transform 0.6s ease;
  cursor: pointer;
  width: 80%;
}
.charan-img:hover {
  transform: perspective(1200px) translateZ(0px) scale(1.03);
}

.banner {
  background: linear-gradient(to bottom, #003166, #E1B12C), url("assets/img/SP_Charan-cover-pics-11.jpg") center center/cover no-repeat fixed;
  background-blend-mode: overlay;
}

/*# sourceMappingURL=style.css.map */
