/* =====================================================
   Mohamed Ramadan Official Website - Main Stylesheet
   المطور: شركة مصطفى علوان - https://mostafaelwan.com
   التاريخ: 2025
===================================================== */

/* =====================================================
   CSS Variables - المتغيرات
===================================================== */
:root {
    --primary-black: #000000;
    --secondary-black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --light-gray: #2a2a2a;
    --border-color: #333333;
    --gold: #D4AF37;
    --gold-hover: #F4D03F;
    --white: #ffffff;
    --text-gray: #cccccc;
    --success: #22c55e;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    --navbar-height: 80px;
}

/* =====================================================
   Global Styles - الأنماط العامة
===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', Arial, sans-serif;
    background: var(--primary-black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

body.ar {
    direction: rtl;
    text-align: right;
}

body.en {
    direction: ltr;
    text-align: left;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Spacing */
section {
    padding: 80px 0;
}

/* =====================================================
   Typography - الطباعة
===================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

p {
    margin-bottom: 15px;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =====================================================
   Navigation - القائمة الرئيسية
===================================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-gray);
    font-weight: 600;
    font-size: 15px;
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

body.ar .nav-link::after {
    left: auto;
    right: 0;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.lang-switcher {
    background: var(--dark-gray);
    border: 2px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 8px;
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-switcher:hover {
    border-color: var(--gold);
    background: var(--light-gray);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: var(--gold);
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    color: var(--primary-black);
    font-size: 20px;
}

/* Mobile Menu */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        transition: right 0.3s ease;
        border-left: 1px solid var(--border-color);
    }
    
    body.ar .nav-menu {
        right: auto;
        left: -100%;
        border-left: none;
        border-right: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    body.ar .nav-menu.active {
        left: 0;
        right: auto;
    }
    
    .nav-link {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }
}

/* =====================================================
   Hero Section - القسم الرئيسي
===================================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 24px;
    color: var(--text-gray);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-content .btn {
    animation: fadeInUp 1s ease 0.4s backwards;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 42px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
}

/* =====================================================
   Buttons - الأزرار
===================================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--gold);
    color: var(--primary-black);
}

.btn-primary:hover {
    background: var(--gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--primary-black);
}

/* =====================================================
   Section Title - عنوان القسم
===================================================== */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* =====================================================
   Cards Grid - شبكة الكروت
===================================================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.card {
    background: var(--secondary-black);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.card-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.card:hover .card-overlay {
    opacity: 1;
}

.play-btn {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-size: 24px;
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--gold-hover);
}

.card-content {
    padding: 20px;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.card-description {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    color: var(--text-gray);
    font-size: 13px;
    margin-bottom: 15px;
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-meta i {
    color: var(--gold);
}

.card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gold);
    color: var(--primary-black);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.card-btn:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--primary-black);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
}

body.ar .featured-badge {
    right: auto;
    left: 15px;
}

/* =====================================================
   Music Links - روابط الموسيقى
===================================================== */
.music-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.music-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 8px;
    font-size: 20px;
    transition: all 0.3s ease;
    color: var(--white);
}

.music-link:hover {
    transform: translateY(-3px);
}

.music-link.youtube {
    background: #FF0000;
}

.music-link.spotify {
    background: #1DB954;
}

.music-link.anghami {
    background: #A626D3;
}

/* =====================================================
   Work Type Badge - نوع العمل
===================================================== */
.work-type {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

body.ar .work-type {
    left: auto;
    right: 15px;
}

/* =====================================================
   Footer - التذييل
===================================================== */
.footer {
    background: var(--secondary-black);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-section p {
    color: var(--text-gray);
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    padding-right: 5px;
}

body.en .footer-links a:hover {
    padding-right: 0;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--dark-gray);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--primary-black);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 18px;
    background: var(--dark-gray);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--white);
    font-family: 'Cairo', Arial, sans-serif;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--gold);
}

.newsletter-btn {
    padding: 12px 24px;
    background: var(--gold);
    color: var(--primary-black);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--gold-hover);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-gray);
}

.footer-bottom a {
    color: var(--gold);
    font-weight: 700;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* =====================================================
   Loading Overlay - شاشة التحميل
===================================================== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.loading-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--border-color);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* =====================================================
   Scroll to Top - زر الصعود
===================================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 999;
}

body.ar .scroll-top {
    right: auto;
    left: 30px;
}

.scroll-top.active {
    opacity: 1;
    pointer-events: all;
}

.scroll-top:hover {
    background: var(--gold-hover);
    transform: translateY(-5px);
}

