/* GENERAL */

@font-face {
    font-family: "GothamBold";
    src: url("../fonts/Gotham-Bold.otf") format("opentype");
}

@font-face {
    font-family: "GothamBook";
    src: url("../fonts/Gotham-Book.otf") format("opentype");
}
.bit-widget .bit-upcoming-events-show-all-button, .bit-past-events-show-all-button {
    color: #191919;
}

.container {
    width: 80vw;
    margin-left: 10vw;
}

.text-white {
    color: white;
}

.text-light {
    color: #969696;
}

.text-secondary {
    color: #f70025 !important;
}

.color-secondary {
    background-color: #ffe86b;
}

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

h1,
h2 {
    color: white;
    font-family: "GothamBold", sans-serif;
    font-weight: 500;
}

h1 {
    font-size: 15pt;
}

h2 {
    font-size: 12pt;
}

p {
    font-family: "GothamBook", sans-serif;
}

h3 {
    color: white;
}

#social-bar {
    position: fixed;
    z-index: 1000;
    align-items: center;
    height: 100vh;
    display: none;
}

.social-icons {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}

.social-icon {
    margin-top: 3px;
    width: 42px;
}

.social-icon:hover {
    fill: #c80e0e;
}

.social-icon-sm {
    width: 30px;
}

.social-icon-sm:hover {
    fill: #baa8a8;
}

.pb-40 {
    padding-bottom: 40px;
}

.pt-40 {
    padding-top: 40px;
}

.pl-0 {
    padding-left: 0;
}
.p-0 {
    padding: 0;
}

.pr-20 {
    padding-right: 20px;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-20 {
    margin-bottom: 20px;
}

.pb-20 {
    padding-bottom: 20px;
}

.my-30 {
    margin: 30px 0;
}

.cursor-pointer {
    cursor: pointer;
}

.pl-0 {
    padding-left: 0;
}

.mw-340 {
    min-width: 340px;
}
.pt-2 {
    padding-top: 2px;
}

::selection {
    background-color: #ffe86b;
}

@media screen and (min-width: 500px) {
    h1 {
        font-size: 18pt;
    }
    h2 {
        font-size: 15pt;
    }
}
@media screen and (min-width: 960px) {
    h1 {
        font-size: 25pt;
    }

    h2 {
        font-size: 18pt;
    }

    #social-bar {
        display: flex;
    }
}

@media screen and (min-width: 1200px) {
    h1 {
        font-size: 25pt;
    }

    h2 {
        font-size: 21pt;
    }
}

body {
    background-color: #191919;
}

/* LOADER */

#loader {
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    position: fixed;
    background-color: #fffefe;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loader-overlay {
    width: 100%;
    height: 100%;
    z-index: 2002;
    position: relative;
    animation-name: breathe;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

@keyframes breathe {
    0%,
    100% {
        background-color: rgba(0, 0, 0, 0);
    }
    50% {
        background-color: rgba(0, 0, 0, 0.945);
    }
}

#loader-logo {
    position: absolute;
    z-index: 2001;
    width: 60%;
}

@media screen and (min-width: 960px) {
    #loader-logo {
        width: 20%;
    }
}

/* BANNER */
.banner {
    z-index: 300;
}
/* NAVIGATION */

#logo {
    padding-right: 20px;
    height: 70px;
}

.underline {
    position: relative;
    margin-right: 10px;
}

.underline::before {
    content: "";
    position: absolute;
    bottom: 20px;
    height: 2px;
    width: 0;
    background-color: white;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.text-secondary::before {
    background-color: #6bffbf;
}

.underline:hover::before {
    visibility: visible;
    width: 100%;
}

.active > .underline::before {
    width: 100%;
    visibility: visible;
}

.nav-lg {
    display: none;
}

.nav-shadow {
    padding-bottom: 15px;
    box-shadow: 0 1px 8px rgb(31, 31, 31);
}

.uk-navbar-nav > li > a {
    color: white;
    font-family: "GothamBook", sans-serif;
    font-size: 15pt;
}

.uk-navbar-nav > li:hover > a {
    color: white;
}

.uk-navbar-container {
    margin-top: 16px;
}

/* Toggle navbar on medium screen */
@media screen and (min-width: 960px) {
    .nav-lg {
        display: block;
    }

    .nav-sm {
        display: none;
    }

    .uk-navbar-container {
        margin-top: 0;
    }

    .nav-shadow {
        padding-bottom: 0;
    }
}

/* IMG SLIDER */

.imgCover {
    background: #191919;
    position: relative;
    top: -80px;
}

.bg-img {
    opacity: 0.4;
}

#cta {
    margin-top: 0;
    z-index: 1;
    margin-top: 20px;
}

