/* ==========================================================================
   MEET PANEL (right) - Component Styles
   ========================================================================== */

/* --- Meet Base --- */
.meet-base {
    position: absolute;
    inset: 0;
}

/* --- State Visibility --- */
#meet-profile {
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease-out;
}

#meet-starburst {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 200ms ease-out;
}

/* Toggle visibility when panel has .show-profile class */
#meet-panel.show-profile #meet-profile {
    opacity: 1;
    pointer-events: auto;
}

#meet-panel.show-profile #meet-starburst {
    opacity: 0;
    pointer-events: none;
}

/* --- Meet Photo --- */
.meet-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* --- Meet Buttons Container --- */
.meet-buttons {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: calc(100% - 2rem);
    max-width: 760px;
    padding: 0;
    z-index: 1;
    box-sizing: border-box;
}

/* --- Meet Button --- */
.meet-button {
    background: rgba(0, 0, 0, 0.2);
    color: var(--color-white);
    border: 1.8px solid var(--color-off-white);
    border-radius: 5px;
    flex: 1 1 320px;
    min-width: 260px;
    max-width: 360px;
    height: 70px;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: clamp(1rem, 1.05vw, 1.175rem);
    letter-spacing: 0.01em;
    cursor: pointer;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    transition: background-color 0.2s ease-out, border-color 0.2s ease-out, transform 0.05s ease-out;
    text-decoration: none;
}

.meet-button:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--color-off-white);
}

.meet-button:active {
    box-shadow: inset 2px 6px 10px rgba(102, 74, 40, 0.25);
}

/* --- Mobile Scroll Indicator --- */
.scroll-indicator-meet {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(env(safe-area-inset-bottom, 0px) + 7vh);
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--color-white);
    z-index: 2;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.scroll-label-meet {
    font-family: inherit;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 0.18em;
    line-height: 1;
    text-transform: uppercase;
    color: var(--color-white);
    opacity: 0.9;
}

.scroll-arrow-meet {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 12px solid var(--color-white);
}

/* --- Mobile Layout (≤820px) --- */
@media (max-width: 820px) {
    .meet-buttons {
        max-width: calc(100% - 2rem);
        padding: 0;
        bottom: 7.5rem;
    }

    .meet-button {
        flex: 1 1 100%;
        min-width: 0;
        max-width: 100%;
    }

    .scroll-indicator-meet {
        display: inline-flex;
    }
}