/* استایل صفحه اصلی */
body {
    font-family: 'Vazir', Arial, sans-serif;
    margin:0;
    padding:0;
    background: linear-gradient(to bottom right, #6a11cb, #2575fc);
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
}

.home-container {
    text-align:center;
}

.home-container h1 {
    font-size:2.5em;
    color:white;
    margin-bottom:50px;
}

/* دکمه‌ها */
.button {
    display:block;
    margin:20px auto;
    padding:20px 40px;
    font-size:1.2em;
    color:white;
    background:#ff6b6b;
    text-decoration:none;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.3);
    transition:0.3s;
    width:200px;
}

.button:hover {
    transform: translateY(-3px);
    background:#ff4757;
}

/* واکنشگرایی برای موبایل */
@media (max-width:600px){
    .home-container h1 { font-size:2em; }
    .button { width:80%; padding:15px 0; font-size:1em; }
}

/* نوار بالا */
.top-bar {
    width: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.top-bar .logo {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

.nav-links a {
    margin-left: 15px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* فاصله محتوای صفحه از نوار بالا */
.home-container {
    margin-top: 90px;
    text-align: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 80px;
  height: 40px;
}

.logo-text {
  font-size: 22px;
  font-weight: bold;
  color: white;
}

