/**
 * NICEWISE – Main Stylesheet
 * Premium dark celebrity portfolio
 */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --primary: #000000;
    --secondary: #111111;
    --accent: #FFD700;
    --accent-dark: #C9A800;
    --accent-glow: rgba(255, 215, 0, 0.35);
    --white: #FFFFFF;
    --gray-100: #F5F5F5;
    --gray-200: #E0E0E0;
    --gray-300: #B0B0B0;
    --gray-400: #888888;
    --gray-500: #666666;
    --gray-600: #444444;
    --gray-700: #2A2A2A;
    --gray-800: #1A1A1A;
    --gray-900: #0D0D0D;

    --font-primary: 'Poppins', sans-serif;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    --glass: rgba(17, 17, 17, 0.75);
    --glass-border: rgba(255, 215, 0, 0.12);
    --neon-gradient: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    --dark-gradient: linear-gradient(180deg, #000000 0%, #111111 50%, #000000 100%);
    --hero-overlay: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.95) 100%);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--primary);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--white);
}

::selection {
    background: var(--accent);
    color: var(--primary);
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--primary);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    color: var(--accent);
    margin-top: 1.5rem;
}

.equalizer {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
    height: 50px;
}

.equalizer span {
    width: 6px;
    background: var(--neon-gradient);
    border-radius: 3px;
    animation: equalize 0.8s ease-in-out infinite alternate;
}

.equalizer span:nth-child(1) { height: 20px; animation-delay: 0s; }
.equalizer span:nth-child(2) { height: 35px; animation-delay: 0.1s; }
.equalizer span:nth-child(3) { height: 50px; animation-delay: 0.2s; }
.equalizer span:nth-child(4) { height: 30px; animation-delay: 0.3s; }
.equalizer span:nth-child(5) { height: 40px; animation-delay: 0.4s; }

@keyframes equalize {
    0% { height: 15px; }
    100% { height: 50px; }
}

/* ============================================
   SCROLL PROGRESS & CURSOR
   ============================================ */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--neon-gradient);
    width: 0%;
    z-index: 10001;
    box-shadow: 0 0 10px var(--accent-glow);
}

#cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s;
    mix-blend-mode: screen;
}

body:hover #cursor-glow {
    opacity: 0.4;
}

@media (max-width: 991px) {
    #cursor-glow { display: none; }
}

/* ============================================
   NAVIGATION
   ============================================ */
#mainNav {
    padding: 1rem 0;
    background: transparent;
    transition: var(--transition);
    z-index: 1000;
}

#mainNav.scrolled {
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar-brand .brand-text {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: var(--white);
}

.navbar-brand .accent,
.footer-brand .accent {
    color: var(--accent);
}

.navbar-nav .nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-300) !important;
    padding: 0.5rem 0.85rem !important;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.btn-nav {
    background: var(--neon-gradient) !important;
    color: var(--primary) !important;
    border-radius: 50px !important;
    padding: 0.45rem 1.4rem !important;
    font-weight: 600 !important;
    margin-left: 0.5rem;
}

.btn-nav::after { display: none !important; }

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-glow);
    color: var(--primary) !important;
}

.navbar-toggler {
    border: 1px solid var(--accent);
    padding: 0.4rem 0.6rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.15rem var(--accent-glow);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-gold {
    background: var(--neon-gradient);
    color: var(--primary);
    border: none;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    letter-spacing: 0.04em;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-gold:hover {
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-outline-gold {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    font-weight: 600;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    letter-spacing: 0.04em;
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 500;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.btn-ghost:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

/* ============================================
   SECTION COMMONS
   ============================================ */
.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background: var(--secondary);
}

.section-black {
    background: var(--primary);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title .gold {
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

.divider-gold {
    width: 60px;
    height: 3px;
    background: var(--neon-gradient);
    margin: 1.25rem auto;
    border-radius: 2px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--secondary) center/cover no-repeat;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--hero-overlay);
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
    z-index: 2;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 80px;
}

.hero-name {
    font-size: clamp(3.5rem, 12vw, 8rem);
    font-weight: 900;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-name span {
    display: inline-block;
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 40px var(--accent-glow));
}

.hero-roles {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    color: var(--gray-300);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    min-height: 2em;
    margin-bottom: 0.5rem;
}

.hero-roles .role-text {
    color: var(--accent);
    font-weight: 600;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--gray-400);
    max-width: 500px;
    margin-bottom: 0.5rem;
}

.hero-social {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.hero-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--gray-300);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    font-size: 1.1rem;
}

.hero-social a:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px var(--accent-glow);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.hero-scroll .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
}

.hero-equalizer {
    position: absolute;
    bottom: 80px;
    right: 60px;
    z-index: 10;
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 40px;
    opacity: 0.6;
}

.hero-equalizer span {
    width: 4px;
    background: var(--accent);
    border-radius: 2px;
    animation: equalize 0.9s ease-in-out infinite alternate;
}

