/* ==========================================
   ORGANIZER PAGE — public/css/site/organizer.css
   ========================================== */

.org-page {
    padding: 80px 0 60px;
    background: var(--bg);
    min-height: 70vh;
}

/* ====== STATUS (not found / inactive / moderation) ====== */

.org-unavailable {
    max-width: 600px;
    margin: 40px auto;
    text-align: center;
    padding: 0 20px;
}

.org-unavailable__icon { font-size: 54px; margin-bottom: 18px; line-height: 1; }

.org-unavailable__title {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 12px;
}

.org-unavailable__sub {
    font-size: 15px;
    color: #6f7b93;
    line-height: 1.65;
    margin: 0 0 28px;
}

.org-unavailable__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.org-unavailable__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .2s ease;
}

.org-unavailable__btn--primary { background: var(--orange); color: #ffffff; }
.org-unavailable__btn--primary:hover { background: var(--orange-h); }
.org-unavailable__btn--outline { background: #ffffff; color: var(--slate); border: 1.5px solid #e5e7eb; }
.org-unavailable__btn--outline:hover { border-color: var(--blue); color: var(--blue); }

/* ====== HERO CARD ====== */

.org-hero {
    background: transparent; /* убрали белый фон */
    border-radius: 24px;
    padding: 36px 40px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.org-hero__avatar {
    width: 112px; /* чуть больше */
    height: 112px;
    border-radius: 999px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    font-weight: 800;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(54,154,227,0.25);
}

.org-hero__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.org-hero__name {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
    line-height: 1.15;
}

.org-hero__location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
    color: #6f7b93;
}

.org-hero__location svg { color: var(--blue); flex-shrink: 0; }

/* Copy link button */
.org-hero__copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 12px;
    border: none;
    background: var(--blue);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .2s ease;
}

.org-hero__copy-btn:hover { opacity: 0.8; }

.org-hero__copy-btn.is-copied {
    background: var(--green);
    opacity: 1;
}

/* Stats row */
.org-hero__stats {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 600px;
    background: var(--slate); 
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--dark);
}

.org-hero__stat {
    flex: 1;
    padding: 18px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
}

.org-hero__stat + .org-hero__stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.15);
}

.org-hero__stat-value {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff; /* белый */
    line-height: 1;
}

.org-hero__stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.55); /* светлый */
    line-height: 1.35;
}

/* Description under stats */
.org-hero__desc {
    width: 100%;
    max-width: 600px;
    font-size: 15px;
    color: #44506b;
    line-height: 1.7;
    text-align: left;
}

/* ====== TOURS SECTION ====== */

.org-tours-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.org-tours-head h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
}

.org-tours-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 26px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(54,154,227,0.12);
    color: var(--blue-2);
    font-size: 13px;
    font-weight: 700;
}

.org-empty {
    background: #ffffff;
    border-radius: 18px;
    padding: 36px 24px;
    text-align: center;
    color: #6f7b93;
    font-size: 15px;
    box-shadow: 0 4px 14px rgba(15,29,68,0.06);
}

/* Load more */
.org-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.org-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 48px;
    padding: 0 28px;
    border-radius: 14px;
    border: 1.5px solid #e5e7eb;
    background: #ffffff;
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
    box-shadow: 0 2px 8px rgba(15,29,68,0.06);
}

.org-more-btn:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: rgba(54,154,227,0.04);
    transform: translateY(-1px);
}

/* ====== RESPONSIVE ====== */

@media (max-width: 640px) {
    .org-page { padding-top: 80px; }

    .org-hero { padding: 28px 20px; gap: 16px; }
    .org-hero__name { font-size: 22px; }
    .org-hero__avatar { width: 90px; height: 90px; font-size: 34px; }

    .org-hero__stat-value { font-size: 22px; }
}


.org-license-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #1d9bf0;
    text-decoration: none;
    transition: opacity .18s ease;
}

.org-license-link:hover { opacity: 0.75; }