/* ==========================================================================
   ABOUT PAGE STYLES (PREMIUM RETRO)
   ========================================================================== */

.about-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header Section */
.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    /* Используем ваш градиент из main.css */
    background: linear-gradient(to bottom, #fcf6ba 0%, #d4af37 50%, #b8860b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-header .subtitle {
    font-size: 1.2rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.8;
}

/* Content Typography */
.about-content p {
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 25px;
}

.lead-text {
    font-size: 1.3rem !important;
    color: var(--text-bright) !important;
    line-height: 1.6 !important;
}

.highlight {
    color: var(--gold);
    font-style: italic;
}

/* Process Section (Cards) */
.about-process {
    margin: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.process-card {
    background: rgba(25, 25, 25, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
}

.process-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(212, 175, 55, 0.1);
}

.process-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.process-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-bright);
}

.process-card p {
    font-size: 0.9rem !important;
    color: var(--text-muted) !important;
    margin-bottom: 0 !important;
}

/* Tech Section */
.about-tech {
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding-top: 40px;
    font-style: italic;
    color: var(--text-muted);
}

/* Footer / Signature */
.about-footer {
    margin-top: 80px;
    text-align: center;
}

.signature {
    margin-top: 40px;
}

.author-name {
    font-size: 1.4rem !important;
    color: var(--gold) !important;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Divider */
.content-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.3), transparent);
    margin: 60px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .about-header h1 { font-size: 2.2rem; }
    .process-grid { grid-template-columns: 1fr; }
}
