/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Momo+Trust+Display&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #5682B1;
    --secondary-color: #739EC9;
    --accent-color: #FFE8DB;
    --text-color: #ffffff;
    --text-light: #b8c5d6;
    --bg-color: #0a0a0a;
    --bg-dark: #000000;
    --bg-card: #1a1a1a;
    --border-color: #2a2a2a;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.7);
}

body {
    font-family: 'Momo Trust Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: var(--bg-dark);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-color);
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-brand a:hover {
    opacity: 0.8;
}

.logo {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(86, 130, 177, 0.5));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: url('../images/space-back.png') center/cover no-repeat;
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-greeting {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.highlight {
    color: var(--accent-color);
}

.hero-description {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--bg-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background-color: #fff5ed;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--bg-dark);
}

/* About Section */
.about {
    padding: 4rem 0;
    background-color: var(--bg-color);
}

.about-photo-wrapper {
    text-align: center;
    margin-bottom: 2rem;
}

.about-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(86, 130, 177, 0.6), 
                0 0 60px rgba(115, 158, 201, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.about-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(86, 130, 177, 0.8), 
                0 0 80px rgba(115, 158, 201, 0.6);
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-color);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-text h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.skills-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    list-style: none;
}

.skills-list li {
    background-color: var(--bg-card);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    font-weight: 500;
    text-align: center;
    border: 1px solid var(--border-color);
}

/* Page Header with Scrolling Background */
.page-header {
    position: relative;
    color: white;
    padding: 4rem 0;
    text-align: center;
    min-height: 300px;
    overflow: hidden;
}

.page-header .container {
    position: relative;
    z-index: 3;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Projects Section */
.projects {
    padding: 4rem 0;
    background-color: var(--bg-color);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.project-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 2rem;
}

.project-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.project-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tech-tag {
    background-color: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.project-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

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

/* Artist Page with Scrolling Background */
.artist-header {
    position: relative;
    padding: 4rem 0;
    text-align: center;
    min-height: 400px;
    overflow: hidden;
}

.scrolling-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.scroll-track {
    display: flex;
    position: absolute;
    height: 100%;
    animation: scroll 60s linear infinite;
    gap: 0;
}

.scroll-track img {
    height: 100%;
    width: auto;
    object-fit: cover;
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.artist-header .container {
    position: relative;
    z-index: 3;
}

.artist-intro {
    max-width: 800px;
    margin: 0 auto;
}

.artist-name {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-weight: bold;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.artist-intro .streaming-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.artist-intro .streaming-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
    font-weight: 500;
}

.artist-intro .streaming-btn:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(255, 232, 219, 0.3);
    background-color: rgba(0, 0, 0, 0.8);
}

.artist-intro .streaming-icon {
    width: 20px;
    height: 20px;
    color: white;
}

/* Latest Release */
.latest-release {
    padding: 4rem 0;
    background-color: var(--bg-color);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.embed-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.embed-card h3 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.release-meta {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.embed-card iframe {
    display: block;
    margin: 0 auto;
}

.platform-links-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.platform-link-small {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.platform-link-small:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}


/* Tracks Section */
.tracks-section {
    padding: 4rem 0;
    background-color: var(--bg-dark);
}

.tracks-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.track-card {
    background-color: var(--bg-card);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    width: 100%;
}

.track-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.track-title-section {
    text-align: center;
    margin-bottom: 1rem;
}

.track-card h4 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin: 0 0 0.5rem 0;
}

.track-meta {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

.track-card iframe {
    display: block;
    margin: 0 auto;
}

.spotify-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s;
    width: 100%;
    text-align: center;
}

.spotify-link:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Playlists Section */
.playlists-section {
    padding: 4rem 0;
    background-color: var(--bg-color);
}

/* Admin Landing Page */
.admin-landing {
    padding: 4rem 0;
    background-color: var(--bg-color);
    min-height: 80vh;
}

.admin-main-title {
    font-size: 3.5rem;
    text-align: center;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.admin-main-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 3rem;
}

.admin-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.admin-card {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.admin-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.admin-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.admin-card h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.admin-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.admin-arrow {
    color: var(--accent-color);
    font-size: 1.5rem;
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    transition: transform 0.3s;
}

.admin-card:hover .admin-arrow {
    transform: translateX(5px);
}

.quick-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.quick-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.quick-link:hover {
    color: var(--primary-color);
}

/* Admin Subpages */
.backdoor-page {
    padding: 4rem 0;
    background-color: var(--bg-color);
    min-height: 80vh;
}

.admin-breadcrumb {
    max-width: 900px;
    margin: 0 auto 1rem;
}

.admin-breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.admin-breadcrumb a:hover {
    color: var(--primary-color);
}

.backdoor-title {
    font-size: 3rem;
    text-align: center;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.backdoor-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.admin-instructions {
    max-width: 900px;
    margin: 0 auto 2rem;
    background-color: var(--bg-card);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.admin-instructions h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.admin-instructions ol {
    color: var(--text-light);
    padding-left: 1.5rem;
    line-height: 1.8;
}

.admin-instructions code {
    background-color: var(--bg-dark);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    color: var(--accent-color);
    font-family: 'Courier New', monospace;
}

.admin-form {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input[type="text"],
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input[type="text"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(86, 130, 177, 0.2);
}

.form-group small {
    display: block;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.track-group {
    background-color: var(--bg-dark);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
}

.track-group h3 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.project-group {
    background-color: var(--bg-dark);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
}

.project-group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.project-group-header h3 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin: 0;
}

.project-status {
    font-size: 0.875rem;
    color: var(--accent-color);
    font-weight: 500;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.form-actions .btn {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* Footer */
footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
}

footer .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

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

.social-icon {
    width: 24px;
    height: 24px;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-greeting {
        font-size: 1.25rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.25rem;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .nav-brand a {
        font-size: 1.25rem;
    }

    .logo {
        height: 32px;
    }

    .page-header {
        min-height: 250px;
        padding: 3rem 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    footer .container {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        gap: 1.5rem;
    }

    .social-links a {
        font-size: 0.9rem;
    }

    /* Artist Page Mobile */
    .artist-header {
        min-height: 350px;
        padding: 3rem 0;
    }

    .artist-name {
        font-size: 2.5rem;
    }

    .artist-intro .streaming-links {
        flex-direction: column;
        align-items: stretch;
        padding: 0 1rem;
    }

    .artist-intro .streaming-btn {
        justify-content: center;
    }

    /* Music Page Mobile */
    .embed-card {
        padding: 1rem;
    }

    .embed-card h3 {
        font-size: 1.5rem;
    }

    .tracks-grid {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .track-card {
        padding: 1rem;
    }

    .platform-links-row {
        flex-wrap: wrap;
    }

    .streaming-links {
        flex-direction: column;
        align-items: stretch;
        padding: 0 1rem;
    }

    .streaming-btn {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-photo {
        width: 150px;
        height: 150px;
    }

    /* Admin Mobile */
    .admin-main-title {
        font-size: 2.5rem;
    }

    .admin-cards {
        grid-template-columns: 1fr;
    }

    .quick-links {
        flex-direction: column;
        gap: 0.75rem;
    }

    .backdoor-title {
        font-size: 2rem;
    }

    .admin-form {
        padding: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-actions .btn {
        width: 100%;
    }
}