.hero-equalizer span:nth-child(1) { animation-delay: 0s; height: 15px; }
.hero-equalizer span:nth-child(2) { animation-delay: 0.15s; height: 30px; }
.hero-equalizer span:nth-child(3) { animation-delay: 0.3s; height: 20px; }
.hero-equalizer span:nth-child(4) { animation-delay: 0.45s; height: 35px; }
.hero-equalizer span:nth-child(5) { animation-delay: 0.1s; height: 25px; }
.hero-equalizer span:nth-child(6) { animation-delay: 0.35s; height: 18px; }

@media (max-width: 768px) {
    .hero-equalizer { display: none; }
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
    position: relative;
    padding: 160px 0 80px;
    background: var(--secondary);
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.06) 0%, transparent 70%);
}

.page-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    position: relative;
}

.page-hero .breadcrumb {
    justify-content: center;
    background: none;
    margin-top: 1rem;
}

.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a {
    color: var(--gray-400);
    font-size: 0.85rem;
}

.page-hero .breadcrumb-item.active {
    color: var(--accent);
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
    color: var(--gray-600);
}

/* ============================================
   STATISTICS / COUNTERS
   ============================================ */
.stats-section {
    background: var(--secondary);
    padding: 80px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-400);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

/* ============================================
   ABOUT
   ============================================ */
.about-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image-wrap img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.about-image-frame {
    position: absolute;
    inset: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius);
    pointer-events: none;
    z-index: 2;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--gray-300);
    margin-bottom: 1rem;
}

.about-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-meta-item h5 {
    color: var(--accent);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.about-meta-item p {
    color: var(--white);
    font-weight: 500;
    margin: 0;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), transparent);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 2.5rem;
}

.timeline-dot {
    position: absolute;
    left: 12px;
    top: 5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
}

.timeline-year {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.timeline-content h4 {
    font-weight: 700;
    margin: 0.3rem 0;
}

.timeline-content p {
    color: var(--gray-400);
    font-size: 0.95rem;
}

/* ============================================
   MUSIC CARDS
   ============================================ */
.music-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(20px);
    height: 100%;
}

.music-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px var(--accent-glow);
}

.music-cover {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.music-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.music-card:hover .music-cover img {
    transform: scale(1.08);
}

.music-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: var(--transition);
}

.music-card:hover .music-play-btn {
    opacity: 1;
}

.music-play-btn .play-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--neon-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.music-play-btn .play-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--accent-glow);
}

.music-info {
    padding: 1.5rem;
}

.music-info h4 {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.music-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: var(--gray-400);
}

.music-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.music-genre {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent);
    padding: 0.2rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.stream-btns {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.stream-btns a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-300);
    font-size: 0.9rem;
    transition: var(--transition);
}

.stream-btns a:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
    transform: scale(1.1);
}

/* ============================================
   VIDEO CARDS
   ============================================ */
.video-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.video-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.video-card:hover .video-thumb img {
    transform: scale(1.08);
}

.video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.video-play .play-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.4rem;
    transition: var(--transition);
    box-shadow: 0 0 30px var(--accent-glow);
}

.video-card:hover .play-circle {
    transform: scale(1.15);
    background: var(--accent);
}

.video-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.video-info {
    padding: 1.25rem;
}

.video-info h4 {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.video-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--gray-300);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--neon-gradient);
    color: var(--primary);
    border-color: transparent;
    font-weight: 600;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-auto-rows: 10px;
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h5 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.gallery-overlay span {
    font-size: 0.8rem;
    color: var(--accent);
}

.gallery-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-zoom {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-item.hidden {
    display: none;
}

/* Size variants for masonry */
.gallery-item.tall { grid-row: span 35; }
.gallery-item.medium { grid-row: span 28; }
.gallery-item.short { grid-row: span 22; }
.gallery-item.wide { grid-column: span 2; grid-row: span 25; }

@media (max-width: 768px) {
    .gallery-item.wide { grid-column: span 1; }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
}

/* ============================================
   PORTFOLIO CARDS
   ============================================ */
.portfolio-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    backdrop-filter: blur(15px);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.portfolio-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.portfolio-card:hover .portfolio-img img {
    transform: scale(1.1);
}

.portfolio-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
    border: 1px solid var(--glass-border);
}

.portfolio-body {
    padding: 1.5rem;
}

.portfolio-body h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.portfolio-body p {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   EVENTS TIMELINE
   ============================================ */
.event-card {
    display: flex;
    gap: 2rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2rem;
    transition: var(--transition);
    backdrop-filter: blur(15px);
}

.event-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transform: translateX(8px);
}

.event-poster {
    width: 200px;
    min-height: 220px;
    flex-shrink: 0;
    overflow: hidden;
}

.event-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.event-card:hover .event-poster img {
    transform: scale(1.08);
}

