/*
Theme Name: Flopsy Theme
Theme URI: https://flopsy.ir/
Version: 0.1
Author: Flopsy
Author URI: https://flopsy.ir/
Description: A Minimal Theme.
Tags: minimal, simple, responsive, light-weight
Text Domain: flopsy
*/

body, h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
}

nav {
    position: sticky;
    top: 0;
    background: var(--cp2-50);
    z-index: 1;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
}

.nav-container h1 {
    margin: 0;
    font-size: 20px;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.nav-container a {
    color: var(--icon-color);
}

.main-logo {
    width: 170px;
    background: var(--cp2-300);
    border-radius: 40px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    padding: 0 30px;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: var(--cp2-50);
        border-bottom: 2px solid var(--cp2-400);
        position: absolute;
        top: 53px;
        left: 0;
        width: 100%;
        padding: 1rem 2rem;
    }

    .nav-links.active {
        display: flex;
        animation: fadein 0.3s;
    }

    .hamburger {
        display: block;
    }
}

.section-header {
    font-weight: 600;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.hero {
    text-align: center;
    padding: 60px 20px;
}

.screenshot {
    display: block;
    justify-self: center;
    margin-top: 40px;
    border-radius: 20px;
    border: 1px solid var(--cp2-400);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-items: center;
    padding: 40px 20px;
}

.pricing h3 {
    text-align: center;
}

.price-tag {
    background: var(--cp2-200);
    border-radius: 20px;
    padding: 5px 10px;
    text-align: center;
}

table.compare tr {
    border-bottom: 1px solid var(--cp2-200);
}

table.compare td, table.compare th {
    border: none;
    text-align: center;
}

table.compare th:first-child {
    text-align: start;
}

.email-link {
    direction: ltr;
    border: 1px solid var(--cp2-700);
    padding: 5px 20px;
    border-radius: 10px;
    place-self: center;
    margin: 20px;
}

.e-namad img {
    width: 60px;
}