* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Tahoma, Arial, sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.8;
}

html {
  scroll-behavior: smooth;
}

.navbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background-color: #0a0a0a;
  border-bottom: 1px solid #d4af37;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #d4af37;
  letter-spacing: 2px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 17px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #d4af37;
}

.hero {
  position: relative;
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.75)),
              url("https://images.unsplash.com/photo-1517836357463-d25dfeac3438?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 52px;
  color: #d4af37;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 22px;
  color: #f2f2f2;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 18px;
  transition: 0.3s;
  font-weight: bold;
}

.gold-btn {
  background-color: #d4af37;
  color: #000;
}

.gold-btn:hover {
  background-color: #f0c95a;
}

.outline-btn {
  border: 2px solid #d4af37;
  color: #d4af37;
  background-color: transparent;
}

.outline-btn:hover {
  background-color: #d4af37;
  color: #000;
}

.about,
.features,
.contact {
  padding: 80px 20px;
  text-align: center;
  max-width: 1200px;
  margin: auto;
}

.about h2,
.features h2,
.contact h2 {
  color: #d4af37;
  font-size: 36px;
  margin-bottom: 20px;
}

.about p,
.contact p {
  max-width: 800px;
  margin: auto;
  font-size: 20px;
  color: #ddd;
}

.cards {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.card {
  background-color: #111;
  border: 1px solid #d4af37;
  border-radius: 12px;
  padding: 30px 20px;
  width: 300px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.35);
}

.card h3 {
  color: #d4af37;
  margin-bottom: 15px;
  font-size: 24px;
}

.card p {
  color: #ddd;
  font-size: 17px;
}

#startBtn {
  margin-top: 25px;
  padding: 15px 35px;
  font-size: 18px;
  font-weight: bold;
  background-color: #d4af37;
  color: #000;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

#startBtn:hover {
  background-color: #f0c95a;
  transform: scale(1.05);
}

footer {
  text-align: center;
  padding: 25px;
  background-color: #0a0a0a;
  border-top: 1px solid #d4af37;
  color: #bbb;
  font-size: 15px;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .about h2,
  .features h2,
  .contact h2 {
    font-size: 28px;
  }
}
.form-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #000000, #111111, #1a1a1a);
  padding: 20px;
}

.form-box {
  width: 100%;
  max-width: 450px;
  background-color: #0d0d0d;
  border: 1px solid #d4af37;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.15);
  text-align: center;
}

.form-box h1 {
  color: #d4af37;
  margin-bottom: 10px;
  font-size: 34px;
}

.form-box p {
  color: #ddd;
  margin-bottom: 25px;
  font-size: 17px;
}

.form-box form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-box input {
  width: 100%;
  padding: 14px;
  border: 1px solid #444;
  border-radius: 10px;
  background-color: #111;
  color: #fff;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
}

.form-box input:focus {
  border-color: #d4af37;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
}

.form-box button {
  padding: 14px;
  background-color: #d4af37;
  color: #000;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.form-box button:hover {
  background-color: #f0c95a;
}

