/*
Theme Name: Fahim Islam Artist Theme
Theme URI: http://fahimislam.com
Author: Antigravity
Author URI: http://fahimislam.com
Description: A premium, dark cyberpunk theme for music artists. Features AOS animations, video lightbox, and glassmorphism UI.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: dark, musician, portfolio, video, responsive
Text Domain: fahimislam
*/

/* 
   The main styles are expected to be in a separate file or enqueued. 
   However, WordPress requires this style.css header.
   We will copy the contents of our style.css into the assets/css/main.css or similar, 
   but for simplicity in this specific user request, we can just put the CSS here.
*/

/* Copied from style.css */
:root {
    --bg-color: #050505;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-cyan: #00f2ff;
    --accent-pink: #ff0055;
    --accent-purple: #bd00ff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --font-main: 'Rajdhani', sans-serif;
    --font-display: 'Syncopate', sans-serif;
    --font-tech: 'Orbitron', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    font-family: var(--font-main);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
    /* WP Admin Bar Fix */
}

body.admin-bar .glass-nav {
    top: 32px;
}

a,
button {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    background: none;
}

ul {
    list-style: none;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background: #000;
    border: 1px solid var(--accent-cyan);
    box-shadow: 0 0 50px rgba(0, 242, 255, 0.2);
    border-radius: 10px;
}

.close-lightbox {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 2rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: 0.3s;
}

.close-lightbox:hover {
    color: var(--accent-pink);
    transform: rotate(90deg);
}

.lightbox-video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 9px;
}

.lightbox-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at center, #0f0f15 0%, #000000 100%);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 10s infinite alternate;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-purple);
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-cyan);
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-pink);
    top: 40%;
    left: 40%;
    animation: float 15s infinite alternate-reverse;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 50px);
    }
}

/* Cursor */
.cursor {
    width: 10px;
    height: 10px;
    border: 1px solid var(--text-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s;
    background: var(--text-primary);
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.15s, width 0.3s, height 0.3s;
    mix-blend-mode: difference;
}

.cursor-hover .cursor {
    transform: scale(0);
}

.cursor-hover .cursor-follower {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-cyan);
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.glass-nav.scrolled {
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.glitch-hover:hover {
    color: var(--accent-cyan);
    text-shadow: 2px 0 var(--accent-pink), -2px 0 var(--accent-purple);
}

.btn-glow {
    padding: 10px 25px;
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan);
    transition: 0.3s;
    font-family: var(--font-tech);
    background: transparent;
    cursor: pointer;
}

.btn-glow:hover {
    background: var(--accent-cyan);
    color: #000;
    box-shadow: 0 0 25px var(--accent-cyan);
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.line {
    width: 30px;
    height: 2px;
    background: var(--text-primary);
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: 0.5s ease-in-out;
}

.mobile-menu-overlay.active {
    transform: translateY(0);
}

.mobile-menu-overlay ul li {
    margin: 20px 0;
    text-align: center;
}

.mobile-menu-overlay a {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--text-primary);
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    color: var(--accent-pink);
    cursor: pointer;
}

/* Hero */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.hero-content h2 {
    font-family: var(--font-tech);
    color: var(--accent-cyan);
    font-size: 1.2rem;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.mega-title {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 0.9;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.outline-text {
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
    color: transparent;
    transition: 0.5s;
}

.mega-title:hover .outline-text {
    color: var(--accent-pink);
    -webkit-text-stroke: 0px transparent;
    text-shadow: 0 0 20px var(--accent-pink);
}

.hero-tagline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-family: var(--font-tech);
    letter-spacing: 2px;
    border-left: 3px solid var(--accent-purple);
    padding-left: 20px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.btn-cyber {
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink));
    color: #fff;
    padding: 15px 40px;
    font-family: var(--font-tech);
    font-weight: 700;
    text-transform: uppercase;
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn-cyber:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(189, 0, 255, 0.5);
}

.btn-play {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-tech);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 30px;
    transition: 0.3s;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.3);
}

.btn-play:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    background: rgba(0, 242, 255, 0.05);
}

.vinyl-record {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(#111 60%, #000 65%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: spin 18s linear infinite;
    position: relative;
    overflow: hidden;
}

.vinyl-cover {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
}

.vinyl-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
}

.mouse {
    width: 20px;
    height: 35px;
    border: 2px solid var(--text-primary);
    border-radius: 12px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--text-primary);
    border-radius: 50%;
    animation: scrollMouse 1.5s infinite;
}

@keyframes scrollMouse {
    0% {
        top: 5px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

/* Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 120px 0;
}

.section-title-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.section-title-wrapper.right {
    justify-content: flex-end;
    flex-direction: row-reverse;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    text-transform: uppercase;
}

.glass-card {
    background: rgba(20, 20, 25, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: 0.4s;
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.featured-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 0;
}

.featured-video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.featured-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.featured-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-info h3 {
    font-family: var(--font-tech);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.stat-row {
    display: flex;
    gap: 40px;
    margin: 30px 0;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat .number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-cyan);
    font-family: var(--font-display);
}

.stat .label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
}

.link-arrow {
    color: var(--accent-pink);
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.link-arrow:hover {
    gap: 15px;
}

.track-scroller {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.hidden-track {
    display: none;
}

.track-card {
    padding: 15px;
}

.card-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

.card-image img {
    width: 100%;
    transition: 0.5s;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
}

.track-card:hover .overlay {
    opacity: 1;
}

.track-card:hover img {
    transform: scale(1.1);
}

.track-card .play-btn {
    width: 50px;
    height: 50px;
    background: var(--accent-cyan);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-size: 1.2rem;
    box-shadow: 0 0 20px var(--accent-cyan);
    cursor: pointer;
    border: none;
    outline: none;
}

.card-details h4 {
    font-family: var(--font-tech);
    margin-bottom: 5px;
}

.card-details p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.center-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-outline-glow {
    padding: 12px 30px;
    border: 1px solid var(--accent-pink);
    color: var(--accent-pink);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-tech);
    background: transparent;
    cursor: pointer;
}

.btn-outline-glow:hover {
    background: var(--accent-pink);
    color: #fff;
    box-shadow: 0 0 30px var(--accent-pink);
}

.bio-section {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.bio-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20vw;
    font-family: var(--font-display);
    color: rgba(255, 255, 255, 0.02);
    font-weight: 700;
    z-index: -1;
    pointer-events: none;
}

.bio-content {
    max-width: 800px;
}

.highlight-glitch {
    color: var(--accent-purple);
    font-size: 3.5rem;
    display: block;
    margin-bottom: 20px;
    font-family: var(--font-display);
}

.bio-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-box {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--text-secondary);
    border-radius: 12px;
    transition: 0.3s;
}

.social-box:hover {
    transform: translateY(-5px);
    background: var(--glass-bg);
}

.fb:hover {
    color: #1877f2;
    border-color: #1877f2;
}

.ins:hover {
    color: #e1306c;
    border-color: #e1306c;
}

.yt:hover {
    color: #ff0000;
    border-color: #ff0000;
}

.sp:hover {
    color: #1db954;
    border-color: #1db954;
}

.footer {
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 20px;
    background: #000;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-brand h2 {
    font-family: var(--font-display);
    font-size: 2rem;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .mega-title {
        font-size: 3rem;
    }

    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
        justify-content: center;
    }

    .hero-visual {
        margin-bottom: 40px;
    }

    .vinyl-record {
        width: 300px;
        height: 300px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-tagline {
        border: none;
        padding: 0;
    }

    .featured-wrapper {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .cursor,
    .cursor-follower {
        display: none;
    }

    .lightbox-content {
        width: 95%;
    }
}