/* Myth Valley Specific Styles */

:root {
    --mv-bg-color: #000000;
    --mv-text-color: #cccccc;
    --mv-heading-color: #4a8c3c; /* Green from the design */
    --mv-accent-color: #4a8c3c;
}

body {
    background-color: var(--mv-bg-color);
    color: var(--mv-text-color);
}

main {
    width: 100%;
    margin: 0;
    padding: 0;
}



/* Typography */
h1, h2, h3 {
    color: var(--mv-heading-color);
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    border-left: 8px solid var(--mv-accent-color);
    padding-left: 1rem;
    margin-top: 4rem;
    line-height: 1;
}

h3 {
    font-size: 1.5rem;
    color: #fff; /* Subheadings often white in design */
    margin-top: 2rem;
}

p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: #b0b0b0;
}

/* Sections */
.mv-section {
    max-width: 1200px;
    margin: 0 auto 6rem;
    padding: 0 60px;
}

/* Intro & Inspiration Grid */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.intro-text-col {
    display: flex;
    flex-direction: column;
}

.sketch-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.sketch-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.moodboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 2rem;
}

.moodboard-grid img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Procession Steps */
.procession-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step-card {
    background: #111;
    padding: 1rem;
    border-radius: 8px;
}

.step-number {
    font-size: 4rem;
    font-weight: bold;
    color: var(--mv-accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.step-card img {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 4px;
}

/* Detailed Procession Sections */
.process-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.full-width-img {
    width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 8px;
}

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

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Animation Section */
.animation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Final Display */
.final-display img {
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .intro-grid, .procession-steps, .process-detail-grid, .animation-grid {
        grid-template-columns: 1fr;
    }
    
    h2 {
        font-size: 2rem;
    }
}
