/* ═══════════════════════════════════════
   Despre Page — Amigurumi World
   ═══════════════════════════════════════ */

.despre-container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* ── Hero ─────────────────────────────── */
.despre-hero {
    text-align: center;
    padding: 5rem 0 3rem;
    background: linear-gradient(160deg, #fdf6f7 0%, #fff0f5 40%, #fde4e8 100%);
}

.despre-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    color: #e88fab;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 25px;
    margin-bottom: 1rem;
    border: 1px solid rgba(232, 143, 171, 0.2);
}

.despre-hero h1 {
    font-size: 2.8rem;
    color: #5c5c5c;
    font-weight: 700;
    margin-bottom: 1rem;
}

.despre-hero .gradient-text {
    background: linear-gradient(135deg, #f2a2b9, #e88fab, #d97aa0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.despre-intro {
    font-size: 1.15rem;
    color: #888;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Content Grid ─────────────────────── */
.despre-content {
    padding: 4rem 0;
    background: #fff;
}

.despre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.despre-text h2 {
    font-size: 1.8rem;
    color: #5c5c5c;
    font-weight: 700;
    margin-bottom: 1rem;
}

.despre-text p {
    color: #777;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

/* Highlights */
.despre-highlights {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 1.2rem;
    border-radius: 14px;
    background: #fdf6f7;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: #fff;
    box-shadow: 0 8px 25px rgba(232, 143, 171, 0.12);
    transform: translateY(-3px);
}

.highlight-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.highlight-item strong {
    display: block;
    color: #5c5c5c;
    font-size: 1rem;
    margin-bottom: 2px;
}

.highlight-item div p {
    margin: 0;
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.5;
}

/* Image */
.despre-image {
    position: relative;
}

.despre-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 16px 50px rgba(93, 85, 80, 0.12);
    object-fit: cover;
}

.creator-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 0.9rem;
    color: #5c5c5c;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 6px;
}

.creator-tag span {
    font-size: 1.2rem;
}

/* ── CTA Section ──────────────────────── */
.despre-cta {
    text-align: center;
    padding: 4rem 0 5rem;
    background: linear-gradient(180deg, #fff, #fdf6f7);
}

.despre-cta h3 {
    font-size: 2rem;
    color: #5c5c5c;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.despre-cta p {
    color: #999;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: linear-gradient(135deg, #f2a2b9, #e88fab);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(232, 143, 171, 0.35);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(232, 143, 171, 0.45);
}

/* ── Responsive ───────────────────────── */
@media (max-width: 800px) {
    .despre-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .despre-hero h1 {
        font-size: 2rem;
    }

    .despre-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
}