/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

:root {
    --noir: #0a0608;
    --charcoal: #14101a;
    --slate: #1c1624;
    --steel: #2d2438;
    --silver: #9a8fa8;
    --pearl: #f0eaf5;
    --white: #ffffff;
    --ruby: #e31b54;
    --crimson: #c41040;
    --gold: #f5a623;
    --amber: #ffb347;
    --font-body: 'Vazirmatn', 'Tajawal', 'Cairo', 'Noto Sans Arabic', sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}
.main {
    margin-top: -50px !important;
}
/* Theme Support */
[data-theme="ocean"] { --ruby: #0ea5e9; --crimson: #0284c7; --gold: #38bdf8; }
[data-theme="emerald"] { --ruby: #10b981; --crimson: #059669; --gold: #34d399; }
[data-theme="purple"] { --ruby: #a855f7; --crimson: #9333ea; --gold: #c084fc; }
[data-theme="sunset"] { --ruby: #f97316; --crimson: #ea580c; --gold: #fb923c; }
[data-theme="rose"] { --ruby: #ec4899; --crimson: #db2777; --gold: #f472b6; }

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); background: var(--noir); color: var(--pearl); min-height: 100vh; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }

/* Page Cover - Full Cover Under Menu */
.page-cover {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 60px;
    margin-top: 0;
    margin-left: -20px;
    margin-right: -20px;
    overflow: hidden;
}

.page-cover__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--charcoal);
}

.page-cover__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(10,6,8,0.5) 0%, 
        rgba(10,6,8,0.8) 60%,
        var(--noir) 100%);
    z-index: 1;
}

.page-cover__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    margin: 30px 0;
}

.page-cover__icon {
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--gold), var(--ruby));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-cover__title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--white);
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.page-cover__title span {
    background: linear-gradient(135deg, var(--ruby), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-cover__subtitle {
    color: var(--silver);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 60px 20px 80px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* About Cards */
.about-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s var(--ease-out-expo);
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.about-card--stats {
    grid-column: span 2;
}

.about-card--social {
    grid-column: span 2;
    text-align: center;
}

.about-card__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--ruby), var(--gold));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(227, 27, 84, 0.3);
}

.about-card__title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.about-card__text {
    color: var(--silver);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-card__list {
    list-style: none;
}

.about-card__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--silver);
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.about-card__list li:last-child {
    border-bottom: none;
}

.about-card__list li i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.03);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
}

.stat-item__number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold), var(--ruby));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-item__label {
    color: var(--silver);
    font-size: 1rem;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.social-link {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    font-size: 1.4rem;
    color: var(--silver);
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    color: var(--white);
}

.social-link--facebook:hover { background: #1877f2; border-color: #1877f2; }
.social-link--instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: transparent; }
.social-link--twitter:hover { background: #000; border-color: #000; }
.social-link--youtube:hover { background: #ff0000; border-color: #ff0000; }
.social-link--telegram:hover { background: #0088cc; border-color: #0088cc; }

/* Responsive */
@media (max-width: 1024px) {
    .about-container { grid-template-columns: 1fr; }
    .about-card--stats, .about-card--social { grid-column: span 1; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .page-cover { min-height: 320px; padding: 120px 20px 50px; }
    .page-cover__title { font-size: 2.2rem; }
    .page-cover__subtitle { font-size: 1rem; }
    .page-cover__icon { font-size: 3rem; }
    .about-section { padding: 40px 15px 60px; }
    .about-card { padding: 30px 25px; }
    .about-card__title { font-size: 1.5rem; }
    .stat-item__number { font-size: 2rem; }
    .main {
        margin-top: -40px !important;
    }


    .header {
        padding: 35px 16px !important;
    }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 15px; }
    .stat-item { padding: 20px 15px; }
    .stat-item__number { font-size: 1.6rem; }
}


@media (max-width: 768px) {
    .header {
        padding: 55px 20px !important;
    }
}

@media (max-width: 540px) {
    .header {
        padding: 22px 20px !important;
    }
}
