@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Montserrat:wght@400;700;800;900&display=swap');

:root {
    --bg-dark: #111518;
    --bg-darker: #0d1012;
    --bg-card: #1a1e23;
    --gold: #f3b700;
    --gold-hover: #ffc926;
    --text-main: #e0e0e0;
    --text-muted: #888;
}

body {
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    background: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    padding: 0;
    margin: 0;
    color: #fff;
}

h1,
h2,
h3 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-weight: 800;
    margin-left: 10px;
}

h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    color: #eee;
    font-weight: 700;
}

h3 {
    font-size: 28px;
    margin-bottom: 20px;
    margin-left: 10px;
    color: #666;
}

h3 span {
    font-size: 24px;
}

h4 {
    font-size: 23px;
    margin-bottom: 20px;
    line-height: 30px;
}

h5 {
    font-size: 13px;
}

small {
    color: #777;
    font-size: 13px;
}

p {
    margin-bottom: 25px;
}

blockquote {
    padding: 0px 20px;
    margin: 0 0 20px;
    border-left: 5px solid #aaa;
    font-size: 14px;
    line-height: 22px;
    font-style: italic;
    font-family: georgia;
}

.spacer {
    padding: 55px 0 0 0;
}

.center {
    text-align: center;
}

.thumbnail {
    background-color: #fff;
}



/*home*/
.homeinfo {
    padding: 180px 0 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    background: transparent;
}

.homeinfo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(13, 16, 18, 0.95) 0%, rgba(13, 16, 18, 0.6) 100%);
}

.homeinfo .row {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-subtitle {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 5px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 5px;
    margin-left: 10px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(50px, 8vw, 100px);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 40px;
}

.hero-title .white-text {
    color: #fff;
    display: block;
}

.hero-title .gold-text {
    color: var(--gold);
    display: block;
}

.listen-now-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

/* About Section */
.about-section {
    padding-top: 100px;
}

.about-section .row.d-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.about-img {
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    filter: grayscale(50%) contrast(120%);
}

.about-text-col {
    padding-top: 30px;
}

@media (min-width: 768px) {
    .about-text-col {
        padding-left: 40px;
    }
}

.about-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .about-title {
        font-size: 24px;
    }
}

.about-text {
    color: #bbb;
    margin-bottom: 20px;
}

.genre-tags {
    display: flex;
    gap: 15px;
}

.genre-tag {
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gold);
    border-radius: 4px;
}

.logo-footer {
    width: 200px;
    height: 80px;
    margin: 20px auto;
    object-fit: contain;
}

.logo-size {
    width: 300px;
    height: 100px;
    object-fit: contain;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 767px) {
    .logo-size {
        width: 150px;
        height: 60px;
    }
}

.logo-size:hover {
    filter: drop-shadow(0 0 12px rgba(243, 183, 0, 0.5)) brightness(1.2);
}

.btn-gold {
    background: var(--gold);
    color: #111 !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    border: none;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-gold:hover {
    background: var(--gold-hover);
    color: #000 !important;
    text-decoration: none;
}

.player-wrapper {
    background: var(--bg-card);
    padding: 8px 5px 1px 5px;
    border-radius: 5px;
    width: 280px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blockblack {
    background: var(--bg-dark);
    padding: 1px 0;
}

.overlay {
    z-index: 100;
    position: relative;
}

/*home*/

/*color*/
.bgcolor {
    background-color: #000066;
}

.textcolor {
    color: #ffcc33;
}

a {
    color: #ffcc33;
    text-decoration: none
}

a:hover {
    color: #fff;
    text-decoration: none
}

/*color*/


/*nav*/
.navbar-brand {
    padding: 10px 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 24px;
    letter-spacing: 1px;
    margin-top: 5px;
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .navbar-brand {
        padding: 5px 10px;
        margin-top: 0;
    }
}

.navbar-brand .logo-white {
    color: #fff;
}

.navbar-brand .logo-gold {
    color: var(--gold);
}

.navbar-nav {
    display: flex;
    align-items: center;
}

.navbar-nav>li>a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    transition: color 0.3s ease;
}

.navbar-nav>li:hover>a {
    color: var(--gold) !important;
    background: transparent !important;
}

.navbar-inverse {
    background: rgba(13, 16, 18, 0.9);
    /* background-image: url('images/bg-1.jpg'); */
    background-size: cover;
    background-position: bottom;
    border: none;
    padding: 8px 0;
}

@media (max-width: 767px) {
    .navbar-inverse {
        padding: 4px 0;
    }
}

.navbar-toggle {
    border-color: var(--gold) !important;
}

@media (max-width: 767px) {
    .navbar-toggle {
        margin-top: 12px;
        margin-right: 15px;
    }
}

.navbar-toggle:hover {
    background-color: rgba(243, 183, 0, 0.1) !important;
}

.navbar-toggle .icon-bar {
    background-color: var(--gold) !important;
}

.nav-book-btn {
    background: var(--gold);
    color: #111 !important;
    padding: 8px 20px !important;
    border-radius: 4px;
    margin-left: 15px;
    font-weight: 700 !important;
}

