/**
 * SonoCopia Collective — Hero + About Styles
 */

/* ── Page wrapper ────────────────────────────────────────── */
.sonocopia-page {
    background: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

/* ── Hero section ────────────────────────────────────────── */
.sonocopia-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

#sonocopia-waveform-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.sonocopia-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    pointer-events: none;
}

/* ── Floating Home Logo (Site Logo Block) ─────────────────── */
.sonocopia-hero__home-link {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 10;
    opacity: 0.65;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sonocopia-hero__home-link:hover {
    opacity: 1;
    transform: scale(1.05);
}

.sonocopia-hero__home-link .wp-block-site-logo img {
    width: 44px;
    height: auto;
    display: block;
}



/* ── Title: solid blue with bright hover glow ───────── */
.sonocopia-hero__title {
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #2979ff;
    transition:
        color 0.35s ease,
        text-shadow 0.35s ease;
    cursor: default;
    pointer-events: auto;
    white-space: nowrap;
    line-height: 1.15;
    text-align: center;
    -webkit-user-select: none;
    user-select: none;
}

.sonocopia-hero__title:hover {
    color: #7abfff;
    text-shadow:
        0 0 16px rgba(122, 191, 255, 0.6),
        0 0 32px rgba(41, 121, 255, 0.4);
}

.sonocopia-hero__sub {
    font-size: clamp(0.65rem, 1.5vw, 0.88rem);
    font-weight: 300;
    letter-spacing: 0.55em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    pointer-events: auto;
}

/* ── About Us scroll CTA ─────────────────────────────────── */
.sonocopia-hero__cta {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;

    /* Glass surface */
    background: rgba(255, 255, 255, 0.04);
    -webkit-backdrop-filter: blur(12px) saturate(1.4);
    backdrop-filter: blur(12px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 3px;
    padding: 0.9rem 2.2rem;

    /* Top-edge inner highlight for depth */
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 2px 16px rgba(0, 0, 0, 0.45);

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.sonocopia-hero__cta:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 0 18px rgba(255, 255, 255, 0.08),
        0 2px 24px rgba(0, 0, 0, 0.50);
}

.sonocopia-hero__cta-label {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
    transition: color 0.3s ease;
}

.sonocopia-hero__cta:hover .sonocopia-hero__cta-label {
    color: rgba(255, 255, 255, 0.95);
}

.sonocopia-hero__cta-arrow {
    width: 24px;
    height: 24px;
    position: relative;
    animation: sonocopia-bounce 2s ease-in-out infinite;
}

.sonocopia-hero__cta-arrow::before,
.sonocopia-hero__cta-arrow::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 10px;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.42);
    transition: background 0.3s ease;
}

.sonocopia-hero__cta-arrow::before {
    transform: translateX(-50%) rotate(45deg) translateX(-3px);
    top: 10px;
}

.sonocopia-hero__cta-arrow::after {
    transform: translateX(-50%) rotate(-45deg) translateX(3px);
    top: 10px;
}

.sonocopia-hero__cta:hover .sonocopia-hero__cta-arrow::before,
.sonocopia-hero__cta:hover .sonocopia-hero__cta-arrow::after {
    background: rgba(255, 255, 255, 0.85);
}

@keyframes sonocopia-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

/* ── About section ───────────────────────────────────────── */
.sonocopia-about {
    position: relative;
    background: #000;
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    overflow: hidden;
}

/* Canvas — absolute full bleed */
#sonocopia-about-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
}


/* Text block — z-index 2 above canvas */
.sonocopia-about__inner {
    position: relative;
    z-index: 2;
    max-width: 660px;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding-top: 2.5rem;
    padding-bottom: 3rem;
}

.sonocopia-about__eyebrow {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 1.8rem;
    line-height: 1.1;
}

.sonocopia-about__body {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.sonocopia-about__body p {
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    font-weight: 300;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.68);
    margin: 0;
    text-align: justify;
    -webkit-hyphens: auto;
    hyphens: auto;
}

