/* McMaRT Dark Theme Styles */
:root {
    --mcmart-yellow: #f0a500;
    --mcmart-yellow-hover: #d69400;
    --mcmart-yellow-light: rgba(240, 165, 0, 0.1);
    --mcmart-yellow-medium: rgba(240, 165, 0, 0.3);
    --mcmart-yellow-strong: rgba(240, 165, 0, 0.7);
    --mcmart-black: #000000;
    --mcmart-black-light: rgba(0, 0, 0, 0.8);
    --mcmart-black-medium: rgba(0, 0, 0, 0.6);
    --mcmart-gray: #333333;
    --mcmart-gray-light: #666666;
    --mcmart-white: #ffffff;
    --mcmart-white-transparent: rgba(255, 255, 255, 0.1);
    --mcmart-white-semi: rgba(255, 255, 255, 0.7);
}

/* Base styles */
body {
    background-color: var(--mcmart-black);
    color: var(--mcmart-white);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(240, 165, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(240, 165, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(240, 165, 0, 0.02) 0%, transparent 50%);
    z-index: -1;
}

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

/* Typography */
h1 {
    color: var(--mcmart-yellow);
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

h2 {
    color: var(--mcmart-yellow);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

h3 {
    color: var(--mcmart-yellow);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Cards and sections */
.mcmart-card {
    background-color: var(--mcmart-black-light);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(240, 165, 0, 0.2);
}

.mcmart-card:hover {
    border-color: rgba(240, 165, 0, 0.4);
    transition: border-color 0.3s ease;
}

/* Buttons */
.mcmart-button {
    background-color: var(--mcmart-yellow);
    color: var(--mcmart-black);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mcmart-button:hover {
    background-color: var(--mcmart-yellow-hover);
    transform: translateY(-2px);
}

.mcmart-button-outline {
    background-color: transparent;
    color: var(--mcmart-yellow);
    border: 2px solid var(--mcmart-yellow);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mcmart-button-outline:hover {
    background-color: var(--mcmart-yellow);
    color: var(--mcmart-black);
}

/* Collapsible sections */
.mcmart-section-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--mcmart-yellow-strong);
    color: var(--mcmart-white);
    padding: 1rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    font-weight: 600;
}

.mcmart-section-header h2 {
    color: var(--mcmart-white);
    margin-bottom: 0;
}

.mcmart-section-header:hover {
    background-color: rgba(240, 165, 0, 0.85);
}

.mcmart-section-content {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 0.5rem;
}

/* Skills and experience items */
.mcmart-skill-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.mcmart-skill-item {
    background-color: var(--mcmart-yellow-light);
    padding: 1rem;
    border-radius: 8px;
}

.mcmart-skill-item h3 {
    color: var(--mcmart-yellow);
    margin-bottom: 0.5rem;
}

.mcmart-skill-item ul {
    list-style: disc;
    list-style-position: inside;
    color: var(--mcmart-white);
}

/* Experience timeline */
.mcmart-experience-item {
    border-left: 2px solid var(--mcmart-yellow);
    padding-left: 1rem;
    margin-bottom: 2rem;
}

.mcmart-experience-item h3 {
    color: var(--mcmart-yellow);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.mcmart-experience-item .period {
    color: var(--mcmart-white-semi);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Hero section */
.mcmart-hero {
    background-color: var(--mcmart-black-light);
    border-radius: 12px;
    padding: 3rem;
    margin: 2rem auto;
    max-width: 900px;
    text-align: center;
}

.mcmart-hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.mcmart-hero-item {
    background-color: rgba(240, 165, 0, 0.2);
    padding: 1rem;
    border-radius: 8px;
}

/* Music player styles */
.mcmart-music-player {
    background-color: var(--mcmart-black-light);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.mcmart-progress-bar {
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    margin: 1rem 0;
}

.mcmart-progress-fill {
    height: 100%;
    background-color: var(--mcmart-yellow);
    border-radius: 2px;
    transition: width 0.1s ease;
}

.mcmart-song-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 0.5rem;
}

.mcmart-song-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.mcmart-song-item.active {
    background-color: var(--mcmart-yellow-medium);
}

/* Art gallery styles */
.mcmart-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.mcmart-art-item {
    background-color: var(--mcmart-black-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(240, 165, 0, 0.2);
    cursor: pointer;
}

.mcmart-art-item:hover {
    border-color: rgba(240, 165, 0, 0.4);
    transform: translateY(-5px);
}

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

.mcmart-art-content {
    padding: 1rem;
}

/* Modal styles */
.mcmart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.mcmart-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background-color: var(--mcmart-black-light);
    border-radius: 12px;
    padding: 2rem;
}

/* Responsive design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .mcmart-hero {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .mcmart-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .mcmart-skill-grid {
        grid-template-columns: 1fr;
    }
    
    .mcmart-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Utility classes */
.pt-32 {
    padding-top: 8rem;
}

.pb-16 {
    padding-bottom: 4rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

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

.hidden {
    display: none;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}