/* ===================================
   massive M - Website Styles
   Black & Gold Theme
   =================================== */

/* CSS Variables */
:root {
    --black: #000000;
    --dark-bg: #0a0a0a;
    --card-bg: #111111;
    --card-bg-hover: #1a1a1a;
    --gold: #C4A962;
    --gold-light: #d4bc7a;
    --gold-dark: #a08942;
    --white: #ffffff;
    --gray: #888888;
    --gray-light: #aaaaaa;
    --gray-dark: #333333;
    
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --border-radius-sm: 8px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(196, 169, 98, 0.3);
}

.btn-gold:disabled {
    background: var(--gray-dark);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-full {
    width: 100%;
}

/* Section Labels */
.section-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-label.center {
    text-align: center;
}

/* Gold Text */
.gold {
    color: var(--gold);
}

/* ===================================
   NAVIGATION HEADER
   =================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.main-header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-logo-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -1px;
}

.nav-logo-m {
    width: 28px;
    height: 28px;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-light);
    transition: var(--transition);
}

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

.nav-cta {
    background: var(--gold);
    color: var(--black) !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--gold-light);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--black);
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-size: 64px;
    font-weight: 800;
    letter-spacing: -2px;
}

.logo-icon {
    width: 70px;
    height: 70px;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.microphone {
    margin-top: -30px;
    opacity: 0.9;
}

.tagline {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--gold);
    margin-top: 10px;
}

.subtitle {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 20px;
}

/* ===================================
   ARTIST SECTION
   =================================== */
.artist-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.artist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.artist-image img {
    width: 100%;
    border-radius: var(--border-radius);
    object-fit: cover;
}

.artist-name {
    font-size: 72px;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 16px;
}

.artist-tagline {
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 24px;
    font-weight: 500;
}

.artist-description {
    font-size: 14px;
    color: var(--gray-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.spotify-embed {
    margin: 24px 0;
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* ===================================
   FOUNDERS SECTION
   =================================== */
.founders-section {
    padding: 100px 0;
    background: var(--black);
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.founder-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.founder-card:hover {
    background: var(--card-bg-hover);
    transform: translateY(-5px);
}

.founder-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--gray-dark);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-avatar {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-dark) 0%, #222 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.founder-role {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.founder-description {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.7;
}

/* ===================================
   PROJECT SECTION
   =================================== */
.project-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.project-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.project-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 0;
}

.project-subtitle {
    font-size: 24px;
    color: var(--gray);
    margin-bottom: 20px;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--gray-light);
}

.project-description {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.project-image img {
    width: 100%;
    border-radius: var(--border-radius);
    object-fit: cover;
}

/* ===================================
   PARTNERS SECTION
   =================================== */
.partners-section {
    padding: 80px 0;
    background: var(--black);
    border-top: 1px solid var(--gray-dark);
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo:hover {
    opacity: 1;
}

.partner-text {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-size: 18px;
    color: var(--gray);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--border-radius);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--gray-light);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    font-family: var(--font-main);
    background: var(--black);
    border: 1px solid var(--gray-dark);
    border-radius: var(--border-radius-sm);
    color: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Form Messages */
.form-message {
    max-width: 600px;
    margin: 0 auto 30px;
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
}

.form-message p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
}

.form-message-success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid #22c55e;
    color: #22c55e;
}

.form-message-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid #ef4444;
    color: #ef4444;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    padding: 60px 0;
    background: var(--black);
    border-top: 1px solid var(--gray-dark);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.logo-text-small {
    font-size: 28px;
    font-weight: 800;
}

.logo-m {
    width: 36px;
    height: 36px;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
}

.footer-tagline {
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 30px;
}

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

.footer-links a {
    font-size: 14px;
    color: var(--gray);
}

.footer-links a:hover {
    color: var(--white);
}

.copyright {
    font-size: 13px;
    color: var(--gray);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .artist-grid,
    .project-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .project-grid {
        direction: ltr;
    }
    
    .artist-name {
        font-size: 56px;
    }
    
    .founders-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 42px;
    }
    
    .logo-icon {
        width: 50px;
        height: 50px;
    }
    
    .tagline {
        font-size: 14px;
        letter-spacing: 2px;
    }
    
    .artist-name {
        font-size: 42px;
    }
    
    .section-title,
    .contact-title,
    .project-title {
        font-size: 36px;
    }
    
    .founders-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-card {
        padding: 30px 24px;
    }
    
    .partners-grid {
        gap: 30px;
    }
    
    .contact-form {
        padding: 30px 24px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .project-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Mobile Navigation */
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--card-bg);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        padding: 40px;
        transition: right 0.3s ease;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 18px;
    }
    
    .nav-cta {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .logo-text {
        font-size: 32px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 13px;
    }
    
    .artist-name {
        font-size: 32px;
    }
    
    .section-title,
    .contact-title,
    .project-title {
        font-size: 28px;
    }
}

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

.hero-content {
    animation: fadeInUp 1s ease-out;
}

