* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: url('./media/photo_2025-10-09_17-36-22.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    background-attachment: fixed;
}


.f35-page {

    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    direction: rtl;
}


/* هدر  */
.headmenu {
    background-color: rgba(0, 0, 0, 0.6);
    color: aliceblue;
    width: 100%;
    height: auto;
    min-height: 70px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 18px;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.name-asl h1{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
}


.menu-bala {
    font-size: 23px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 10px;
}

.menu-bala ul {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    list-style-type: none;
    gap: 30px;
}

.menu-bala ul li {
    cursor: pointer;
    transition: color 0.3s ease, transform 0.2s ease;
    padding: 8px 12px;
    border-radius: 8px;
}

.menu-bala ul li:hover {
    color: #ffd700;
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.1);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffd700;
}

/* محتوای اصلی */
.main-content {
    position: relative;
    z-index: 5;
    max-width: 1300px;
    margin: 40px auto;
    padding: 20px 30px;
    width: 100%;
}

/* عنوان اصلی صفحه */
.page-title {
    text-align: center;
    margin-bottom: 50px;
}

.page-title h1 {
    font-size: 52px;
    color: #ffd700;
    font-weight: 800;
}

.page-title p {
    color: aliceblue;
    font-size: 1.2rem;
    margin-top: 10px;
    font-style: italic;
}

/* کارت‌های اطلاعاتی */
.info-card {
    background-color: rgba(0,0,0,0.6);
    border-radius: 28px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}



.card-title {
    font-size: 34px;
    color: #ffd700;
    border-right: 5px solid #ffd700;
    padding-right: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.card-text {
    color: aliceblue;
    font-size: 17px;
    line-height: 1.85;
    text-align: justify;
}

.card-text strong {
    color: #ffd700;
}

.spec-list {
    list-style: none;
    margin-top: 20px;
}

.spec-list li {
    margin-bottom: 12px;
    padding-right: 20px;
    position: relative;
    color: aliceblue;
}

.spec-list li::before {
    content: "-";
    color: #ffd700;
    position: absolute;
    right: 0;
}

.sub-section {
    margin-top: 25px;
    padding: 15px 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    border-right: 3px solid #ffd700;
}

.sub-section h3 {
    color: #ffd700;
    font-size: 1.4rem;
    margin-bottom: 12px;
}

hr {
    margin: 20px 0;
    border-color: rgba(255, 215, 0, 0.1);
}

/* دکمه بازگشت */
.back-home {
    text-align: center;
    margin: 30px 0 20px;
}

.back-home a {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
    padding: 12px 28px;
    border-radius: 40px;
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.back-home a:hover {
    background: #ffd700;
    color: #000;

}

/* ریسپانسیو */
@media (max-width: 768px) {
    .main-content {
        padding: 15px;
    }

    .info-card {
        padding: 20px;
    }

    .card-title {
        font-size: 28px;
    }

    .headmenu {
        padding: 10px 20px;
    }

    .name-asl h1 {
        font-size: 24px;
    }

    .menu-bala {
        font-size: 20px;
    }

    .menu-bala ul {
        gap: 20px;
    }

    .page-title h1 {
        font-size: 40px;
    }

    .card-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .card-text {
        font-size: 14px;
    }

    .sub-section h3 {
        font-size: 1.2rem;
    }

    .name-asl h1 {
        font-size: 20px;
    }

    .menu-bala {
        font-size: 16px;
    }

    .menu-bala ul {
        gap: 15px;
    }

    .page-title h1 {
        font-size: 32px;
    }

    .card-title {
        font-size: 24px;
    }
}

/* اسکرول اختصاصی */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #ffd700;
    border-radius: 10px;
}