@font-face {
    font-family: 'iran yekan';
    src: url(../font/IRANYekanX-Regular.woff2);
}

@font-face {
    font-family: 'iran yekan bold';
    src: url(../font/IRANYekanX-Bold.woff2);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'iran yekan';
}

body {
    background:
        radial-gradient(circle at top right, #2563eb22, transparent 40%),
        radial-gradient(circle at bottom left, #7c3aed22, transparent 40%),
        #f8fafc;

    color: #1e293b;
    min-height: 100vh;
}

/* =====================
        NAVBAR
===================== */

.navbar {
    width: 90%;
    max-width: 1300px;
    margin: 25px auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px 35px;

    background: linear-gradient(135deg,
            rgba(37, 99, 235, .9),
            rgba(124, 58, 237, .9));

    backdrop-filter: blur(15px);

    border-radius: 18px;

    box-shadow:
        0 10px 30px rgba(37, 99, 235, .25);
}

.logo {
    color: white;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.menu {
    display: flex;
    gap: 15px;
}

.menu a {
    text-decoration: none;
    color: white;

    padding: 10px 18px;

    border-radius: 10px;

    transition: .35s;
}

.menu a:hover {
    background: rgba(255, 255, 255, .15);
    transform: translateY(-3px);
}

/* =====================
        HERO
===================== */

.hero {
    width: 90%;
    max-width: 1300px;
    margin: auto;

    min-height: 75vh;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 70px;
}

.hero-content {
    flex: 1;
}

#user {
    display: inline-block;

    background: #dbeafe;

    color: #1d4ed8;

    padding: 10px 20px;

    border-radius: 30px;

    margin-bottom: 25px;

    font-weight: 600;
}

.hero-content h1 {
    font-size: 3.3rem;
    line-height: 1.5;

    margin-bottom: 25px;

    color: #0f172a;
}

.hero-content p {
    font-size: 1.1rem;

    line-height: 2.2;

    color: #475569;

    margin-bottom: 25px;
}

/* =====================
       BUTTON
===================== */

.btn11 {
    border: none;

    cursor: pointer;

    padding: 15px 30px;

    border-radius: 12px;

    color: white;

    font-size: 1rem;

    background:
        linear-gradient(135deg,
            #2563eb,
            #7c3aed);

    transition: .3s;
}

.btn11:hover {
    transform: translateY(-4px);

    box-shadow:
        0 10px 25px rgba(37, 99, 235, .3);
}

#Test2 {
    margin-top: 20px;
    color: #2563eb;
    font-weight: 600;
}

/* =====================
        IMAGE
===================== */

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {

    width: 400px;
    height: 400px;

    object-fit: cover;

    border-radius: 30px;

    border: 6px solid white;

    box-shadow:
        0 25px 50px rgba(0, 0, 0, .15);
}

/* =====================
       FOOTER
===================== */

footer {

    margin-top: 80px;

    padding: 25px;

    text-align: center;

    background: #0f172a;

    color: white;
}

/* =====================
      RESPONSIVE
===================== */

@media(max-width:900px) {

    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding: 50px 0;
    }

    .hero-content h1 {
        font-size: 2.3rem;
    }

    .hero-image img {
        width: 280px;
        height: 280px;
    }

    .navbar {
        flex-direction: column;
        gap: 20px;
    }

    .menu {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media(max-width:500px) {

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .menu {
        gap: 8px;
    }

    .menu a {
        font-size: .9rem;
        padding: 8px 12px;
    }
}