#cta-button {
    border-color: white;
    color: white;
    background-color: transparent;
    font-size: 15pt;
    padding: 5px 20px;
    transition: all 0.3s ease-in-out;
    font-family: "GothamBook", sans-serif;
}

#cta-button:hover {
    background-color: rgb(0, 0, 0);
    color: #fff9f9;
    text-decoration: none;
}

@media screen and (min-width: 960px) {
    #cta-button {
        font-size: 18pt;
    }
}

@media screen and (max-width: 960px) {
    #logo {
        height: 50px;
    }
}

/* MUSIC */

.music-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1% 0;
}

#music {
    position: relative;
    top: -80px;
}

.album-card {
    background-color: rgba(255, 255, 255, 0);
    position: relative;
}

.album-card:hover .album-player {
    display: block;
}

.album-img {
    width: 250px;
    height: 250px;
}

.album-player {
    width: 250px;
    height: 250px;
    background-color: #191919;
    opacity: 0.95;
    position: absolute;
    z-index: 1;
    left: 16px;
    display: none;
    margin: 0 0 0 0;
}

.spotify-player {
    position: relative;
    top: 30px;
    right: 30px;
    width: 250px;
    height: 60px;
}

@media screen and (min-width: 420px) {
    .album-img {
        width: 340px;
        height: 340px;
    }
    .album-player {
        width: 340px;
        height: 340px;
    }
    .spotify-player {
        width: 340px;
        height: 80px;
    }
}

.music-link {
    color: white;
    font-size: 14pt;
}

.music-link-button {
    border-radius: 5px;
    color: white;
    background-color: transparent;
    border: 1px solid white;
    font-size: 12pt;
}

.music-link-button:hover {
    color: #191919;
    background-color: white;
    border-color: white;
}

.btn-header {
    color: white;
    border: 0px;
    border-radius: 3px;
    font-size: 11pt;
    padding: 0px 10px;
    position: relative;
    top: -4px;
}

.color-spotify {
    background-color: #1db954;
    height: 35px;
}
.color-apple {
    background-color: #ffffff;
    height: 35px;
}

.btn-header:hover {
    cursor: pointer;
}

.btn-link {
    margin: 30px 0;
}

.btn-icon {
    height: 35px;
    top: -2px;
    width: 24px;
    display: inline-block;
    position: relative;
}

.btn-text {
    position: relative;
    margin: 0 5px;
    display: none;
}
.btn-text-gray {
    position: relative;
    margin: 0 5px;
    display: none;
    color: #999999;
}
@media screen and (min-width: 768px) {
    .btn-text {
        display: inline;
    }
    .btn-text-black {
        display: inline;
    }
    .music-grid {
        grid-template-columns: 1fr 1fr;
        grid-gap: 3% 0;

    }
    .album-img {
        width: 310px;
        height: 310px;
    }
    .album-player {
        width: 310px;
        height: 310px;
    }
    .spotify-player {
        width: 310px;
        height: 80px;
    }
}


@media screen and (min-width: 960px) {
   
}
@media screen and (min-width: 1400px) {
    .album-img {
        width: 280px;
        height: 280px;
    }
    .album-player {
        width: 280px;
        height: 280px;
    }
    .spotify-player {
        width: 280px;
        height: 80px;
    }
    .music-grid {
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-gap: 5% 0;

    }
}
@media screen and (min-width: 768px) {

    .btn-header {
        padding: 2px 10px;
        font-size: 12pt;
    }

    .spotify-icon {
        width: 28px;
    }
}

/* VIDEOS */
.cookies-enabled{
    display: block;
}
.yt-arrow {
    padding: 5px 8px 5px 8px;
}
.color-yt {
    background-color: hsl(3, 82%, 50%);
}

.yt-icon {
    width: 28px;
}

.slide-light {
    color: rgb(167, 167, 167);
}

.slide-light:hover {
    color: rgb(209, 209, 209);
}

.uk-slidenav-small {
    margin: 0;
}

@media screen and (min-width: 768px) {
    .yt-icon {
        width: 32px;
    }
}

/* TOUR DATES */

#toggle-button {
    margin-top: 10px;
    width: 100%;
    border: 0;
    background-color: #ffe86b;
    color: #191919;
}

#tour-wrapper {
    background-image: url("../images/");
    background-color: #cccccc;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 40px 0;
}

#tour-container {
    background-color: rgba(0, 0, 0, 0.733);
    border-radius: 3px;
}

.tour-record {
    padding: 5px 10px;
}

.tour-button {
    border-radius: 5px;
    border-color: #ffe86b;
    background-color: transparent;
    color: #ffe86b;
    font-size: 9pt;
    padding: 0 10px;
}