.nav-book-btn:hover {
    background: var(--gold-hover);
    color: #000 !important;
}

@media (max-width: 767px) {
    .navbar-nav {
        display: block;
    }

    .nav-book-btn {
        margin-left: 0;
        margin-top: 10px;
        display: inline-block;
    }
}

/*nav*/

/* Image deg */
.img_deg {
    mask-image: linear-gradient(black 80%,
            transparent)
}

/* Image deg */



/*releases (Videos)*/
.releases {
    margin-bottom: 20px;
    padding-top: 80px;
}

.videos-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.videos-title {
    font-size: 36px;
    font-weight: 800;
}

.videos-title .gold-text {
    color: var(--gold);
}

.releases .album {
    background-color: transparent;
    margin-bottom: 20px;
    border-radius: 5px;
    padding: 0 15px;
}

.main-video {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px;
}

.main-video:hover {
    border-color: rgba(243, 183, 0, 0.5);
}

.main-video .img-responsive {
    width: 100%;
    min-height: 350px;
    object-fit: cover;
    filter: grayscale(20%);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: var(--gold);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.main-video:hover .play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.main-title {
    font-size: 20px !important;
    font-weight: 700;
    margin-top: 15px !important;
    margin-bottom: 10px !important;
}

.btn-watch {
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
}

.btn-watch:hover {
    color: var(--gold);
}

.side-video {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.side-video h6 {
    font-size: 13px !important;
    line-height: 1.4 !important;
    margin-bottom: 10px !important;
    font-weight: 600;
}

.btn-watch-small {
    font-size: 12px;
    color: var(--gold);
    text-transform: uppercase;
}

.releases .album .img-rollover {
    display: block;
    overflow: hidden;
    position: relative;
}

.releases .album .img-rollover img {
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.5s ease;
    width: 100%;
    display: block;
}

.releases .album .img-rollover:hover img {
    transform: scale(1.05);
    filter: brightness(80%);
}

/*releases*/

/*youtube btn*/
.youtube-subscribe-btn {
    background: linear-gradient(45deg, #ff0000, #ff4d4d);
    color: #ffffff;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: bold;
    margin-right: 20px;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.youtube-subscribe-btn:hover {
    background: linear-gradient(45deg, #ff3333, #ff6666);
    color: #ffffff;
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.7);
    text-decoration: none;
}

.youtube-subscribe-btn i {
    margin-right: 8px;
    font-size: 18px;
    color: #fff;
}


.full-width-btn {
    width: 100%;
}

.side-video-row {
    display: flex;
    align-items: center;
}

.side-video-img-col {
    padding-right: 5px;
}

.side-video-img-col .img-rollover {
    border-radius: 3px;
}

.side-video-img-col .img-responsive {
    filter: grayscale(40%);
}

.side-video-text-col {
    padding-left: 5px;
}

.side-video-text-col .albumdetail {
    padding: 0;
}

.side-video-text-col h6 {
    color: #ddd;
    margin-top: 0;
}

/* Media query for mobile sizing */
@media (max-width: 767px) {
    .youtube-subscribe-btn {
        width: 100%;
        margin-top: 10px;
        text-align: center;
    }
}

/*youtube btn*/

/*blog / events / tour dates*/
.blogevent {
    color: #ccc;
    padding-top: 80px;
}

.tour-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.tour-title .gold-text {
    color: var(--gold);
}

.tour-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tour-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.tour-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.tour-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px 10px;
}

.tour-date {
    flex: 0 0 15%;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.tour-date b {
    color: #fff;
    font-size: 18px;
    margin-right: 5px;
}

.tour-city {
    flex: 0 0 30%;
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

.tour-venue {
    flex: 0 0 35%;
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.tour-action {
    flex: 0 0 20%;
    text-align: right;
}

.tour-btn {
    font-size: 12px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 4px;
    text-transform: uppercase;
}

.gold-btn {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.gold-btn:hover {
    background: var(--gold);
    color: #000;
    text-decoration: none;
}

.tour-soldout {
    color: #ff4d4d;
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 767px) {
    .tour-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .tour-date,
    .tour-city,
    .tour-venue,
    .tour-action {
        flex: 1 1 100%;
        text-align: left;
    }
}

/*blog*/

.blogevent ul {
    padding: 0;
    list-style: none;
    margin-top: 35px;
}

.blogevent ul li {
    font-size: 13px;
}

.blogevent ul li p {
    margin: 0;
    line-height: 18px;
}

.events ul li {
    background-color: #191919;
    margin-bottom: 1px;
}

.events ul li h5 {
    margin: 7px 0;
}

.events ul li .date {
    text-align: center;
    line-height: 38px;
    color: #444;
    text-shadow: 0px -1px 0px #000;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #111
}

.events ul li .date b {
    display: block;
    font-size: 30px;
}

.events ul li .date span {
    font-size: 22px;
}


.ourblog ul li {
    margin-bottom: 20px;
}

.ourblog ul li img {
    float: left;
    margin-right: 20px;
}

.ourblog ul li .blogtext {
    overflow: hidden;
}

/*blog*/




/* Event Modal */
.event-modal .modal-dialog {
    max-width: 900px;
    width: 95%;
}

.event-modal .modal-content {
    background: var(--bg-darker);
    border: 1px solid rgba(243, 183, 0, 0.15);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(243, 183, 0, 0.08), 0 20px 60px rgba(0, 0, 0, 0.5);
    padding: 0;
    color: var(--text-main);
}

.event-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: all 0.3s ease;
    text-shadow: none;
}

.event-modal-close:hover {
    opacity: 1;
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

.event-modal-body {
    padding: 0;
}

.event-modal-grid {
    display: flex;
    flex-wrap: wrap;
    min-height: 400px;
}

.event-modal-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    min-height: 350px;
}

.event-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.event-modal-image-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(to right, transparent, var(--bg-darker));
}

.event-modal-info {
    flex: 0 0 55%;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-modal-badge {
    display: inline-block;
    background: var(--gold);
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 3px;
    padding: 4px 14px;
    border-radius: 3px;
    margin-bottom: 16px;
    text-transform: uppercase;
    align-self: flex-start;
}

.event-modal-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 28px;
    color: #fff;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.event-modal-date {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.event-modal-date-month {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--gold);
}

.event-modal-date-year {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: var(--text-muted);
}

.event-modal-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 767px) {
    .event-modal .modal-dialog {
        width: 100%;
        height: 100vh;
        max-width: none;
        margin: 0;
    }

    .event-modal .modal-content {
        border-radius: 0;
        border: none;
        height: 100vh;
        display: flex;
        flex-direction: column;
    }

    .event-modal-body {
        flex: 1;
        display: flex;
    }

    .event-modal-grid {
        flex-direction: column;
        min-height: auto;
        flex: 1;
        overflow-y: auto;
    }

    .event-modal-image {
        flex: 0 0 auto;
        width: 100%;
        aspect-ratio: 1 / 1;
        min-height: 0;
    }

    .event-modal-image img {
        position: absolute;
        height: 100%;
    }

    .event-modal-image-overlay {
        display: none;
    }

    .event-modal-info {
        flex: 1 1 auto;
        padding: 28px 24px;
    }

    .event-modal-title {
        font-size: 22px;
    }

    .event-modal-description {
        font-size: 14px;
    }
}

/* End Event Modal */





/*contact*/
.contactform {
    padding-top: 80px;
}

.contact-title {
    font-size: 50px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 10px !important;
}

.contact-title .gold-text {
    color: var(--gold);
}

.contactform .glass-card {
    background: transparent;
    padding: 20px 0;
    text-align: left;
}

.contactform h4 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-muted);
    font-weight: 400;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
}

.contactform .glass-input {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.03);
    color: #fff;
    margin-bottom: 20px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.contactform textarea.glass-input {
    resize: none;
    padding-top: 10px;
}

.contactform .glass-input::placeholder {
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

.contactform .glass-input:focus {
    border-bottom-color: var(--gold);
    background-color: rgba(255, 255, 255, 0.06);
}

.contactform .glass-submit {
    border: none;
    width: 100%;
    padding: 15px 10px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--gold);
    color: #111;
    font-weight: 800;
    transition: all 0.3s ease;
    display: block;
    margin-top: 20px;
}

.contactform .glass-submit:hover {
    background: #fff;
    color: #000;
}

/*contact*/


#footer {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px 0;
    color: #fff;
    font-size: 12px;
    text-align: center;
    margin-bottom: 5px;
    color: #aaa;
    margin-top: 50px;
    z-index: 100;
    position: relative;
}

.footer_c_text {
    line-height: 1px;
}

/* Social Media Icons */
.social-icons {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.social-icons a {
    color: #fff;
    margin: 0 15px;
    font-size: 24px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    color: #888;
}

/*background slider*/
.carousel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    width: 100%;
}

.carousel .item {
    -webkit-transition: opacity 2s;
    -moz-transition: opacity 1s;
    -ms-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
}

.carousel .active.left {
    left: 0;
    opacity: 0;
    z-index: 2;
}

.carousel .next {
    left: 0;
    opacity: 1;
    z-index: 1;
}

.carousel-inner>.item>img,
.carousel-inner>.item>a>img {
    width: 100%;
}

/*background slider*/

/*animation*/
#about,
.album,
.blogevent ul li,
h3,
h4 {
    visibility: hidden;
}

.animated {
    visibility: visible !important;
}

/*animation*/

@media (max-width: 767px) {
    .hero-title {
        font-size: 45px;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .videos-title {
        font-size: 28px;
    }

    .homeinfo {
        padding-top: 130px !important;
        background: url('images/backgrounds/back5.jpg') center/cover no-repeat;
    }
}

@media (max-width: 700px) {
    .homeinfo {
        padding-top: 100px;
    }

    .events ul li,
    .events ul li .date {
        background: none;
    }

    .events ul li .date b {
        display: inline;
        font-size: 22px;
        border-right: 1px solid #333;
        padding-right: 10px;
        margin-right: 10px;
    }
}