/* ==========================================================================
   VELVET "SUGAR" JACKSON OFFICIAL WEBSITE STYLESHEET
   Aesthetics: Deep Dark, Warm Gold, Crimson Glow, Glassmorphism
   ========================================================================== */

/* Variables & Design Tokens */
:root {
    --bg-main: #0c080a;
    --bg-card: rgba(25, 16, 20, 0.65);
    --gold: #dfb249;
    --gold-hover: #f1c96d;
    --accent-red: #8b1e2e;
    --accent-red-glow: rgba(139, 30, 46, 0.4);
    --text-primary: #f5f2f3;
    --text-secondary: #b4a8ab;
    --border-glass: rgba(223, 178, 73, 0.12);
    --glass-background: rgba(20, 12, 15, 0.7);
    --blur: blur(16px);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, .logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-red);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Background Glow Effects */
.glow {
    position: fixed;
    width: 60vw;
    height: 60vh;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.3;
}
.glow-1 {
    background: var(--accent-red);
    top: -20vh;
    left: -20vw;
}
.glow-2 {
    background: #48131e;
    bottom: -20vh;
    right: -20vw;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    border: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold), #be9329);
    color: #12090b;
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-hover), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(223, 178, 73, 0.3);
}
.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
    backdrop-filter: var(--blur);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gold);
    transform: translateY(-2px);
}
.btn-copy {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    background: rgba(223, 178, 73, 0.1);
    color: var(--gold);
    border: 1px solid rgba(223, 178, 73, 0.3);
    border-radius: 4px;
}
.btn-copy:hover {
    background: var(--gold);
    color: #12090b;
}
.btn-block {
    width: 100%;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 8%;
    background: rgba(12, 8, 10, 0.8);
    backdrop-filter: var(--blur);
    border-bottom: 1px solid var(--border-glass);
    position: sticky;
    top: 0;
    z-index: 100;
}
.logo {
    font-size: 1.8rem;
    color: var(--text-primary);
    letter-spacing: 1px;
}
.logo span {
    color: var(--gold);
    font-style: italic;
    font-weight: 500;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}
.nav-links a:hover {
    color: var(--gold);
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(to right, rgba(12, 8, 10, 0.95) 25%, rgba(12, 8, 10, 0.4) 60%, rgba(12, 8, 10, 0.9) 100%), 
                url('assets/stage.jpg') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 8rem 8% 6rem 8%;
}
.hero-content {
    max-width: 650px;
}
.diva-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(139, 30, 46, 0.2);
    border: 1px solid var(--accent-red);
    color: #ff4d64;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}
.hero-section h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #ffffff, #d3c4c7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}
.hero-actions {
    display: flex;
    gap: 1.5rem;
}
.stream-row {
    margin-top: 4.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.stream-row span {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 500;
}
.stream-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
.stream-icons a {
    color: var(--text-secondary);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.stream-icons a:hover {
    color: var(--gold);
    transform: scale(1.15);
}
.stream-icons svg {
    width: 20px;
    height: 20px;
}
.stream-icons i {
    font-size: 1.3rem;
}

/* Glassmorphic Music Player */
.music-player-container {
    width: 100%;
}
.player-card {
    background: var(--bg-card);
    backdrop-filter: var(--blur);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 1.8rem;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}
.player-card:hover {
    border-color: rgba(223, 178, 73, 0.3);
    box-shadow: 0 25px 50px rgba(139, 30, 46, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.cover-art {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}
.cover-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.player-card:hover .cover-art img {
    transform: scale(1.05);
}
.track-info {
    text-align: center;
    margin-bottom: 1.5rem;
}
.track-info h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}
.track-info p {
    font-size: 0.9rem;
    color: var(--gold);
}
.player-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}
.progress-bar-container {
    flex-grow: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}
.progress-bar {
    width: 0%;
    height: 100%;
    background: var(--gold);
    border-radius: 3px;
    position: relative;
    transition: width 0.1s linear;
}
.player-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.control-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}
.control-btn:hover {
    color: var(--gold);
    transform: scale(1.1);
}
.play-pause-btn {
    background: var(--gold);
    border: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #12090b;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(223, 178, 73, 0.3);
    transition: var(--transition);
}
.play-pause-btn:hover {
    background: var(--gold-hover);
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(223, 178, 73, 0.4);
}

/* Sections General Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}
.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Lyrics Section */
.lyrics-section {
    padding: 6rem 8%;
    background: rgba(12, 8, 10, 0.4);
    border-top: 1px solid var(--border-glass);
}
.search-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.search-bar input {
    width: 100%;
    max-width: 600px;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 30px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}
.search-bar input:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(223, 178, 73, 0.1);
}
.filter-buttons {
    display: flex;
    gap: 1rem;
}
.filter-btn {
    background: transparent;
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.85rem;
    transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--gold);
    color: #12090b;
    border-color: var(--gold);
}

/* Lyrics Grid */
.lyrics-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 2.5rem;
    height: 750px;
}
.tracklist-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}
.tracklist-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    overflow-y: auto;
    backdrop-filter: var(--blur);
    flex-grow: 1;
}
.track-list {
    list-style: none;
}
.track-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid rgba(223, 178, 73, 0.05);
    cursor: pointer;
    transition: var(--transition);
}
.track-item:hover {
    background: rgba(223, 178, 73, 0.05);
}
.track-item.active {
    background: rgba(223, 178, 73, 0.1);
    border-left: 4px solid var(--gold);
}
.track-number {
    font-size: 0.85rem;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-right: 1rem;
}
.track-name {
    flex-grow: 1;
    font-weight: 500;
    font-size: 0.95rem;
}
.track-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

