/* =============================================
   christopher ANTON - Synthpop Artist Theme
   ============================================= */

:root {
    --primary-color: #eb2424;
    --secondary-color: #ff4444;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: #121216;
    --bg-card-hover: #1a1a1e;
    --text-light: #e9edf1;
    --text-gray: #888;
    --text-muted: #555;
    --accent-gradient: linear-gradient(135deg, #eb2424 0%, #ff6b6b 100%);
    --border-color: #222;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--bg-dark);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =============================================
   Header & Navigation
   ============================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-gray);
    letter-spacing: 3px;
    text-transform: lowercase;
}

.logo-accent {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 5px;
    list-style: none;
}

.nav-menu li a {
    display: block;
    padding: 8px 15px;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--text-light);
    background: var(--primary-color);
}

.nav-social {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 3px;
    color: var(--text-gray);
    font-size: 11px;
    font-weight: 600;
}

.social-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
}

/* =============================================
   Hero Section
   ============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(235, 36, 36, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(235, 36, 36, 0.05) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, var(--bg-dark) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero-tagline {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    color: var(--primary-color);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.2;
    margin-bottom: 10px;
}

.hero-title span {
    display: block;
    font-size: 72px;
    font-weight: 700;
    color: var(--text-light);
    text-shadow: 0 0 40px rgba(235, 36, 36, 0.3);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.hero-description {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-description strong {
    color: var(--primary-color);
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 3px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background: var(--secondary-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(235, 36, 36, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--text-gray);
    color: var(--text-gray);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Hero Album Feature */
.hero-album-feature {
    position: absolute;
    right: 10%;
    bottom: 15%;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1;
}

.album-art {
    width: 150px;
    height: 150px;
}

.album-placeholder {
    width: 100%;
    height: 100%;
    animation: spin 20s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.album-info {
    text-align: left;
}

.album-label {
    font-size: 11px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.album-info .album-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin: 5px 0;
}

.album-info .album-year {
    font-size: 13px;
    color: var(--text-muted);
}

/* =============================================
   Section Styles
   ============================================= */
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title span {
    color: var(--primary-color);
}

.section-title.center {
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 50px;
}

/* =============================================
   Bio Section
   ============================================= */
.bio-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

.bio-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.bio-image .image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bio-image .image-placeholder svg {
    width: 100%;
    height: 100%;
}

.bio-paragraphs p {
    margin-bottom: 20px;
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
}

.bio-paragraphs strong {
    color: var(--text-light);
}

.bio-paragraphs em {
    color: var(--primary-color);
    font-style: normal;
}

.bio-highlights {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.highlight {
    text-align: center;
}

.highlight-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.highlight-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =============================================
   Music Section
   ============================================= */
.music-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.track-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 20px;
    transition: all 0.3s ease;
}

.track-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary-color);
}

.track-art {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 3px;
    overflow: hidden;
}

.track-info {
    flex: 1;
}

.track-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.track-album {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 3px;
}

.track-desc {
    font-size: 12px;
    color: var(--text-muted);
}

.track-play {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50%;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.track-play svg {
    width: 16px;
    height: 16px;
    margin-left: 3px;
}

.track-play:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(235, 36, 36, 0.5);
    color: var(--text-light);
}

.music-cta {
    text-align: center;
}

/* =============================================
   Discography Section
   ============================================= */
.discography-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

.discography-category {
    margin-bottom: 60px;
}

.category-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.album-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.album-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.album-cover {
    aspect-ratio: 1;
    overflow: hidden;
}

.cover-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
}

.cover-placeholder.destination-x {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #eb2424;
}

.cover-placeholder.fade-grey {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    color: #888;
}

.cover-placeholder.tragedy {
    background: linear-gradient(135deg, #2c003e 0%, #1a0026 100%);
    color: #9b59b6;
}

.cover-placeholder.silence {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: #444;
}

.cover-placeholder.synthesizer {
    background: linear-gradient(135deg, #0a3d62 0%, #051c2c 100%);
    color: #00d4ff;
}

.cover-placeholder.oscillator {
    background: linear-gradient(135deg, #1e5128 0%, #0a2e12 100%);
    color: #2ecc71;
}

.cover-placeholder.fragments {
    background: linear-gradient(135deg, #4a0e0e 0%, #2a0808 100%);
    color: #e74c3c;
}

.cover-placeholder.pseudo-st {
    background: linear-gradient(135deg, #2c2c54 0%, #1a1a36 100%);
    color: #7158e2;
}

.album-details {
    padding: 15px;
}

.album-details h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.album-type {
    font-size: 12px;
    color: var(--primary-color);
    margin-bottom: 3px;
}

.album-details .album-year {
    font-size: 12px;
    color: var(--text-muted);
}

/* =============================================
   News Section
   ============================================= */
.news-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.news-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.news-card.featured {
    border-color: var(--primary-color);
}

.news-date {
    background: var(--bg-darker);
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.news-date .day {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.news-date .month {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.news-date .year {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
}

.news-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.news-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    flex: 1;
}

.news-link {
    display: inline-block;
    margin-top: 15px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =============================================
   Contact Section
   ============================================= */
.contact-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-intro {
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 30px;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.contact-method h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-method p {
    font-size: 16px;
    color: var(--primary-color);
}

.social-links h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-btn {
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 3px;
    font-size: 13px;
    color: var(--text-gray);
}

.social-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
}

/* Contact Form */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 3px;
    color: var(--text-light);
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* =============================================
   Footer
   ============================================= */
.site-footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.footer-brand .logo-name,
.footer-brand .logo-accent {
    display: block;
}

.footer-brand .logo-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.footer-brand .logo-accent {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-light);
}

.footer-tagline {
    font-size: 12px;
    color: var(--primary-color);
    margin-top: 5px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-gray);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-social a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

/* =============================================
   Responsive Design
   ============================================= */
@media (max-width: 1024px) {
    .hero-album-feature {
        display: none;
    }

    .bio-content {
        grid-template-columns: 1fr;
    }

    .bio-image {
        max-width: 250px;
        margin: 0 auto;
    }

    .albums-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-title span {
        font-size: 48px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .tracks-grid {
        grid-template-columns: 1fr;
    }

    .albums-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title span {
        font-size: 36px;
    }

    .section-title {
        font-size: 24px;
    }

    .bio-highlights {
        flex-direction: column;
        gap: 20px;
    }

    .albums-grid {
        grid-template-columns: 1fr;
    }
}
