/* خطوط وخلفية عامة */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap');

body {
    font-family: 'Cairo', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #e63946, #d62828);
    color: #fff;
}

/* الهيدر */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: rgba(0,0,0,0.4);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

header .logo img {
    width: 50px;
    height: auto;
    border-radius: 8px;
    cursor: pointer; /* يظهر مؤشر اليد عند المرور على الصورة */
}

header .logo h1 {
    font-size: 28px;
    margin: 0;
}

header nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
    transition: 0.3s;
}

header nav a:hover {
    color: #f77f00;
}

/* قسم الترحيب */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px;
}

.hero-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* أزرار التواصل */
.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.social i {
    font-size: 20px;
}

/* ألوان الأزرار */
.social.tiktok {
    background-color: #000;
    color: #fff;
}

.social.tiktok:hover {
    background-color: #111;
}

.social.whatsapp {
    background-color: #25D366;
    color: #fff;
}

.social.whatsapp:hover {
    background-color: #1ebe5d;
}

/* قسم عن المتجر */
.about {
    background-color: rgba(0,0,0,0.5);
    margin: 40px 20px;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.about h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffe5e0;
}

.about p {
    font-size: 18px;
    line-height: 1.6;
}

/* قسم التواصل */
.contact {
    text-align: center;
    margin: 40px 20px;
}

.contact h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* الفوتر */
footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    background-color: rgba(0,0,0,0.4);
}