/* =====================================================
   Page Header - رأس الصفحة الداخلية
===================================================== */
.page-header {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    padding: 80px 0 60px;
    text-align: center;
    margin-top: var(--navbar-height);
}

.page-header h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: var(--text-gray);
}

/* =====================================================
   SoundCloud Style Music Player - مشغل الموسيقى
===================================================== */
.music-section {
    padding: 60px 0;
}

.soundcloud-track {
    background: var(--secondary-black);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.soundcloud-track:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.track-main {
    display: flex;
    gap: 20px;
    align-items: center;
}

.track-artwork {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.track-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.track-artwork:hover .play-overlay {
    opacity: 1;
}

.play-btn-icon {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-size: 20px;
}

.track-info {
    flex: 1;
    min-width: 0;
}

.track-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.track-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.featured-tag {
    background: var(--gold);
    color: var(--primary-black);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.track-artist {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 12px;
}

.track-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.track-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-gray);
    font-size: 13px;
}

.track-stat i {
    color: var(--gold);
}

.track-description {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.track-platforms {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.platform-btn {
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.platform-btn:hover {
    transform: translateY(-2px);
}

.platform-btn.youtube {
    background: #FF0000;
    color: var(--white);
}

.platform-btn.spotify {
    background: #1DB954;
    color: var(--white);
}

.platform-btn.anghami {
    background: #A626D3;
    color: var(--white);
}

.waveform-placeholder {
    height: 60px;
    background: linear-gradient(90deg, var(--dark-gray) 0%, var(--light-gray) 50%, var(--dark-gray) 100%);
    border-radius: 8px;
    margin: 15px 0;
    position: relative;
    overflow: hidden;
}

.waveform-bars {
    display: flex;
    align-items: flex-end;
    height: 100%;
    gap: 2px;
    padding: 10px;
}

.waveform-bar {
    flex: 1;
    background: var(--gold);
    opacity: 0.3;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.waveform-bar:nth-child(odd) {
    height: 60%;
}

.waveform-bar:nth-child(even) {
    height: 80%;
}

.waveform-bar:nth-child(3n) {
    height: 40%;
}

.soundcloud-track:hover .waveform-bar {
    opacity: 0.6;
}

/* =====================================================
   Empty State - حالة فارغة
===================================================== */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-gray);
}

.empty-state i {
    font-size: 72px;
    color: var(--border-color);
    margin-bottom: 25px;
}

.empty-state h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--white);
}

.empty-state p {
    font-size: 16px;
    margin-bottom: 25px;
}

/* =====================================================
   Alerts - التنبيهات
===================================================== */
.alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.alert i {
    font-size: 20px;
}

.alert-success {
    background: rgba(34, 197, 94, 0.15);
    border: 2px solid rgba(34, 197, 94, 0.4);
    color: var(--success);
}

.alert-error {
    background: rgba(239, 68, 68, 0.15);
    border: 2px solid rgba(239, 68, 68, 0.4);
    color: var(--danger);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.15);
    border: 2px solid rgba(245, 158, 11, 0.4);
    color: var(--warning);
}

.alert-info {
    background: rgba(59, 130, 246, 0.15);
    border: 2px solid rgba(59, 130, 246, 0.4);
    color: var(--info);
}

/* =====================================================
   Forms - النماذج
===================================================== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--white);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: var(--dark-gray);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    color: var(--white);
    font-family: 'Cairo', Arial, sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--light-gray);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* =====================================================
   Concert Info - معلومات الحفل
===================================================== */
.concert-info {
    margin: 20px 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-gray);
}

.info-item i {
    color: var(--gold);
    width: 20px;
}

.countdown {
    background: var(--dark-gray);
    border: 2px solid var(--gold);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    margin: 20px 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
}

/* =====================================================
   Gallery - المعرض
===================================================== */
.gallery-image {
    height: 300px;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =====================================================
   Contact Page - صفحة التواصل
===================================================== */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info-box {
    background: var(--secondary-black);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
}

.contact-info-box h3 {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    color: var(--gold);
    font-size: 24px;
    width: 40px;
}

.contact-form {
    background: var(--secondary-black);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 40px;
}

/* =====================================================
   News Single - صفحة الخبر الكامل
===================================================== */
.news-single-section {
    padding: 80px 0;
    margin-top: var(--navbar-height);
}

.news-container {
    max-width: 900px;
    margin: 0 auto;
}

.news-header {
    text-align: center;
    margin-bottom: 40px;
}

.news-header h1 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.3;
}

.news-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.news-image img {
    width: 100%;
    height: auto;
    display: block;
}

