/* ===== Ideas Page Styles ===== */

/* ===== Page hero — заголовок центрирован ===== */
.section.page-hero {
    text-align: center;
}
.section.page-hero .container {
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section.page-hero h1,
.section.page-hero .section-desc {
    text-align: center !important;
    width: 100%;
}

/* ===== Идеи для композиций ===== */
.ideas-intro { padding-top: 0; }
.ideas-lead {
    margin: 0 0 1rem;
    font-size: 1rem;
    color: var(--text);
    line-height: 1.7;
}
.ideas-notice {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    padding: 0.75rem 1rem;
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 8px;
}
.ideas-form-section { padding-top: 0.5rem; }
.ideas-form-wrap {
    max-width: 560px;
    margin: 0 auto;
    padding: 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(8px);
}
.ideas-form-title {
    margin: 0 0 1.25rem;
    font-size: 1.25rem;
    color: #fff;
}
.ideas-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.ideas-form .form-label-text { margin-bottom: 0.35rem; }
.ideas-form .form-label-text em { color: var(--text-muted); font-style: normal; font-size: 0.9em; }
.ideas-form input[type="text"],
.ideas-form textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
}
.ideas-form input:focus,
.ideas-form textarea:focus {
    outline: none;
    border-color: var(--neon-violet);
    box-shadow: 0 0 0 2px rgba(168, 85, 247, 0.2);
}
.ideas-form textarea.ideas-textarea {
    resize: vertical;
    min-height: 100px;
    max-height: 280px;
}
.ideas-form .form-hint { font-size: 0.8rem; color: var(--text-muted); }
.ideas-agreement {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}
.ideas-agreement input[type="checkbox"] {
    margin-top: 0.35rem;
    flex-shrink: 0;
    width: 1.1rem;
    height: 1.1rem;
    accent-color: var(--neon-violet);
}
.ideas-agreement-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.ideas-msg.success { color: #4ade80; }
.ideas-msg.error { color: #f87171; }
