/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5cec5;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.persian-font{
    direction: rtl;
    font-family: "Lalezar";
}
.header {
    text-align: center;
    padding: 2rem 1rem;
}

.logo {
    max-width: 150px;
    height: auto;
    display: block;
    margin: 0 auto 1rem;
}

.app-name {
    font-size: 2.5rem;
    font-weight: bold;
}

.slogan {
    font-size: 1.2rem;
    color: #555;
    margin-top: 0.5rem;
}

.main-content {
    flex: 1;
    text-align: center;
    padding: 2rem 1rem;
}

.intro,
.features,
.screenshots,
.download {
    margin: 3rem 0;
}

.intro h2,
.features h2,
.screenshots h2,
.download h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.intro p,
.intro h3,
.download p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto;
}
.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    flex: 1 1 200px;
    max-width: 250px;
    background-color: #ffffff;   /* White background for feature box */
    border-radius: 15px;         /* Rounded corners */
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #DEA193;
}

.feature-card p {
    font-size: 0.95rem;
}


.screenshots-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.screenshots-container img {
    width: 200px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.screenshots-container img:hover {
    transform: scale(1.05);
}

.download-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #DEA193;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.download-btn:hover {
    background-color: #c78879;
    transform: translateY(-2px);
}

.footer {
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    color: #555;
    background-color: rgba(0, 0, 0, 0.05);
}

.separator {
    height: 1px;
    background-color: #7d7d7d;
    margin: 5rem auto;
    width: 30%;
    opacity: 0.5;
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 600px) {
    .app-name {
        font-size: 2rem;
    }

    .intro h2,
    .features h2,
    .screenshots h2,
    .download h2 {
        font-size: 1.5rem;
    }

    .features-container {
        flex-direction: column;
        align-items: center;
    }

    .screenshots-container img {
        width: 150px;
    }
}
