/*
  BollyBonanza - Radios Template Style
  Modern Bollywood Events Website
*/

/* ==========================================
   VARIABLES & RESET
========================================== */
:root {
    /* Premium Modern Color Palette - Navy to Cyan */
    --primary-color: #1E3A8A;
    /* Navy Blue */
    --secondary-color: #06B6D4;
    /* Bright Cyan */
    --accent-color: #3B82F6;
    /* Electric Blue */
    --accent-cyan: #0EA5E9;
    /* Sky Blue */
    --dark-color: #0a0a0a;
    /* Deeper black */
    --dark-secondary: #1a1a1a;
    /* Secondary dark */
    --light-color: #f8f9fa;
    --text-white-opacity: rgba(255, 255, 255, 0.85);
    --text-blue-opacity: rgba(59, 130, 246, 0.95);

    /* Premium Gradients */
    --gradient-primary: linear-gradient(135deg, #1E3A8A 0%, #06B6D4 100%);
    --gradient-gold: linear-gradient(135deg, #3B82F6 0%, #0EA5E9 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(30, 58, 138, 0.85), rgba(6, 182, 212, 0.75));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #fff;
    background: linear-gradient(180deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
    overflow-x: hidden;
    font-weight: 400;
    position: relative;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #ff8c5a;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

img {
    max-width: 100%;
    height: auto;
}

/* ==========================================
   NAVBAR
========================================== */
.site-navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.site-navbar.scrolled {
    position: fixed;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.site-logo a {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff !important;
    text-decoration: none;
}

.site-logo .text-primary {
    color: var(--primary-color) !important;
}

.site-logo-dot {
    color: #ff8c5a !important;
}

.site-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 30px;
    align-items: center;
}

.site-menu li {
    position: relative;
}

.site-menu a {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 0;
    position: relative;
}

.site-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff8c5a;
    transition: width 0.3s ease;
}

.site-menu a:hover::after,
.site-menu .active a::after {
    width: 100%;
}

.site-menu-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
}

/* Mobile Menu */
.site-mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: rgba(26, 26, 26, 0.98);
    z-index: 2000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.site-mobile-menu.active {
    right: 0;
}

.site-mobile-menu-header {
    padding: 20px;
    text-align: right;
}

.site-mobile-menu-close button {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
}

.site-nav-wrap {
    list-style: none;
    padding: 20px;
}

.site-nav-wrap li {
    margin-bottom: 15px;
}

.site-nav-wrap a {
    color: #fff;
    font-size: 1.1rem;
    display: block;
    padding: 10px;
}

/* ==========================================
   HERO SECTION
========================================== */
.site-blocks-cover {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.site-blocks-cover.overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    z-index: 1;
}

.site-blocks-cover .container {
    position: relative;
    z-index: 2;
}

.site-blocks-cover h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #fff 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
}

.site-blocks-cover h1::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.8);
}

.site-blocks-cover .lead {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--text-white-opacity);
    line-height: 1.8;
}

.hero-buttons .btn {
    padding: 15px 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
}

/* ==========================================
   BUTTONS
========================================== */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.5);
}

.btn-outline-light {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--gradient-gold);
    color: var(--dark-color);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

/* ==========================================
   UNIT-9 CARDS (Show Cards)
========================================== */
.unit-9 {
    display: block;
    position: relative;
    overflow: hidden;
    height: 400px;
    text-decoration: none;
}

.unit-9 .image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.unit-9:hover .image {
    transform: scale(1.1);
}

.unit-9::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.unit-9:hover::before {
    opacity: 0.9;
}

.unit-9-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.unit-9:hover .unit-9-content {
    transform: translateY(-10px);
}

.unit-9-content h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.unit-9-content span {
    color: var(--accent-color);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Retro Block Layout */
.site-block-retro {
    display: flex;
    gap: 20px;
}

.site-block-retro .col1 {
    flex: 1;
}

.site-block-retro .col2 {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.site-block-retro .no-height {
    height: auto;
    min-height: 300px;
}

.site-block-retro .col1 .unit-9 {
    height: 100%;
    min-height: 620px;
}

/* ==========================================
   SECTIONS
========================================== */
.site-section {
    padding: 50px 0;
}

.site-section-heading {
    margin-bottom: 50px;
}

.site-section-heading h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    position: relative;
    display: inline-block;
    letter-spacing: -1px;
}

.w-border h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 20px auto 0;
}

.site-section-heading p {
    color: var(--text-white-opacity);
    max-width: 600px;
    margin: 0 auto;
}

.bg-light {
    background-color: #2a2a2a !important;
}

/* ==========================================
   TESTIMONIALS / SWIPER
========================================== */
.testimonial-swiper {
    padding: 40px 0;
}

.testimonial-swiper .swiper-slide {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.testimonial-swiper .bg-white {
    background-color: #fff !important;
}

.testimonial-swiper h5 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.testimonial-swiper .font-italic {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
}

.swiper-pagination-bullet {
    background-color: var(--primary-color);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* ==========================================
   SUBSCRIBE SECTION
========================================== */
.subscribe {
    min-height: 400px;
}

.subscribe h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.site-block-subscribe .form-control {
    padding: 15px 20px;
    border-radius: 50px 0 0 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.site-block-subscribe .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.site-block-subscribe .btn {
    border-radius: 0 50px 50px 0;
    padding: 15px 40px;
}

/* ==========================================
   TEAM MEMBERS / ARTISTS
========================================== */
.team-member {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.team-member:hover img {
    transform: scale(1.1);
}

.team-member .text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(60%);
    transition: transform 0.3s ease;
}

.team-member:hover .text {
    transform: translateY(0);
}

.team-member h4 {
    color: #fff;
    margin-bottom: 5px;
}

.text-white-opacity-05 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.team-member p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.team-member a {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.team-member a:hover {
    color: var(--primary-color);
}

/* ==========================================
   NEWS & EVENTS
========================================== */
.site-section .img-fluid {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.site-section a:hover .img-fluid {
    transform: scale(1.05);
}

.site-section .bg-white {
    background-color: #fff !important;
    border-radius: 0 0 10px 10px;
}

.site-section .text-black {
    color: var(--dark-color) !important;
}

.site-section .text-secondary {
    color: #666 !important;
}

/* ==========================================
   SOCIAL MEDIA BAR
========================================== */
.social-icon {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

/* ==========================================
   FOOTER
========================================== */
.site-footer {
    background-color: #0d0d0d;
    padding: 80px 0 40px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-heading {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.site-footer ul {
    list-style: none;
    padding: 0;
}

.site-footer ul li {
    margin-bottom: 10px;
}

.site-footer ul a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.site-footer ul a:hover {
    color: var(--primary-color);
}

.site-footer .fab {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.site-footer .fab:hover {
    color: var(--primary-color);
}

.site-footer .fas {
    color: var(--primary-color);
}

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 991px) {
    .site-blocks-cover h1 {
        font-size: 2.5rem;
    }

    .site-block-retro {
        flex-direction: column;
    }

    .site-block-retro .col1 .unit-9 {
        min-height: 400px;
    }

    .unit-9 {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .site-blocks-cover h1 {
        font-size: 2rem;
    }

    .site-section {
        padding: 60px 0;
    }

    .site-section-heading h2 {
        font-size: 2rem;
    }

    .hero-buttons .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .team-member .text {
        transform: translateY(0);
    }
}

/* ==========================================
   UTILITIES
========================================== */
.text-white {
    color: #fff !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.pt-5 {
    padding-top: 3rem !important;
}

.pb-5 {
    padding-bottom: 3rem !important;
}

.fw-light {
    font-weight: 300 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}