:root {
    --bg-color: #050505;
    --text-color: #f0f0f0;
    --accent-color: #d4af37;
    /* Elegant Gold */
    --accent-hover: #f1c40f;
    --secondary-bg: #111111;
    --glass-bg: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography elements */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
    color: #cccccc;
    font-size: 1.05rem;
}

/* Layout Utilities */
.section-padding {
    padding: 100px 20px;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-heading {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--accent-color);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: transparent;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: 2px;
    transition: var(--transition);
}

.logo:hover {
    color: var(--accent-color);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--accent-color);
}

.nav-links li a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Subtle animation or image */
    background-image: url('https://images.unsplash.com/photo-1510915361894-db8b60106cb1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.7) 0%, rgba(5, 5, 5, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.hero-profile-container {
    margin-bottom: 30px;
}

.hero-profile-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #bbb;
    margin-bottom: 40px;
}

.release-badge {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 40px;
    animation: glow-pulse 3s infinite;
}

@keyframes glow-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    50% {
        box-shadow: 0 0 15px 5px rgba(212, 175, 55, 0.1);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.cta-btn {
    display: inline-block;
    background: var(--accent-color);
    color: #000;
    padding: 15px 40px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.cta-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Digital Platforms */
.music-section {
    background-color: var(--secondary-bg);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.platform-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.platform-card:hover {
    transform: translateY(-10px);
    background: rgba(30, 30, 30, 0.8);
    border-color: var(--accent-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ddd;
    transition: var(--transition);
}

.platform-card.spotify:hover .platform-icon {
    color: #1DB954;
}

.platform-card.apple:hover .platform-icon {
    color: #FA243C;
}

.platform-card.youtube:hover .platform-icon {
    color: #FF0000;
}

.platform-text h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.platform-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #999;
}


/* Biography */
.bio-section {
    background-color: var(--bg-color);
}

.bio-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    text-align: justify;
}

.bio-content p {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.bio-content strong {
    color: var(--accent-color);
    font-weight: 600;
}


/* Resume / Timeline */
.cv-section {
    background-color: var(--secondary-bg);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto 60px;
    padding-left: 20px;
    /* For mobile default */
}

/* The vertical line */
.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    /* Mobile left alignment */
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--glass-border);
}

.timeline-item {
    position: relative;
    padding-left: 40px;
    padding-bottom: 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -6px;
    /* Center dot on the line */
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
}

.timeline-date {
    display: inline-block;
    padding: 5px 15px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.theatre-music {
    max-width: 800px;
    margin: 0 auto;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 12px;
}

.theatre-music h3 {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 25px;
    text-align: center;
}

.theatre-list {
    list-style: none;
}

.theatre-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
    color: #ccc;
}

.theatre-list li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--accent-color);
    font-size: 0.8rem;
}


/* Footer / Contact */
.footer-section {
    background-color: #020202;
    padding: 80px 20px 40px;
    text-align: center;
    border-top: 1px solid #1a1a1a;
}

.footer-heading {
    font-size: 2rem;
    margin-bottom: 30px;
}

.email-link {
    display: inline-block;
    font-size: 1.2rem;
    color: var(--accent-color);
    text-decoration: none;
    margin-bottom: 40px;
    transition: var(--transition);
}

.email-link i {
    margin-right: 10px;
}

.email-link:hover {
    color: var(--text-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--glass-bg);
    color: var(--text-color);
    font-size: 1.5rem;
    text-decoration: none;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--accent-color);
    color: #000;
    transform: translateY(-5px);
}

.copyright {
    color: #555;
    font-size: 0.9rem;
}

/* Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}


/* Responsive Design */
@media screen and (min-width: 768px) {

    /* Timeline Desktop Layout */
    .timeline {
        padding-left: 0;
    }

    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-item {
        width: 50%;
        padding-bottom: 50px;
    }

    .timeline-item:nth-child(odd) {
        float: left;
        padding-left: 0;
        padding-right: 50px;
        text-align: right;
        clear: both;
    }

    .timeline-item:nth-child(even) {
        float: right;
        padding-left: 50px;
        clear: both;
    }

    .timeline-item:nth-child(odd) .timeline-dot {
        left: auto;
        right: -7px;
    }

    .timeline-item:nth-child(even) .timeline-dot {
        left: -7px;
    }

    .theatre-music {
        clear: both;
        margin-top: 50px;
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: -100%;
        top: 70px;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding: 40px 0;
        transition: 0.3s;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-padding {
        padding: 60px 20px;
    }
}