/* Custom CSS Variables */
:root {
    --bg-dark-primary: #0e123a;
    --bg-dark-secondary: rgb(10 13 44 / 1);
    --accent-color: #eea326;
    --text-light: #f0f2f5;
    --text-muted: #a0a8b4;
    --border-color: #2b3050;
}

/* General Styling */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark-primary);
    color: var(--text-light);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 2rem;
    box-sizing: border-box;
    overflow-x: hidden;
    position: relative;
}

/* --- Custom Scrollbar Styling --- */

/* للتحكم في عرض شريط التمرير بالكامل */
::-webkit-scrollbar {
    width: 8px; /* يمكنك تعديل عرض الشريط حسب رغبتك */
}

/* لتنسيق مسار شريط التمرير (الخلفية) */
::-webkit-scrollbar-track {
    background: transparent; /* يجعل الخلفية شفافة تماماً */
}

/* لتنسيق الشريط نفسه (الجزء المتحرك) */
::-webkit-scrollbar-thumb {
    background-color: var(--accent-color); /* --accent-color استخدام نفس اللون الأصفر المتغير */
    border-radius: 20px; /* لجعل حواف الشريط دائرية */
}

/* Background Glow Effect */
.background-glow {
    content: '';
    position: fixed;
    border-radius: 50%;
    filter: blur(250px);
    z-index: -1;
    pointer-events: none;
    width: 500px;
    height: 500px;
    background-color: var(--accent-color);
    top: -20%;
    left: -20%;
    animation: float 25s infinite ease-in-out;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(100vw, 100vh) scale(1.5); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Main Container */
.container {
    width: 100%;
    max-width: 1000px;
    z-index: 1;
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header Styling */
.header {
    margin-bottom: 4rem;
}

.main-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.5rem;
    color: var(--accent-color);
    margin: 0;
    letter-spacing: 2px;
}

.coming-soon {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 6px;
    opacity: 0.9;
    text-transform: uppercase;
}

/* Projects Section */
.projects-section {
    width: 100%;
}

.projects-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    margin-bottom: 2rem;
}

/* Projects Grid Layout */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Project Card Styling */
.project-card {
    background-color: var(--bg-dark-secondary);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 150px;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(238, 163, 38, 0.2);
}

.project-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.project-link {
    background-color: var(--accent-color);
    color: var(--bg-dark-primary);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.project-link:hover {
    background-color: #ffffff;
    transform: scale(1.05);
}

.status {
    color: var(--text-muted);
    font-style: italic;
    font-size: 1rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }
    .coming-soon {
        font-size: 1rem;
    }
    .projects-title {
        font-size: 2.2rem;
    }
    .project-card h3 {
        font-size: 1.3rem;
    }
}