/* --------------------------------------------------
  GOOGLE FONTS
-------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap");
/* --------------------------------------------------
  ROOT VARIABLES
-------------------------------------------------- */
:root {
  --font-primary: "Poppins", sans-serif;
  --font-secondary: "Space Grotesk", sans-serif;
  --primary-color: #cbf716;
  --color-bg: #000;
  --sidebar-bg: #242526;
  --color-text: #fff;
  --border-color: #cbf716;
  /* --border-color: #ffffff50;        */
  --logo-size: 160px;
}

/* --------------------------------------------------
  GLOBAL STYLES
-------------------------------------------------- */
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-secondary);
  background-color: var(--color-bg);
  color: var(--color-text);
  margin: 0;
  padding: 0;
}
/* Initially hide the scrollbar but allow scrolling */
body.preload-active {
  overflow: hidden;
  height: 100vh;
}

/* To show the scrollbar after preloading, body will return to normal */
body.scrolling-enabled {
  overflow: scroll; /* Keep scrolling functional */
}

/* Hide scrollbar in webkit browsers (Chrome, Safari, Edge) */
body::-webkit-scrollbar {
  display: none;
}

/* If needed, target specific scrollable elements */
::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}
.cursor {
  position: fixed;
  left: 0;
  top: 0;
  width: 3px;
  height: 3px;
  background-color: var(--primary-color); /* Dot color */
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
  will-change: transform;
  box-shadow: 0 0 0 1px white;
}

.cursor::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255, 255, 255, 0.5); /* Lighter, more visible ring */
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease;
  z-index: 0; /* Lower than the center dot */
}
.site-text {
  color: var(--primary-color) !important;
}
.site-bg {
  background-color: var(--primary-color);
}
.site-bg-main {
  background-color: var(--primary-color);
}
.sidebar-bg {
  background-color: var(--sidebar-bg);
}

/* --------------------------------------------------
  About Bio
-------------------------------------------------- */
.custom-dark-table thead {
  background-color: #000 !important;
}
.custom-dark-table thead th,
.custom-dark-table tbody td {
  background: #212529 !important;
  color: white;
}

.custom-dark-table tbody tr {
  background-color: #242526 !important;
}

.custom-dark-table tbody tr:hover {
  background-color: #343a40 !important;
}
/* --------------------------------------------------
  contact page
-------------------------------------------------- */
.banner-overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* semi-transparent overlay */
  z-index: 1;
}

.banner-content {
  padding: 2rem;
  border-radius: 10px;
  max-width: 90%;
}

.breadcrumb a {
  text-decoration: none;
}

@media (max-width: 576px) {
  .banner-content h1 {
    font-size: 1.75rem;
  }

  .banner-content {
    padding: 1rem;
  }
}
/* --------------------------------------------------
  contact page End
-------------------------------------------------- */
.sidebar {
  position: fixed;
  z-index: 99;
  height: 100vh;
  background-color: var(--sidebar-bg);
  padding: 20px;
  color: var(--color-text);
}
.logo-wraper {
  position: relative;
  z-index: 1; /* Ensures content stays above */
}

.logo-wraper::before {
  content: "";
  position: absolute;
  inset: 0; /* shorthand for top: 0; right: 0; bottom: 0; left: 0; */
  background-color: var(--primary-color);
  clip-path: polygon(100% 0, 0% 100%, 0 0);
  z-index: -1; /* Push it behind the content */
}
.soft-tags {
  font-family: var(--font-secondary);
  border-left: 1px solid #fff;
}
.soft-tags-wraper {
  font-family: var(--font-secondary);
}
.singer-title {
  font-size: 36px;
  font-weight: 600;
  font-family: var(--font-secondary);
}
.social-icons a {
  border: 1px solid #ffff;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.363);
  color: var(--primary-color) !important;
  border: 1px solid transparent;
  transition: 0.5s ease-in-out;
}
.site-vt-menu li a {
  /* font-weight: bold; */
  font-family: var(--font-secondary);
  padding: 0.7rem 1rem;
  display: block;
  text-decoration: none;
  background: none;
  border: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
  border-bottom: 1px solid #000;
}
/* Active nav item background */
.site-vt-menu .nav-link.active {
  background-color: var(--primary-color);
  color: #000 !important; /* Adjust text color if needed */
  border-radius: 4px;
}