.form-links {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-links a {
  color: #d4af37;
  text-decoration: none;
  font-size: 15px;
}

.form-links a:hover {
  text-decoration: underline;
}
/* =========================
   مميزات البرنامج
========================= */
.features {
  padding: 80px 20px;
  max-width: 1000px;
  margin: auto;
}

.features h2 {
  text-align: center;
  color: #d4af37;
  font-size: 36px;
  margin-bottom: 35px;
}

.feature-item {
  max-width: 800px;
  margin: 18px auto;
  border: 1px solid #d4af37;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(145deg, #0b0b0b, #151515);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.12);
}

.feature-btn {
  width: 100%;
  background: transparent;
  color: #d4af37;
  border: none;
  padding: 20px 24px;
  font-size: 20px;
  font-weight: bold;
  text-align: right;
  cursor: pointer;
  transition: 0.3s ease;
}

.feature-btn:hover {
  background-color: rgba(212, 175, 55, 0.08);
}


/* =========================
   الهدف من البرنامج
========================= */
.goal {
  padding: 80px 20px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.goal h2 {
  color: #d4af37;
  font-size: 36px;
  margin-bottom: 30px;
}

.goal p {
  max-width: 820px;
  margin: auto;
  padding: 30px;
  color: #f3f3f3;
  font-size: 19px;
  line-height: 2;
  background: linear-gradient(145deg, #0b0b0b, #151515);
  border: 1px solid #d4af37;
  border-radius: 18px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.12);
}

/* =========================
   قصص من البرنامج
========================= */
.stories {
  padding: 80px 20px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
  border: none; /* 👈 احذف الإطار */
  background: none;
  box-shadow: none;
}

.stories h2 {
  color: #d4af37;
  font-size: 36px;
  margin-bottom: 35px;
}

.story {
  border: none;
  background: none;
  box-shadow: none;
}

.story h3 {
  color: #d4af37;
  font-size: 26px;
  margin-bottom: 18px;
}

.story p {
  color: #e9e9e9;
  font-size: 17px;
  line-height: 2;
  margin-bottom: 12px;
}

/* =========================
   للجوال
========================= */
@media (max-width: 768px) {
  .features h2,
  .goal h2,
  .stories h2 {
    font-size: 28px;
  }

  .feature-btn {
    font-size: 18px;
    padding: 18px 16px;
  }

  .feature-content {
    padding: 0 16px 18px;
    font-size: 16px;
  }

  .goal p,
  .story {
    padding: 22px 18px;
  }

  .goal p,
  .story p {
    font-size: 16px;
  }

  .story h3 {
    font-size: 22px;
  }
}
/* =========================
   Dashboard
========================= */
.dashboard-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #000000, #0d0d0d, #151515);
  padding: 50px 20px;
}

.dashboard-container {
  max-width: 1200px;
  margin: auto;
}

.dashboard-header {
  text-align: center;
  margin-bottom: 40px;
}

.dashboard-header h1 {
  color: #d4af37;
  font-size: 40px;
  margin-bottom: 10px;
}

.dashboard-header p {
  color: #ddd;
  font-size: 18px;
}

.dashboard-cards {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.dashboard-card {
  background: linear-gradient(145deg, #0b0b0b, #151515);
  border: 1px solid #d4af37;
  border-radius: 18px;
  padding: 30px 25px;
  width: 320px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.12);
  text-align: center;
}

.dashboard-card h2 {
  color: #d4af37;
  margin-bottom: 15px;
  font-size: 26px;
}

.dashboard-card p {
  color: #e5e5e5;
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.dashboard-btn {
  display: inline-block;
  text-decoration: none;
  background-color: #d4af37;
  color: #000;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: bold;
  transition: 0.3s;
}

.dashboard-btn:hover {
  background-color: #f0c95a;
  transform: translateY(-2px);
}

.disabled-btn {
  pointer-events: none;
  opacity: 0.6;
}

.logout-btn {
  background-color: #222;
  color: #d4af37;
  border: 1px solid #d4af37;
}

.logout-btn:hover {
  background-color: #d4af37;
  color: #000;
}

@media (max-width: 768px) {
  .dashboard-header h1 {
    font-size: 30px;
  }

  .dashboard-header p {
    font-size: 16px;
  }

  .dashboard-card {
    width: 100%;
    max-width: 360px;
  }
}
/* زر إرسال البيانات */

.form-box button {
  width: 100%;
  padding: 14px;
  background-color: #d4af37;
  color: #000;
  border: none;
  border-radius: 10px;
  font-size: 17px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.form-box button:hover {
  background-color: #f0c95a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212,175,55,0.3);
}


/* روابط أسفل الفورم */

.form-links {
  margin-top: 20px;
  text-align: center;
}

.form-links a {
  color: #d4af37;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.form-links a:hover {
  color: #f0c95a;
  text-decoration: underline;
}
input[type="email"],
input[type="password"] {
  color: #FFD700;
}

