/*
Theme Name: Music Artist Theme
Theme URI: https://example.com
Description: Modern one-page theme for music artists with multilingual support
Version: 1.0
Author: Your Name
Author URI: https://example.com
Text Domain: music-artist-theme
Domain Path: /languages
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #7c3aed;
    --secondary-color: #a78bfa;
    --dark-bg: #0a0a0a;
    --light-text: #ffffff;
    --gray-text: #b3b3b3;
    --accent-gradient: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 4rem;
    color: var(--light-text);
}

h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

p {
    margin-bottom: 1rem;
    color: var(--gray-text);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* === HEADER === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-text);
}

.language-switcher {
    display: flex;
    gap: 1rem;
}

.lang-link {
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.lang-link:hover,
.lang-link.active {
    background: var(--accent-gradient);
    color: white;
    -webkit-text-fill-color: white;
}

/* === HERO SECTION === */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.3), rgba(10, 10, 10, 0.8));
    z-index: 0;
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(124, 58, 237, 0.5))
            drop-shadow(0 0 40px rgba(167, 139, 250, 0.3))
            drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    animation: heroGlow 3s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% {
        filter: drop-shadow(0 0 20px rgba(124, 58, 237, 0.5))
                drop-shadow(0 0 40px rgba(167, 139, 250, 0.3))
                drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 30px rgba(124, 58, 237, 0.8))
                drop-shadow(0 0 60px rgba(167, 139, 250, 0.5))
                drop-shadow(0 5px 20px rgba(0, 0, 0, 0.4));
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
}

.hero-social-bar {
    position: absolute;
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.hero-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    min-width: 60px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.hero-social-icon:hover {
    transform: translateY(-2.5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.2);
}

.hero-social-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--light-text);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 30px;
    height: 30px;
    fill: var(--light-text);
    opacity: 0.7;
}

/* === SECTIONS === */
.section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: var(--accent-gradient);
    margin: 1rem auto;
}

/* === BIO SECTION === */
.bio-section {
    background: rgba(255, 255, 255, 0.02);
}

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

.bio-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 2rem;
    display: block;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.3);
}

/* === CONTACT SECTION === */
.contact-section {
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2rem;
    min-width: 280px;
    max-width: 350px;
    flex: 1;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: 50%;
}

.contact-icon svg {
    fill: var(--light-text);
}

.contact-label {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-text);
    margin: 0;
}

.contact-value {
    font-size: 1.2rem;
    color: var(--light-text);
    word-break: break-all;
    transition: all 0.3s ease;
}

a.contact-value:hover {
    color: var(--primary-color);
    transform: scale(1.05);
}

/* === GALLERY === */
.gallery-section {
    background: rgba(255, 255, 255, 0.02);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-thumbnail {
    filter: brightness(1.1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: fadeInScale 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.2);
    color: var(--primary-color);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* === DOWNLOADS === */
.downloads-section {
    text-align: center;
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.download-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.download-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
}

.download-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.download-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.download-title {
    font-size: 1.3rem;
    color: var(--light-text);
    margin: 0;
}

.download-description {
    color: var(--gray-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.download-size {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: var(--accent-gradient);
    border-radius: 5px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
    color: white;
}

/* === SOCIAL MEDIA === */
.social-section {
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    min-width: 120px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-link:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.2);
}

.social-icon {
    width: 40px;
    height: 40px;
    fill: var(--light-text);
}

.social-label {
    font-size: 0.9rem;
    color: var(--gray-text);
}

/* === PRESS & MEDIA === */
.press-section {
    background: rgba(255, 255, 255, 0.02);
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.press-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.press-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.2);
}

.press-logo {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 5px;
    padding: 1rem;
}

.press-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.press-card:hover .press-image {
    filter: grayscale(0%);
}

.press-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.press-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.press-source {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.press-quote {
    font-style: italic;
    color: var(--gray-text);
    border-left: 3px solid var(--primary-color);
    padding-left: 1rem;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.press-excerpt {
    color: var(--gray-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.press-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--accent-gradient);
    border-radius: 5px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.press-link:hover {
    transform: translateX(5px);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 0, 110, 0.3);
}

/* === MUSIC RELEASES === */
.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.release-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.release-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.3);
}

.release-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.release-info {
    padding: 1.5rem;
}

.release-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.release-date {
    font-size: 0.9rem;
    color: var(--gray-text);
    margin-bottom: 1rem;
}

.release-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.release-link {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0px;
    font-size: 0.9rem;
    color: var(--light-text);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-align: center;
}

.release-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    color: white;
}

/* === FOOTER === */
.site-footer {
    text-align: center;
    padding: 3rem 5%;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-text {
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-social-bar {
        gap: 1rem;
        bottom: 5rem;
    }

    .hero-social-icon {
        width: 35px;
        height: 35px;
    }

    .hero-social-icon svg {
        width: 18px;
        height: 18px;
    }

    .section {
        padding: 4rem 5%;
    }

    .releases-grid {
        grid-template-columns: 1fr;
    }

    .social-links {
        gap: 1rem;
    }

    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .releases-grid {
        gap: 1rem;
    }
}