/* Dropdown hover wrapper */
.dropdown-hover {
  position: relative;
}

/* Dropdown content (hidden by default) */
.dropdown-menu-custom {
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 180px;
  background-color: #232323;
  padding: 0;
  margin: 0;
  list-style: none;
  display: none;
  z-index: 1000;
  border-left: 2px solid var(--primary-color); /* Optional visual indicator */
}

/* Show dropdown on hover */
.dropdown-hover:hover .dropdown-menu-custom {
  display: block;
}

/* Dropdown items styling */
.dropdown-item-custom {
  display: block;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.3s;
}

/* Animate arrow on hover */
.dropdown-hover:hover i.fa-angle-right {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

.site-vt-menu a {
  color: #fff !important;
}
.site-vt-menu a:hover {
  color: var(--primary-color) !important;
}
.dropdown-item-custom a:hover {
  background-color: var(
    --primary-color
  ) !important; /* Highlight color on hover */
  color: #000;
}
/* .dropdown-item-custom a.active:hover {
  
} */
.dropdown-item-custom.active {
  color: var(--primary-color) !important;
}
/* .dropdown-menu-custom li.active a {
  color: var(--primary-color);
} */
/* From Uiverse.io by doniaskima */
.btn-one,
.btn-one *,
.btn-one :after,
.btn-one :before,
.btn-one:after,
.btn-one:before {
  border: 0 solid;
  box-sizing: border-box;
}

.btn-one {
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: button;
  background-color: #000;
  background-image: none;
  color: #fff;
  cursor: pointer;
  font-family: var(--font-secondary);
  font-size: 100%;
  font-weight: 900;
  line-height: 1.5;
  margin: 0;
  -webkit-mask-image: -webkit-radial-gradient(#000, #fff);
  padding: 0;
  text-transform: uppercase;
  border: 2px solid var(--border-color);
}

.btn-one:disabled {
  cursor: default;
}

.btn-one:-moz-focusring {
  outline: auto;
}

.btn-one svg {
  display: block;
  vertical-align: middle;
}

.btn-one [hidden] {
  display: none;
}

.btn-one {
  border-radius: 99rem;
  border-width: 2px;
  overflow: hidden;
  padding: 0.8rem 3rem;
  position: relative;
}

.btn-one span {
  display: grid;
  inset: 0;
  place-items: center;
  position: absolute;
  transition: opacity 0.2s ease;
}

.btn-one .marquee {
  --spacing: 7em;
  --start: 0em;
  --end: 7em;
  -webkit-animation: marquee 1s linear infinite;
  animation: marquee 1s linear infinite;
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
  opacity: 0;
  position: relative;
  text-shadow: #fff var(--spacing) 0, #fff calc(var(--spacing) * -1) 0,
    #fff calc(var(--spacing) * -2) 0;
}

.btn-one:hover .marquee {
  -webkit-animation-play-state: running;
  animation-play-state: running;
  opacity: 1;
}

.btn-one:hover .text {
  opacity: 0;
}

@-webkit-keyframes marquee {
  0% {
    transform: translateX(var(--start));
  }

  to {
    transform: translateX(var(--end));
  }
}

@keyframes marquee {
  0% {
    transform: translateX(var(--start));
  }

  to {
    transform: translateX(var(--end));
  }
}

.site-bg {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    white 33%,
    var(--primary-color) 66%,
    var(--primary-color) 100%
  );
  background-size: 200% 200%;
  animation: wave 4s ease-in-out infinite;
  border-radius: 1rem; /* for rounded-4 look */
}

@keyframes wave {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* --------------------------------------------------
SITE LOGO WRAPPER (standard border)
-------------------------------------------------- */
.site-logo-wrapper {
  width: var(--logo-size);
  height: var(--logo-size);
  border-radius: 50%;
  padding: 5px;
  position: relative;
  border: 3px solid var(--border-color); /* Standard border */
}

/* Logo image inside the wrapper */
.site-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  display: block;
  position: relative;
  z-index: 1;
}
.social-icons a {
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--primary-color); /* Spotify green as example */
}

