
/* تنظیمات عمومی صفحه */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}




a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}




body {
    font-family: 'Sans', Arial, sans-serif; /* فونت پیش‌فرض */
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Titr', sans-serif;
    color: #e60066; /* رنگ قرمز صورتی */
}

/* هدر */
header {
    background-color: #ff3366; /* قرمز صورتی */
    padding: 20px 0;
    text-align: center;
    color: white;
}

header h1 {
    font-size: 2.5em;
    margin: 0;
}

/* نوار ناوبری */
nav {
    background-color: #ff3366; /* قرمز صورتی */
    padding: 10px 0;
    text-align: center;
}

nav a {
    font-family: 'Titr', sans-serif;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    margin: 0 15px;
    font-size: 1.1em;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: #e60066; /* تغییر رنگ هنگام هاور */
}

/* بخش‌های صفحه اصلی */
.container {
    width: 80%;
    margin: 0 auto;
}

/* معرفی و هدف سایت */
section h2 {
    font-size: 2em;
    margin: 20px 0;
    text-align: center;
    font-family: 'Titr', sans-serif;
    color: #e60066; /* قرمز صورتی */
}

section p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

/* بخش‌های خاص */
section ul {
    list-style: none;
    margin: 20px 0;
}

section ul li {
    font-size: 1.1em;
    margin-bottom: 10px;
}

/* دوره‌های آموزشی */
.courses {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.course {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
}

.course h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.course p {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.course .price {
    font-size: 1.2em;
    color: #e60066; /* قرمز صورتی */
    font-weight: bold;
}

/* آلبوم عکس */
.photo-gallery {
    text-align: center;
    margin: 40px 0;
}

.photo-gallery h2 {
    font-size: 2em;
    color: #e60066;
    margin-bottom: 20px;
}

.gallery {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.gallery img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

/* تماس با ما */
.contact {
    background-color: #ffccf2;
    padding: 20px;
    margin: 40px 0;
    border-radius: 5px;
    text-align: center;
}

.contact h2 {
    font-size: 2em;
    color: #e60066;
}

.contact p {
    font-size: 1.1em;
    margin-bottom: 10px;
}

/* قوانین و مقررات */
.terms {
    text-align: center;
    margin: 40px 0;
    font-size: 1.1em;
    color: #333;
}

.terms h2 {
    font-size: 2em;
    color: #e60066;
}

/* فوتر */
footer {
    background-color: #ff3366; /* قرمز صورتی */
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

footer p {
    font-size: 1.1em;
}

/* واکنش‌گرایی - موبایل */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    .courses {
        grid-template-columns: 1fr;
    }

    .gallery img {
        width: 150px;
        height: 150px;
    }
}