.tour-button:hover {
    border-color: #ffe86b;
    background-color: #ffe86b;
    color: #191919;
    cursor: pointer;
}

.tour-date > p {
    font-family: "Roboto", sans-serif;
    text-align: center;
}

.tour-month {
    position: relative;
    top: 8px;
}

.tour-day {
    font-size: 18pt;
}

.tour-name {
    flex-grow: 2;
    margin-left: 10px;
    font-size: x-small;
}

.tour-venue {
    flex-grow: 2;
    text-align: right;
    margin-left: 4px;
    margin-right: 10px;
    font-size: x-small;
}
@media screen and (min-width: 420px) {
    .tour-month {
        top: 10px;
    }

    .tour-day {
        font-size: 20pt;
    }

    .tour-name {
        font-size: small;
    }
    .tour-venue {
        margin-left: 0px;
        font-size: small;
    }
}
@media screen and (min-width: 768px) {
    .tour-name {
        margin-left: 30px;
        font-size: unset;
    }

    .tour-venue {
        margin-right: 30px;
        font-size: unset;
    }

    .tour-record {
        padding: 10px 30px;
    }

    .tour-button {
        padding: 0 30px;
        font-size: 12pt;
    }
}

/* BIO 
.img-bio {
    border-radius: 3px;
}

.img-flip {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.overlay-dark {
    background-color: #191919;
    opacity: 0.6;
}

.name-bio {
    font-size: 15pt;
    color:#ffffff
}*/


/* Center Circle Image */
.bio-image-wrapper {
  position: relative;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
}

.bio-image-circle {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: all 0.5s ease;
  cursor: pointer;
}

.bio-image-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px 5px rgba(255, 0, 150, 0.6),
              0 0 50px 10px rgba(0, 200, 255, 0.6),
              0 0 75px 15px rgba(0, 255, 150, 0.6);
}

/* Biography Text */
.bio-text h2 {
  font-size: 22pt;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
  color: #fbf2f2;
}

.bio-text p {
  font-size: 18pt;
  line-height: 0.3;
  color: #dbcece;
}

.bio-text .highlight {
  color: #7b5cff; /* gradient-like purple */
  font-weight: 700;
}
.highlight-faiyoos{
    color: #ffffff;
}
.buottom-highlight{
    color: #7b5cff;
    line-height: 2;
    font-size: 20px;
}
#textspace{
    color: #ececec;
    padding-left: 80px;
    font-size: 30px;
}
.font-size{
    font-size: 25pt;
}
/* Contact Section */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon-circle {
  width: 50px;
  height: 50px;
  background: #222;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.icon-circle:hover {
  background: #2563eb; /* blue hover */
}

.contact-item h4 {
  font-size: 14pt;
  margin: 0;
  color: #00c4b4;
}

.contact-item p {
  margin: 2px 0 0;
  font-size: 13pt;
  color: #fff;
}

.contact-item a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #7b5cff;
}


/* FOOTER */

footer {
     /* margin-bottom: 90px; */
    text-align: center;
    background-color: #363535;
}

h4 {
    margin-top: 2vh;
    margin-bottom: 0vh;
    color: rgb(255, 213, 0);
    font-size: 12pt;
    font-family: "GothamBook", sans-serif;
    text-align: center;
}

#email-flex,
#subscribe-btn,
#subscribe-btn-wrap {
    min-width: 100%;
}

#subscribe-btn {
    border-color: #000000;
    background-color: transparent;
    color: #000000;
    font-size: 9pt;
    padding: 0 10px;
}

#subscribe-btn:hover {
    border-color: #f40b07;
    background-color: #05f7db;
    color: #191919;
}

.social-icons-footer {
    width: 60%;
    margin-left: 20%;
}

.center-footer-item {
    width: 80%;
    margin-left: 10%;
}

.footer-icon {
    padding-left: 5px;
    padding-right: 5px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    padding: 30px 0 10px 0 !important;
    margin: 0 !important;
    font-size: 11pt;
}

.uk-modal-title {
    color: black;
}

.footer-text {
    color: #969696;
}

.footer-text:hover {
    color: #ffe86b;
}

@media screen and (min-width: 768px) {
    .social-icons-footer {
        width: 70%;
        margin-left: 15%;
    }

    .footer-links {
        justify-content: space-between;
        flex-direction: row;
    }

    h4 {
        font-size: 15pt;
    }
}

@media screen and (min-width: 1200px) {
    h4 {
        font-size: 19pt;
    }
}

@media screen and (min-width: 1650px) {
    #email-flex {
        min-width: 75%;
    }

    #subscribe-btn-wrap {
        box-sizing: content-box;
        min-width: 24%;
        margin-left: 1%;
    }

    h4 {
        font-size: 21pt;
    }
}
