@font-face {
    font-family: "Vazir";
    src: url("Vazir-Medium.ttf"),
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Background styling */
body,
html {
    font-family: "Vazir", 'Arial', sans-serif;
    height: 100%;
    background: linear-gradient(135deg, #d4d7f4, #e5e6f7);
    overflow: hidden;
}

a {
    text-decoration: none;
}

.background {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('img/background-image.jpg');
    background-size: cover;
    background-position: center;
}

.card {
    width: 90%;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.mockup img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    height: 100%;
}

.text {
    height: 100%;
    direction: rtl;
}

.text h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.logo {
    max-width: 200px;
}

.text p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

button {
    padding: 10px 20px;
    font-size: 1rem;
    font-family: "Vazir", 'Arial', sans-serif;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.download img {
    margin-right: 5px;
}

.download {
    background: linear-gradient(-135deg, #dcb051, #DCD1E5);
    display: flex;
}

.web-version img {
    margin-right: 5px;
}

.web-version {
    background: linear-gradient(135deg, #dcb051, #DCD1E5);
    display: flex;
}

.windows-version img {
    margin-right: 5px;
}

.windows-version {
    background: linear-gradient(135deg, #dcb051, #DCD1E5);
    display: flex;
}



button:hover {
    opacity: 0.9;
}

.mobile-mockup {
    display: none;
}

@media (max-width: 700px) {

    .download {
        font-size: 10px;
    }

    .web-version {
        font-size: 10px;
    }

    .windows-version {
        font-size: 10px;
    }

    .download img {
        width: 15px;
    }

    .web-version img {
        width: 15px;
    }

    .windows-version img {
        width: 15px;
    }
}

@media (max-width: 700px) {
    .mobile-mockup {
        display: block;

    }

    .mockup {
        display: none;
    }

    .card {
        flex-direction: column;
        height: 90%;
        align-items: center;
        justify-content: space-around;
        padding: 0px 0px 0px 0px;
    }

    .download {
        font-size: 10px;
    }

    .web-version {
        font-size: 10px;
    }

    .windows-version {
        font-size: 10px;
    }

    .download img {
        width: 15px;
    }

    .web-version img {
        width: 15px;
    }

    .windows-version img {
        width: 15px;
    }
}