/* Page Header */
.about-header {
    padding: 80px 0 60px 0;
    text-align: center;
    background: linear-gradient(rgba(18,18,18,0.9), rgba(18,18,18,0.95)), url('../images/ui/workshop-bg.jpg') no-repeat center/cover;
    border-bottom: 1px solid var(--color-gunmetal);
}

.about-header h1 {
    font-family: var(--font-heading);
    color: var(--color-wood-amber);
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.about-header p {
    font-size: 1.15rem;
    color: #ccc;
    max-width: 650px;
    margin: 0 auto;
}

/* Section 1: The Story */
.about-story {
    padding: 80px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-content h2 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.story-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--color-wood-amber);
}

.lead-text {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 500;
}

.story-content p {
    color: #b3b3b3;
    margin-bottom: 15px;
    line-height: 1.8;
}

.story-image {
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--color-gunmetal);
    box-shadow: 0 15px 30px rgba(0,0,0,0.6);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Section 2: Workshop Showcase */
.workshop-showcase {
    background-color: var(--color-surface);
    padding: 80px 0;
    border-top: 1px solid var(--color-gunmetal);
    border-bottom: 1px solid var(--color-gunmetal);
}

.text-center {
    text-align: center;
}

.section-heading {
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.section-heading h2 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.section-heading p {
    color: #999;
}

.workshop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.workshop-card {
    background-color: var(--color-matte-black);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--color-gunmetal);
    transition: var(--transition-smooth);
}

.workshop-card:hover {
    border-color: var(--color-wood-amber);
    transform: translateY(-5px);
}

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #2a2a2a; /* Placeholder while image loads */
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.workshop-card:hover .card-image img {
    transform: scale(1.05);
}

.workshop-card h3 {
    font-family: var(--font-heading);
    color: #fff;
    margin: 20px 20px 10px 20px;
    font-size: 1.3rem;
}

.workshop-card p {
    color: #a0a0a0;
    margin: 0 20px 25px 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Section 3: CTA */
.about-cta {
    padding: 80px 0;
    max-width: 700px;
}

.about-cta h2 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.about-cta p {
    color: #ccc;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .story-grid {
        grid-template-columns: 1fr;
    }
    .about-header h1 {
        font-size: 2.2rem;
    }
}