.event-details {
    padding: 1.75rem 1.75rem 1.75rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.event-date {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.event-details h3 {
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    color: var(--gray-400);
}

.event-meta i {
    color: var(--accent);
    margin-right: 0.4rem;
}

@media (max-width: 768px) {
    .event-card {
        flex-direction: column;
    }
    .event-poster {
        width: 100%;
        min-height: 200px;
    }
    .event-details {
        padding: 1.5rem;
    }
}

/* ============================================
   NEWS CARDS
   ============================================ */
.news-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.news-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.news-img {
    height: 220px;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.news-card:hover .news-img img {
    transform: scale(1.08);
}

.news-body {
    padding: 1.5rem;
}

.news-date {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.news-body h4 {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.news-body p {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.read-more {
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.read-more:hover {
    gap: 0.75rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(15px);
    height: 100%;
}

.testimonial-card .quote-icon {
    font-size: 2rem;
    color: var(--accent);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--gray-300);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.testimonial-author h5 {
    font-weight: 700;
    margin: 0;
    font-size: 1rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.swiper-pagination-bullet {
    background: var(--gray-500) !important;
}

.swiper-pagination-bullet-active {
    background: var(--accent) !important;
}

/* ============================================
   SPONSORS
   ============================================ */
.sponsors-track {
    overflow: hidden;
    padding: 2rem 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.sponsors-slide {
    display: flex;
    gap: 4rem;
    animation: scroll-logos 30s linear infinite;
    width: max-content;
}

.sponsor-logo {
    height: 50px;
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.4;
    filter: grayscale(1) brightness(2);
    transition: var(--transition);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.sponsor-logo:hover {
    opacity: 1;
    filter: none;
    color: var(--accent);
}

@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   SOCIAL MEDIA SECTION
   ============================================ */
.social-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    backdrop-filter: blur(15px);
}

.social-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.social-card .social-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.8rem;
    background: rgba(255, 215, 0, 0.08);
    color: var(--accent);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.social-card:hover .social-icon {
    background: var(--neon-gradient);
    color: var(--primary);
    box-shadow: 0 0 30px var(--accent-glow);
}

.social-card h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.social-card p {
    color: var(--gray-400);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.social-card .btn-follow {
    font-size: 0.8rem;
    padding: 0.4rem 1.25rem;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-form-wrap {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    backdrop-filter: blur(20px);
}

.form-control,
.form-select {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--white) !important;
    border-radius: 10px !important;
    padding: 0.85rem 1.15rem !important;
    transition: var(--transition) !important;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 0.2rem var(--accent-glow) !important;
    background: rgba(255, 255, 255, 0.06) !important;
}

.form-control::placeholder {
    color: var(--gray-500) !important;
}

.form-label {
    color: var(--gray-300);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}

.contact-info-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(15px);
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: rgba(255, 215, 0, 0.25);
}

.contact-info-card i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-info-card h5 {
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.contact-info-card p,
.contact-info-card a {
    color: var(--gray-400);
    margin: 0;
    font-size: 0.95rem;
}

.alert-success-custom {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
}

.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    height: 400px;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.8) invert(0.9) contrast(1.1);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--gray-900);
    padding: 80px 0 0;
    position: relative;
    border-top: 1px solid var(--glass-border);
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 200px;
    background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: var(--white);
    display: inline-block;
    margin-bottom: 0.75rem;
}

.footer-tagline {
    color: var(--accent);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.footer-desc {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.footer-heading {
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.newsletter-form .form-control {
    border-radius: 50px 0 0 50px !important;
    border-right: none !important;
}

.newsletter-form .btn-gold {
    border-radius: 0 50px 50px 0;
    padding: 0.85rem 1.5rem;
}

.footer-newsletter-text {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-contact p {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-contact i {
    color: var(--accent);
    width: 20px;
    margin-right: 0.5rem;
}

.footer-contact a {
    color: var(--gray-400);
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 60px;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.85rem;
    margin: 0;
}

.footer-credit {
    color: var(--gray-600) !important;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--neon-gradient);
    color: var(--primary);
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 5px 20px var(--accent-glow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

/* ============================================
   PRESS / AWARDS
   ============================================ */
.press-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    height: 100%;
}

.press-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
}

.press-logo {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.press-card h4 {
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.press-card p {
    color: var(--gray-400);
    font-size: 0.9rem;
}

.award-badge {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.award-badge:hover {
    border-color: var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
    transform: translateY(-5px);
}

.award-badge i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.award-badge h4 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.award-badge span {
    color: var(--gray-400);
    font-size: 0.85rem;
}

/* ============================================
   404 PAGE
   ============================================ */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.error-code {
    font-size: clamp(6rem, 20vw, 12rem);
    font-weight: 900;
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

/* ============================================
   IMAGE PLACEHOLDERS
   ============================================ */
.img-placeholder {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 2rem;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
}

.img-placeholder .fa-music,
.img-placeholder .fa-image,
.img-placeholder .fa-play,
.img-placeholder .fa-user {
    position: relative;
    z-index: 1;
    color: rgba(255, 215, 0, 0.25);
}

/* ============================================
   UTILITIES
   ============================================ */
.text-gold { color: var(--accent) !important; }
.bg-glass {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

.lazy-img {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.lazy-img.loaded {
    opacity: 1;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .section { padding: 70px 0; }
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        padding: 1.5rem;
        border-radius: var(--radius);
        margin-top: 1rem;
        border: 1px solid var(--glass-border);
    }
    .btn-nav {
        margin-left: 0 !important;
        margin-top: 0.5rem;
        display: inline-block;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .section { padding: 50px 0; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; text-align: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
