/* ============================================================
   Unseelie Workshop — About Page Styles
   ============================================================ */

/* ---- Hero ---- */
.about-hero {
    padding: 6rem 4rem 3rem;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.about-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 300;
    font-style: italic;
    color: var(--gold);
    text-shadow: 0 4px 20px var(--shadow);
    margin-bottom: 1rem;
}

.about-tagline {
    font-size: 1rem;
    color: rgba(245, 241, 232, 0.6);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 300;
}

/* ---- Cinematic image ---- */
.about-image-wrap {
    width: 100%;
    max-height: 75vh;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.35s both;
}

.about-image-wrap img {
    width: 100%;
    height: 75vh;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Placeholder shown until real photo is added */
.about-image-placeholder {
    width: 100%;
    height: 65vh;
    background: linear-gradient(135deg, #111 0%, #1a1f1e 50%, #0d1010 100%);
    border-top: 1px solid rgba(201, 169, 97, 0.1);
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(245, 241, 232, 0.2);
}

/* ---- Body copy ---- */
.about-body {
    max-width: 760px;
    margin: 0 auto;
    padding: 5rem 4rem 3rem;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.about-block h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.about-block p {
    font-size: 1rem;
    line-height: 1.95;
    color: rgba(245, 241, 232, 0.8);
    font-weight: 300;
    margin-bottom: 1rem;
}

.about-block p:last-child {
    margin-bottom: 0;
}

.about-block a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(201, 169, 97, 0.35);
    transition: border-color 0.2s ease;
}

.about-block a:hover {
    border-color: var(--gold);
}

/* ---- CTA actions ---- */
.about-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem 4rem 6rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.about-actions-or {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    color: rgba(245, 241, 232, 0.3);
}

/* Uses .btn-primary base; smaller padding variant */
.about-btn {
    padding: 0.9rem 2.2rem;
    font-size: 0.82rem;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .about-hero {
        padding: 4rem 2rem 2rem;
    }

    .about-hero h1 {
        font-size: 3rem;
    }

    .about-image-placeholder {
        height: 45vh;
    }

    .about-body {
        padding: 4rem 2rem 2rem;
    }

    .about-actions {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 2rem 4rem;
    }

    .about-btn {
        width: 100%;
        text-align: center;
    }
}