/* Centre the Team glass button below body text */
.sonocopia-about__cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 2.8rem;
}

.sonocopia-about__cta-wrap .sonocopia-glass-btn {
    margin-top: 0;
    /* override default top margin when inside wrapper */
}

/* ── Shared glass button (About → Team, expandable) ─────── */
.sonocopia-glass-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    margin-top: 2.8rem;
    cursor: pointer;

    background: rgba(255, 255, 255, 0.04);
    -webkit-backdrop-filter: blur(12px) saturate(1.4);
    backdrop-filter: blur(12px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 3px;
    padding: 0.85rem 2.2rem;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 2px 16px rgba(0, 0, 0, 0.45);

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.sonocopia-glass-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 0 18px rgba(255, 255, 255, 0.08),
        0 2px 24px rgba(0, 0, 0, 0.50);
}

.sonocopia-glass-btn__label {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
    transition: color 0.3s ease;
}

.sonocopia-glass-btn:hover .sonocopia-glass-btn__label {
    color: rgba(255, 255, 255, 0.95);
}

.sonocopia-glass-btn__arrow {
    width: 20px;
    height: 20px;
    position: relative;
    animation: sonocopia-bounce 2s ease-in-out infinite;
}

.sonocopia-glass-btn__arrow::before,
.sonocopia-glass-btn__arrow::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 9px;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.42);
    transition: background 0.3s ease;
}

.sonocopia-glass-btn__arrow::before {
    transform: translateX(-50%) rotate(45deg) translateX(-2.5px);
    top: 8px;
}

.sonocopia-glass-btn__arrow::after {
    transform: translateX(-50%) rotate(-45deg) translateX(2.5px);
    top: 8px;
}

.sonocopia-glass-btn:hover .sonocopia-glass-btn__arrow::before,
.sonocopia-glass-btn:hover .sonocopia-glass-btn__arrow::after {
    background: rgba(255, 255, 255, 0.88);
}

/* ── Team section ────────────────────────────────────────── */
.sonocopia-team {
    position: relative;
    background: #000;
    color: #fff;
    padding: 6rem 2rem 8rem;
    overflow: hidden;
}

#sonocopia-team-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
}

.sonocopia-team__inner {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}

.sonocopia-team__eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
    margin: 0 0 4rem;
}

/* ── Member card ─────────────────────────────────────────── */
.sonocopia-member {
    padding: 2.5rem 0;
}

.sonocopia-member__header {
    margin-bottom: 1.6rem;
}

.sonocopia-member__name {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2979ff;
    -webkit-text-stroke: 0;
    margin: 0 0 0.4rem;
    line-height: 1.1;
}

.sonocopia-member__role {
    font-size: clamp(0.85rem, 1.4vw, 0.95rem);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.sonocopia-member__bio {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.sonocopia-member__bio p {
    font-size: clamp(0.93rem, 1.5vw, 1.02rem);
    font-weight: 300;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.62);
    margin: 0;
    text-align: justify;
    -webkit-hyphens: auto;
    hyphens: auto;
}

/* Pending bio */
.sonocopia-member--pending .sonocopia-member__name {
    -webkit-text-stroke-color: rgba(41, 121, 255, 0.38);
}

.sonocopia-member__bio--pending {
    color: rgba(255, 255, 255, 0.22) !important;
    font-style: italic;
    letter-spacing: 0.05em;
}

/* Thin horizontal rule between members */
.sonocopia-member__divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin: 0;
}

/* ── Mobile: hero title wraps to 2 lines ─────────────────── */
@media (max-width: 600px) {
    .sonocopia-hero__title {
        white-space: normal;
        word-break: break-word;
        font-size: clamp(2.2rem, 12vw, 3rem);
        letter-spacing: 0.12em;
        text-align: center;
        line-height: 1.2;
    }

    .sonocopia-hero__content {
        padding: 0 1.25rem;
    }
}