﻿/* ✅ لتنسيق الصفحة الرئيسية */
body {
    margin: 0;
    font-family: 'Cairo', sans-serif;
    background: linear-gradient(to bottom, #0d0d0d, #111);
    color: #f5f5f5;
    scroll-behavior: smooth;
}

section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

h2.section-title {
    color: #00bcd4;
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
}

/* (تمت إزالة .scroll-top-button لأننا استخدمنا زر جديد .scrolltop-btn في app.css) */



.scroll-top-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #00bcd4;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 999;
}

    .scroll-top-button:hover {
        background-color: #0097a7;
    }
