/* Reset */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Cairo", "Segoe UI", Tahoma, sans-serif;
}


body {
    background: #f5f7fa;
    color: #222;
    transition: background 0.3s, color 0.3s;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.logo-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e3a5f; /* أزرق داكن مستوحى من الشعار */
    line-height: 1.2;
    font-size: 2.2rem; /* ⬅️ كبر الحجم هنا */
}

.logo-title .english {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-right: 10px;
    font-size: 1.2rem; /* ⬅️ كبر الحجم هنا */
    background: linear-gradient(135deg, #f2c94c, #c9a227);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Logo */
.logo img {
    width: 80px;
    height: 80px;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.logo img:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 12px rgba(33,150,243,0.6));
}

/* Navigation */
.nav a {
    margin-right: 20px;
    text-decoration: none;
    color: #1976d2;
    font-weight: 500;
}

/* Content */
.content {
    padding: 60px;
    text-align: center;
}

button {
    margin-top: 30px;
    padding: 10px 20px;
    background: #1976d2;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* Dark Mode */
body.dark {
    background: #121212;
    color: #f1f1f1;
}

body.dark .header {
    background: #1e1e1e;
}

body.dark .nav a {
    color: #90caf9;
}