/* --- Reset ساده --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Vazir', sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* --- هدر --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #4A90E2;
    color: #fff;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
}

header nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    padding: 8px 12px;
    transition: background 0.3s;
}

header nav a.btn {
    background-color: #F5A623;
    border-radius: 8px;
    font-weight: bold;
}

header nav a:hover {
    background-color: #50E3C2;
}

/* --- Hero Section --- */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(to right, #50E3C2, #4A90E2);
    color: #fff;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero .btn {
    background-color: #F5A623;
    color: #fff;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
}

.hero .btn:hover {
    background-color: #fff;
    color: #4A90E2;
}

/* --- مسیرها (Paths) --- */
.paths {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 60px 20px;
    flex-wrap: wrap;
}

.path-card {
    flex: 1 1 300px;
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.path-card:hover {
    transform: translateY(-10px);
}

.path-card.kids {
    border-top: 5px solid #F5A623;
}

.path-card.adults {
    border-top: 5px solid #4A90E2;
}

.path-card h2 {
    margin-bottom: 15px;
    font-size: 24px;
}

.path-card p {
    margin-bottom: 20px;
}

.path-card a.btn {
    background-color: #4A90E2;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
}

.path-card a.btn:hover {
    background-color: #50E3C2;
}

/* --- Modes Section --- */
.modes {
    text-align: center;
    padding: 60px 20px;
}

.modes h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.modes p {
    font-size: 18px;
    margin-bottom: 20px;
}

.modes .btn {
    background-color: #F5A623;
    color: #fff;
    padding: 10px 25px;
    border-radius: 10px;
    text-decoration: none;
}

.modes .btn:hover {
    background-color: #fff;
    color: #4A90E2;
}

/* --- Advantages --- */
.advantages {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 60px 20px;
    flex-wrap: wrap;
}

.advantages .adv {
    flex: 1 1 200px;
    background-color: #50E3C2;
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: bold;
    transition: transform 0.3s;
}

.advantages .adv:hover {
    transform: translateY(-5px);
}

/* --- Footer --- */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* --- ریسپانسیو --- */
@media (max-width: 768px) {
    .paths, .advantages {
        flex-direction: column;
        align-items: center;
    }
}