.news-content {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 50px;
}

.news-content p {
    margin-bottom: 20px;
}

.share-section {
    background: var(--secondary-black);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 60px;
}

.share-section h3 {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 20px;
}

.share-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.copy {
    background: var(--gold);
    color: var(--primary-black);
}

.related-news {
    margin-top: 80px;
}

.related-news h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* =====================================================
   Animations - الحركات
===================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* =====================================================
   RTL Fixes - إصلاحات العربي
===================================================== */

/* عكس اتجاه الأيقونات في العربي */
body.ar i.fa-arrow-left,
body.ar i.fa-arrow-right,
body.ar i.fa-chevron-left,
body.ar i.fa-chevron-right,
body.ar i.fa-angle-left,
body.ar i.fa-angle-right,
body.ar i.fa-caret-left,
body.ar i.fa-caret-right,
body.ar i.fa-long-arrow-alt-left,
body.ar i.fa-long-arrow-alt-right {
    transform: scaleX(-1);
    display: inline-block;
}

/* تثبيت الأيقونات في الـ flex containers */
body.ar .track-stat i,
body.ar .card-meta i,
body.ar .info-item i,
body.ar .contact-item i {
    margin-left: 0;
    margin-right: 0;
}

/* إصلاح محاذاة الأيقونات */
body.ar .platform-btn i,
body.ar .card-btn i,
body.ar .btn i {
    margin-left: 0;
    margin-right: 0;
}

/* =====================================================
   Responsive Design - التصميم المتجاوب
===================================================== */

/* Tablets */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 52px;
    }
}

/* Mobile - Cards Grid - 2 كروت جنب بعض */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }
    
    .page-header p {
        font-size: 14px;
    }
    
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Card Image */
    .card-image {
        height: 150px;
    }
    
    /* Card Content */
    .card-content {
        padding: 12px;
    }
    
    /* Card Title */
    .card-title {
        font-size: 14px;
        line-height: 1.3;
        margin-bottom: 6px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    /* Card Description */
    .card-description {
        font-size: 12px;
        line-height: 1.4;
        -webkit-line-clamp: 2;
        margin-bottom: 8px;
    }
    
    /* Card Meta */
    .card-meta {
        flex-direction: column;
        gap: 5px;
        font-size: 11px;
    }
    
    .card-meta span {
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    /* Card Button */
    .card-btn {
        padding: 8px 12px;
        font-size: 12px;
        width: 100%;
        justify-content: center;
    }
    
    /* Music Links */
    .music-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    
    .music-link {
        font-size: 16px;
        padding: 8px;
    }
    
    /* Featured Badge */
    .featured-badge {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    /* Work Type Badge */
    .work-type {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    /* SoundCloud Track */
    .track-main {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .track-artwork {
        width: 100%;
        height: 200px;
    }
    
    .track-stats {
        flex-wrap: wrap;
    }
    
    .track-platforms {
        width: 100%;
    }
    
    .platform-btn {
        flex: 1;
        justify-content: center;
    }
    
    /* Concert Info */
    .concert-info {
        font-size: 13px;
    }
    
    .countdown {
        font-size: 14px;
        padding: 10px;
    }
    
    /* News Card */
    .news-card .card-image {
        height: 140px;
    }
    
    /* Gallery Card */
    .gallery-image {
        height: 180px;
    }
    
    /* Hero Content */
    .hero-content h1 {
        font-size: 42px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    /* News Single */
    .news-header h1 {
        font-size: 28px;
    }
    
    .news-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .news-content {
        font-size: 16px;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .card {
        padding: 12px;
    }
    
    .card-image {
        height: 120px;
    }
    
    .card-title {
        font-size: 13px;
    }
    
    .card-description {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
}

@media (max-width: 380px) {
    .card-image {
        height: 110px;
    }
    
    .card-title {
        font-size: 12px;
    }
}

/* =====================================================
   Print Styles - أنماط الطباعة
===================================================== */
@media print {
    .navbar,
    .footer,
    .scroll-top,
    .btn,
    .share-buttons {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* =====================================================
   View All Button Center Fix - إصلاح زر عرض الكل
===================================================== */

.text-center {
    text-align: center !important;
    display: block;
    width: 100%;
}

.view-all-container {
    text-align: center;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--gold);
    color: var(--primary-black);
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-btn:hover {
    background: var(--gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.hero-btn i {
    transition: transform 0.3s ease;
}

.hero-btn:hover i {
    transform: translateX(5px);
}

body.ar .hero-btn:hover i {
    transform: translateX(-5px);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .hero-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

