.page-about { gap: 35px; padding-top: 20px; padding-bottom: 60px; max-width: 1000px; margin: 0 auto; } /* Typography and Highlighting */ .highlight-neon { color: var(--neon-blue); text-shadow: 0 0 10px rgba(45, 212, 191, 0.4); } /* Hero Section */ .about-hero-block { padding: 50px 30px; border-top: 2px solid var(--neon-blue); background: linear-gradient(180deg, rgba(45, 212, 191, 0.05) 0%, rgba(15, 23, 42, 0.6) 100%); position: relative; overflow: hidden; } .about-icon-badge { font-size: 40px; color: var(--neon-blue); margin-bottom: 20px; display: inline-block; filter: drop-shadow(0 0 10px rgba(45,212,191,0.5)); } .hero-heading { font-size: 38px; font-weight: 800; margin-bottom: 20px; color: #fff; line-height: 1.2; } .hero-subtext { font-size: 17px; color: var(--text-muted); line-height: 1.8; max-width: 800px; margin: 0 auto; } /* Content Blocks */ .about-content-block { padding: 40px; transition: transform 0.3s ease, box-shadow 0.3s ease; } .about-content-block:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); border-color: rgba(255, 255, 255, 0.15); } .block-header { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; border-bottom: 1px solid var(--glass-border); padding-bottom: 15px; } .header-icon { width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; border-radius: 12px; font-size: 20px; background: rgba(255, 255, 255, 0.05); } .header-icon.blue-glow { color: var(--neon-blue); box-shadow: inset 0 0 15px rgba(45, 212, 191, 0.2); } .header-icon.green-glow { color: var(--neon-green); box-shadow: inset 0 0 15px rgba(16, 185, 129, 0.2); } .header-icon.purple-glow { color: var(--neon-purple); box-shadow: inset 0 0 15px rgba(168, 85, 247, 0.2); } .header-icon.yellow-glow { color: var(--neon-yellow); box-shadow: inset 0 0 15px rgba(251, 191, 36, 0.2); } .header-icon.neon-glow { color: var(--neon-red); box-shadow: inset 0 0 15px rgba(244, 63, 94, 0.2); } .block-header h2 { font-size: 24px; color: #fff; font-weight: 700; } .block-body p { font-size: 16px; line-height: 1.8; color: #cbd5e1; margin-bottom: 15px; } .block-body p:last-child { margin-bottom: 0; } /* Feature Grid */ .feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 25px; } .feature-card { background: rgba(0, 0, 0, 0.2); border: 1px solid rgba(255, 255, 255, 0.05); padding: 25px; border-radius: 16px; text-align: center; transition: 0.3s ease; } .feature-card:hover { background: rgba(45, 212, 191, 0.05); border-color: rgba(45, 212, 191, 0.3); } .feature-card i { font-size: 28px; color: var(--neon-green); margin-bottom: 15px; } .feature-card h4 { color: #fff; font-size: 18px; margin-bottom: 10px; } .feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 0; } /* Styled Lists */ .styled-list { list-style: none; padding-left: 0; margin-top: 15px; } .styled-list li { font-size: 16px; color: #cbd5e1; line-height: 1.8; margin-bottom: 12px; display: flex; align-items: flex-start; gap: 12px; } .styled-list li i { color: var(--neon-purple); font-size: 14px; margin-top: 6px; } /* Values Grid */ .values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 25px; } .value-item { border-left: 3px solid var(--neon-yellow); padding: 15px 20px; background: linear-gradient(90deg, rgba(251, 191, 36, 0.05) 0%, transparent 100%); border-radius: 0 12px 12px 0; } .value-title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; } .value-item p { font-size: 15px; color: var(--text-muted); margin-bottom: 0; } /* Contact Methods */ .contact-methods { display: flex; flex-direction: column; gap: 15px; margin-top: 25px; } .contact-card { display: flex; align-items: center; gap: 20px; background: rgba(0, 0, 0, 0.2); border: 1px solid rgba(255, 255, 255, 0.05); padding: 20px; border-radius: 16px; text-decoration: none; transition: 0.3s ease; } a.contact-card:hover { background: rgba(45, 212, 191, 0.08); border-color: rgba(45, 212, 191, 0.4); transform: translateX(5px); } .contact-icon { width: 60px; height: 60px; flex-shrink: 0; background: rgba(255, 255, 255, 0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--neon-blue); } .contact-details h4 { color: #fff; font-size: 18px; margin-bottom: 4px; } .contact-details span { display: inline-block; font-size: 14px; color: var(--neon-blue); font-weight: 600; margin-bottom: 8px; } .contact-details p { font-size: 14px; color: var(--text-muted); line-height: 1.5; margin-bottom: 0; } /* Mobile Responsive */ @media (max-width: 768px) { .hero-heading { font-size: 30px; } .about-content-block { padding: 25px; } .block-header h2 { font-size: 20px; } .contact-card { flex-direction: column; text-align: center; } .value-item { border-left: none; border-top: 3px solid var(--neon-yellow); background: linear-gradient(180deg, rgba(251, 191, 36, 0.05) 0%, transparent 100%); border-radius: 0 0 12px 12px;} } /* ========================================= About Page Modern Optimization ========================================= */ .page-about { display: flex; flex-direction: column; gap: 30px; } .about-hero-block { padding: 50px 30px; border-top: 3px solid var(--neon-blue); position: relative; overflow: hidden; } .hero-heading { font-size: 38px; color: #fff; margin-bottom: 20px; font-weight: 800; } .highlight-gradient { background: linear-gradient(to right, var(--neon-blue), var(--neon-purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; } .hero-subtext { font-size: 17px; line-height: 1.7; color: var(--text-muted); max-width: 800px; margin: 0 auto; } .about-grid-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; } .about-content-block { padding: 35px; transition: transform 0.3s ease, box-shadow 0.3s ease; } .about-content-block:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); } .block-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; border-bottom: 1px solid var(--glass-border); padding-bottom: 15px; } .header-icon { width: 45px; height: 45px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; background: rgba(255,255,255,0.05); } /* Neon Glows */ .purple-glow { color: var(--neon-purple); box-shadow: 0 0 15px rgba(168, 85, 247, 0.2); } .blue-glow { color: var(--neon-blue); box-shadow: 0 0 15px rgba(45, 212, 191, 0.2); } .green-glow { color: var(--neon-green); box-shadow: 0 0 15px rgba(16, 185, 129, 0.2); } .yellow-glow { color: var(--neon-yellow); box-shadow: 0 0 15px rgba(251, 191, 36, 0.2); } .neon-glow { color: #fff; box-shadow: 0 0 15px rgba(255, 255, 255, 0.2); } .block-header h2 { font-size: 22px; color: #fff; font-weight: 700; } .block-body p { font-size: 15px; line-height: 1.8; color: #cbd5e1; margin-bottom: 15px; } .styled-list { list-style: none; padding: 0; margin-top: 15px; } .styled-list li { margin-bottom: 15px; font-size: 15px; color: #cbd5e1; display: flex; align-items: flex-start; gap: 12px; line-height: 1.6; } .styled-list li i { color: var(--neon-blue); margin-top: 5px; font-size: 14px; } .feature-grid, .values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 25px; } .feature-card, .value-item { background: rgba(0,0,0,0.25); padding: 25px 20px; border-radius: 16px; border: 1px solid var(--glass-border); transition: 0.3s; } .feature-card:hover, .value-item:hover { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.1); } .feature-card i { font-size: 32px; margin-bottom: 15px; } .feature-card h3, .value-title { font-size: 17px; color: #fff; margin-bottom: 10px; font-weight: 700; display: flex; align-items: center; gap: 10px; } .value-title i { color: var(--neon-blue); font-size: 18px; } .contact-methods { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 25px; } .contact-card { display: flex; align-items: flex-start; gap: 18px; background: rgba(0,0,0,0.25); padding: 25px; border-radius: 16px; border: 1px solid var(--glass-border); transition: 0.3s; text-decoration: none; } .contact-card:hover { border-color: var(--neon-blue); background: rgba(45, 212, 191, 0.05); transform: translateY(-3px); } .contact-icon { font-size: 26px; color: #fff; background: rgba(255,255,255,0.1); width: 55px; height: 55px; display: flex; align-items: center; justify-content: center; border-radius: 50%; flex-shrink: 0; } .contact-details h3 { font-size: 18px; color: #fff; margin-bottom: 5px; } .contact-details span { font-size: 14px; color: var(--neon-blue); font-weight: 600; display: block; margin-bottom: 8px; } .contact-details p { font-size: 13.5px; line-height: 1.6; color: var(--text-muted); margin: 0; } .about-tag-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; background: rgba(45, 212, 191, 0.1); border: 1px solid rgba(45, 212, 191, 0.3); border-radius: 20px; color: var(--neon-blue); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; } /* Responsive */ @media (max-width: 850px) { .about-grid-2col { grid-template-columns: 1fr; } } @media (max-width: 768px) { .hero-heading { font-size: 28px; } .about-hero-block { padding: 40px 20px; } .about-content-block { padding: 25px; } } .block-body a{ color: var(--neon-blue); text-decoration: none; font-weight: bold; } .footer-social { display: flex; gap: 16px; margin-top: 24px; } .footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; /* پس‌زمینه نیمه‌شفاف متناسب با تم تیره وب‌سایت */ background-color: rgba(255, 255, 255, 0.05); color: #a0a0a0; text-decoration: none; transition: all 0.3s ease; border: 1px solid rgba(255, 255, 255, 0.1); } .footer-social a:hover { background-color: #ffffff; color: #121212; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1); } .footer-social a svg { width: 22px; height: 22px; /* این دستور رنگ آیکون را از ویژگی color تگ a به ارث می‌برد */ fill: currentColor; }