/* --------------------------------------------------
  SIDEBAR STYLING
-------------------------------------------------- */
.banner-section {
  position: relative;
  width: 100%;
  height: 100vh; /* full screen height */
  overflow: hidden;
}

.banner-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* overlay color */
  z-index: 1;
}

.banner-content {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0; /* Align content to the left side */
  transform: translateY(-50%); /* Vertically center */
  z-index: 2;
  text-align: left; /* Align text to the left */
  padding-left: 30px; /* Optional: add padding for spacing */
}

.banner-title {
  color: #fff;
  font-size: 48px;
  font-weight: bold;
}

/* Typing Text */
.banner-main-title {
  font-size: 150px;
  font-family: var(--font-secondary);
}
.hello-text {
  font-size: 40px;
  font-family: var(--font-secondary);
}
.typewriter {
  font-family: var(--font-secondary);
  width: 100%;
}
.typewriter p {
  overflow: hidden;
  margin: 0 auto;
  display: inline-block;
  font-weight: normal;
}
.typewriter p:after {
  content: "";
  display: inline-block;
  background-color: white;
  margin-left: 2px;
  height: 25px;
  width: 4px;
  animation: cursor 0.4s infinite;
}

/* The typewriter cursor effect */
@keyframes cursor {
  0% {
    opacity: 1;
  }
  49% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.mobile-menu {
  display: none;
}
.sidebar {
  display: block;
}
.text-justify {
  text-align: justify;
}
.section-title {
  position: relative;
}

.outlined-text {
  font-size: 130px;
  color: transparent;
  -webkit-text-stroke: 2px white;
  position: absolute;
  top: -45px;
  left: -1px;
  z-index: 0;
  opacity: 0.1;
}
.outlined-text-right {
  font-size: 130px;
  color: transparent;
  -webkit-text-stroke: 2px white;
  position: absolute;
  top: -45px;
  right: -1px;
  z-index: 0;
  opacity: 0.1;
}

.solid-text {
  font-size: 60px;
  color: white;
  position: relative;
  z-index: 1;
}
.about-img {
  width: 100%;
  height: 650px;
  object-fit: cover;
}
.cta-img {
  height: 530px;
  margin-top: -175px;
}
/* Slider Start */
.slider_item {
  padding: 10px;
}
.custom-arrows-container {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically if needed */
  gap: 20px; /* Space between buttons */
  margin-top: 20px; /* Optional spacing from top */
}

.custom-prev,
.custom-next {
  background-color: #333; /* Dark background */
  color: #fff; /* White icon color */
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

.custom-prev:hover,
.custom-next:hover {
  background-color: #555;
}

/* Slider End  */
/* --------------------------------------------------
Media Query
-------------------------------------------------- */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.gallery a {
  width: calc(25% - 15px); /* 4 columns with gap */
  display: block;
  overflow: hidden;
  border-radius: 8px;
}

.gallery img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive Columns */
@media (max-width: 992px) {
  .gallery a {
    width: calc(33.333% - 15px);
  }
}

@media (max-width: 768px) {
  .gallery a {
    width: calc(50% - 15px);
  }
}

@media (max-width: 576px) {
  .gallery a {
    width: 100%;
  }
}
footer {
  background-color: var(--sidebar-bg);
}
.decoration-none {
  text-decoration: none;
}
/* --------------------------------------------------
Media Query
-------------------------------------------------- */
.text-purple {
  color: var(--primary-color);
}

/* Oculta la línea de tabs predeterminada */
.nav-tabs {
  border-bottom: none;
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* Estilo individual de cada tab como una card */
.nav-tabs .nav-link {
  background: transparent; /* Changed from #fff */
  border: 1px solid #ddd; /* Optional: gives structure */
  border-radius: 10px;
  padding: 15px 10px;
  color: var(--primary-color);
  transition: all 0.3s ease-in-out;
  height: 100px;
  width: 130px;
}

/* Efecto hover para que parezca una card con elevación */
.nav-tabs .nav-link:hover {
  background: #f8f9fa;
}

/* Card activa */
.nav-tabs .nav-link.active {
  background: var(--primary-color);
  color: #000;
  border-color: var(--primary-color);
  box-shadow: 1px 1px 5px rgba(0, 123, 255, 0.3);
  transform: scale(1.1);
}

/* Contenido de los tabs como una card */
.tab-content {
  margin-top: 30px;
  background: transparent !important; /* Edited from #fff */
  border-radius: 10px;
}

@media (max-width: 776px) {
  .tab-content > .tab-pane {
    display: block;
    opacity: 1;
  }
}

@media (min-width: 992px) {
  /* Mantiene el borde superior en tabs inactivos */
  .tab-pane.accordion-item {
    border-radius: 10px;
    background-color: transparent !important; /* Edited from rgba */
    border: 0px solid var(--primary-color);
  }
}

/* Acordeon */

.accordion-button:not(.collapsed) {
  color: black;
  background-color: var(--primary-color);
}

.accordion-button {
  background-color: #f8f9fa;
  color: black;
}

/* Mantiene la flecha original de Bootstrap pero cambia su color */
.accordion-button::after {
  filter: brightness(0);
  /* Flecha negra por defecto */
}

/* Flecha blanca cuando el acordeón está activo */
.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
  /* Invierte el color de negro a blanco */
}

.accordion-button:focus {
  box-shadow: none !important;
}

.accordion-body {
  background-color: transparent !important; /* Edited from rgba */
  border: 0;
  border-radius: 14px;
}

.mobile-menu-button {
  border-radius: 50%;
  background: var(--primary-color);
  border-color: var(--primary-color);
  width: 50px;
  height: 50px;
  border: 1px solid var(--primary-color);
  position: relative;
}
/* Album Loader */
.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 4px solid #ccc;
  border-top-color: #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 10;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.card-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  display: none; /* fallback to ensure it's hidden */
}

.card-item.show {
  display: block !important; /* override if needed */
  opacity: 1;
  transform: translateY(0);
}

/* PRELOADER STYLES */
/* PRELOADER STYLES */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff; /* or your theme background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Preloader Image */
#preloader img {
  width: 400px; /* adjust as needed */
  height: auto;
  object-fit: contain;
}
/* Hide scrollbar and prevent scroll when preloader active */
body.preload-active {
  overflow: hidden;
  height: 100vh;
}