/* Lyrics Detail Display Card */
.lyrics-display-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2.5rem;
    overflow-y: auto;
    backdrop-filter: var(--blur);
    position: relative;
}
.placeholder-msg {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-secondary);
    gap: 1rem;
}
.lyrics-detail.hidden, .placeholder-msg.hidden {
    display: none !important;
}
.disc-indicator {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    font-size: 0.75rem;
    background: var(--accent-red);
    color: white;
    border-radius: 4px;
    margin-bottom: 1rem;
}
.detail-header h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}
.lyrics-author {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}
.lyrics-author span {
    color: var(--gold);
    font-style: italic;
}

/* Prompt Box */
.prompt-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(223, 178, 73, 0.15);
    border-radius: 8px;
    padding: 1.2rem;
    margin-bottom: 2rem;
}
.prompt-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
}
.prompt-box code {
    font-family: monospace;
    color: var(--gold-hover);
    font-size: 0.95rem;
    word-break: break-all;
}
.lyrics-body-container pre {
    font-family: inherit;
    font-size: 1.05rem;
    color: var(--text-primary);
    white-space: pre-wrap;
    padding: 2rem 1.5rem;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    max-height: 450px;
    overflow-y: auto;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
}
.lyric-line {
    padding: 0.3rem 0;
    color: rgba(245, 242, 243, 0.45);
    font-size: 1.15rem;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-origin: left center;
}
.lyric-line.lyric-header {
    color: rgba(223, 178, 73, 0.4);
    font-weight: 600;
    margin-top: 1.2rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.lyric-line.active-line {
    color: var(--gold);
    font-size: 1.35rem;
    font-weight: 500;
    text-shadow: 0 0 15px rgba(223, 178, 73, 0.5);
    transform: scale(1.01);
}

/* Tour Section */
.tour-section {
    padding: 6rem 8%;
    border-top: 1px solid var(--border-glass);
}
.tour-table-container {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: var(--blur);
    max-width: 1000px;
    margin: 0 auto;
}
.tour-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
.tour-table th, .tour-table td {
    padding: 1.5rem 2rem;
}
.tour-table th {
    background: rgba(223, 178, 73, 0.05);
    color: var(--gold);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.tour-table tr {
    border-bottom: 1px solid rgba(223, 178, 73, 0.05);
    transition: var(--transition);
}
.tour-table tr:hover {
    background: rgba(223, 178, 73, 0.02);
}
.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    border-radius: 12px;
    font-weight: 500;
}
.badge-soldout {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}
.badge-tickets {
    background: rgba(223, 178, 73, 0.1);
    color: var(--gold-hover);
    border: 1px solid var(--gold);
}

/* Booking Section */
.booking-section {
    padding: 6rem 8%;
    border-top: 1px solid var(--border-glass);
    background: rgba(12, 8, 10, 0.4);
}
.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}
.booking-info h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}
.booking-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
.contact-item .icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(139, 30, 46, 0.15);
    border: 1px solid var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}
.contact-item p {
    margin: 0;
    font-size: 0.95rem;
}
.booking-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: var(--blur);
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem 1.2rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--gold);
}

/* Toast */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--gold);
    color: #12090b;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.toast.hidden {
    opacity: 0;
    transform: translateY(100px);
    pointer-events: none;
}

/* Footer */
footer {
    background: #070506;
    border-top: 1px solid rgba(223, 178, 73, 0.05);
    padding: 3rem 8%;
    text-align: center;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.footer-content p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Biography Section */
.bio-section {
    padding: 6rem 8%;
    border-top: 1px solid var(--border-glass);
}
.bio-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}
.bio-image {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: rotate(-1.5deg);
    transition: var(--transition);
}
.bio-image:hover {
    transform: rotate(0deg) scale(1.02);
    border-color: rgba(223, 178, 73, 0.3);
}
.bio-image img {
    width: 100%;
    border-radius: 12px;
    display: block;
    object-fit: cover;
}
.bio-content h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}
.bio-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}
.bio-content blockquote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--gold);
    border-left: 3px solid var(--gold);
    padding-left: 1.5rem;
    margin: 2rem 0;
    line-height: 1.5;
}

/* Responsive Layouts */
@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 4rem;
        gap: 3rem;
    }
    .hero-content {
        margin: 0 auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .bio-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .bio-image {
        max-width: 450px;
        margin: 0 auto;
        transform: none !important;
    }
    .bio-content blockquote {
        border-left: none;
        border-top: 1px solid var(--border-glass);
        border-bottom: 1px solid var(--border-glass);
        padding: 1.5rem 0;
    }
    .lyrics-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    .tracklist-panel {
        max-height: 250px;
    }
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 5%;
        flex-direction: column;
        gap: 1rem;
    }
    .nav-links {
        gap: 1.5rem;
    }
    .hero-section h1 {
        font-size: 3rem;
    }
    .section-header h2 {
        font-size: 2.2rem;
    }
}
