@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@100;200;300;400;500;600;700;800;900&display=swap');

@font-face {
    font-family: 'GraphikArabicBlack';
    src: url('/Fonts/GraphikArabicBlack.otf');
}

@font-face {
    font-family: 'GraphikArabicSuper';
    src: url('/Fonts/GraphikArabicSuper.otf');
}

@font-face {
    font-family: 'Shabnam-Bold';
    src: url('/Fonts/Shabnam-Bold-FD-WOL.woff');
}

::-webkit-scrollbar {
    display: none;
}

@keyframes myAnim {
    0% {
        transform: scale(0.5);
    }

    100% {
        transform: scale(1);
    }
}

html,
body {
    cursor: url('../Images/Normal.png') 10 5, auto;
}

svg,
a,
button,
[role="button"],
.clickable {
    cursor: url('../Images/Pointer.png') 8 2, pointer;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
label,
blockquote {
    cursor: url('../Images/Normal.png') 10 5, auto;
}


body {
    font-family: 'Vazirmatn', sans-serif;
    font-size: 16px;
    background-color: #121212;
    color: #F1F1F1;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* استایل هدر */
header {
    color: white;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100vw;
    height: 100px;
}

header .inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 10px;
}

.nobodychanlogo {
    width: 120px;
    height: auto;
    margin-top: 5px;
    vertical-align: middle;
}

.header-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: right;
    flex: 1;
}

header h1 {
    font-size: 1.8em;
    margin: 0;
    font-weight: bold;
    color: #ff2a8a;
    text-align: right;
    font-family: 'GraphikArabicSuper', 'Vazirmatn', sans-serif;
}

header p {
    font-size: 15px;
    margin: 5px 0 0;
    color: #ecf0f1;
    text-align: right;
    font-weight: 700;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #ff2a8a;
}

.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-left: 50px;
}

.nav-menu a {
    text-decoration: none;
    font-size: clamp(1rem, 4vw, 1.1rem);
    color: #ecf0f1;
    font-family: 'Vazirmatn', sans-serif;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
    color: #ff2a8a;
}

.footer {
    background-color: #121212;
    color: #ffffff;
    padding: 20px;
    z-index: 10;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin: 0 10px;
}

.footer-about {
    flex: 2;
    min-width: 250px;
    text-align: right;
}

.footer-about h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-family: 'GraphikArabicSuper';
}

.footer-about .highlight {
    color: #ff2a8a;
}

.footer-about p {
    font-size: 14px;
    color: #ccc;
    opacity: 70%;
    margin-bottom: 15px;
    line-height: 1.8;
    font-weight: 600;
    line-height: 1.5;
}

.social-icons {
    display: flex;
    font-size: 20px;
    color: white;
}

.social-icons a {
    margin-left: 10px;
    cursor: pointer;
    transition: color 0.3s;
}

.social-icons a svg path {
    opacity: 70%;
}

.social-icons a:hover svg path {
    fill: #ff2a8a;
    opacity: 100%;
    transition: all 0.5s ease;
    transition: opacity 0.1s ease-in-out;
}

.footer-bottom {
    text-align: center;
    color: #aaa;
    font-size: 14px;
    margin-top: 5px;
    border-top: 1px solid #8b797981;
    padding-top: 15px;
    direction: ltr;
}

.container {
    padding: 50px;
    height: auto;
    width: 90%;
    margin: 0 auto;
    border-radius: 25px;
    position: relative;
}

.container h2 {
    font-family: 'GraphikArabicBlack';
    margin-top: 40px;
}

main img {
    z-index: 1;
    width: 90%;
    height: auto;
    margin: 0px auto;
    border-radius: 30px;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        /* زیر هدر */
        left: 0;
        width: 100%;
        background-color: #181818;
        padding: 1rem 0;
        z-index: 1000;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-right: 0;
        margin-left: 0;
        padding: 0;
        list-style: none;
    }

    .nav-menu a {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {

    header {
        width: 100vw;
        height: 80px;
    }

    header .inner {
        margin: 0 5px;
    }

    .nobodychanlogo {
        width: 90px;
        height: auto;
    }

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

    header p {
        margin: 5px 0 0;
        font-size: 0.6em;
    }


    .footer-about h3 {
        font-size: 19px;
    }

    .footer-about p {
        font-size: 13px;
    }

    .footer-bottom {
        font-size: 12px;
    }

    .container {
        padding: 40px;
        height: auto;
        width: 74%;
        margin: 20px auto;
        border-radius: 25px;
        font-size: small;
    }

    main img {
        width: 300px;
        height: auto;
        margin: 0 auto;
    }

}