.call-to-action {
  text-align: end;
}
/* --------------------------------------------------
Media Query
-------------------------------------------------- */
@media screen and (max-width: 768px) {
  .cta-img {
    height: 100%;
    margin-top: -50px;
    display: flex;
    justify-content: center;
    position: relative;
    left: 62px;
    top: -3px;
  }
  .typewriter p {
    font-size: 12px;
  }
  .hello-text {
    font-size: 22px;
  }
  .banner-section {
    height: 220px;
  }
  .banner-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
  }
  .banner-overlay {
    height: 220px;
  }
  .banner-img {
    height: 220px;
  }
  .banner-img {
    object-fit: contain;
  }
  .common-banner {
    height: 115px;
    object-fit: cover;
  }
  .soft-tags-wraper {
    display: none;
  }
  .banner-content {
    padding-left: 55px;
  }
  .sidebar {
    display: none;
  }
  .offcanvas {
    background-color: var(--primary-color) !important;
  }
  .mobile-sidebar {
    display: block !important;
  }
  .mobile-sidebar {
    position: relative !important;
  }
  .logo-wraper {
    position: static;
  }
  .banner-content {
    text-align: center;
  }
  .banner-main-title {
    font-size: 32px;
    font-family: var(--font-secondary);
  }
  .mobile-menu {
    display: block;
  }
  .dropdown-menu-custom {
    position: absolute;
    left: 100%;
    top: 40px;
    left: 148px;
  }
  .outlined-text {
    font-size: 65px;
    top: -26px;
  }
  .outlined-text-right {
    font-size: 65px;
    top: -26px;
  }
  .solid-text {
    font-size: 30px;
    top: -5px;
  }
  .accordion-button {
    border: 0;
  }
  .accordion-button.collapsed {
    background-color: var(--primary-color);
    border: 0;
  }
  .logo-wraper::before {
    background-color: transparent !important;
  }
  .wave-text {
    font-size: 1em;
  }
  .about-img {
    height: 100%;
  }
  .call-to-action {
    text-align: center;
    position: relative;
    right: 70px;
    top: 3px;
  }
  .bg-action-box {
    text-align: center;
    padding-top: 30px;
  }
  .cursor {
    display: none;
  }
}
