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

:root {
    --primary-dark: #6f4e37;
    --primary-light: #a0826d;
    --accent-gold: #d4af37;
    --bg-light: #f5f1ee;
    --text-dark: #2c2416;
    --text-light: #ffffff;
    --border-color: #e8ddd6;
}

body {
    font-family: "Vazirmatn", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    direction: rtl;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* منوی ناوبری */
.navbar {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav-menu {
    margin:15px;
    display: flex;
    list-style: none;
    gap: 2rem;
}

    .nav-menu a {
        color: var(--text-light);
        text-decoration: none;
        transition: color 0.3s ease;
        font-weight: 500;
    }

        .nav-menu a:hover {
            color: var(--accent-gold);
        }

/* بخش هیرو */
.hero {
    background: url("images/1.jpg") center / cover no-repeat;
    background-attachment: fixed;
    position: relative;
    color: var(--text-light);
    padding: 8rem 2rem;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

.hero-content {
    position: relative;
    z-index: 2;
}

    .hero-content h1 {
        font-size: 2.7rem;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    }

    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        opacity: 0.95;
    }

/* دکمه‌ها */
.btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin: 0 0.5rem;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--text-dark);
}

    .btn-primary:hover {
        background-color: #e6c547;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    }

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--accent-gold);
}

    .btn-secondary:hover {
        background-color: var(--accent-gold);
        color: var(--text-dark);
    }

/* بخش منو */
.menu-section {
    padding: 4rem 0;
    background-color: var(--text-light);
}

    .menu-section h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        color: var(--primary-dark);
    }

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.menu-item {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-right: 4px solid var(--accent-gold);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .menu-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .menu-item h3 {
        color: var(--primary-dark);
        margin-bottom: 0.5rem;
        font-size: 1.3rem;
    }

    .menu-item p {
        color: #777;
        margin-bottom: 1rem;
        font-size: 0.95rem;
    }

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-gold);
}

/* بخش درباره ما */
.about-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

    .about-section h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 2rem;
        color: var(--primary-dark);
    }

    .about-section > .container > p {
        text-align: center;
        font-size: 1.1rem;
        margin-bottom: 3rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    background-color: var(--text-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

    .feature h4 {
        color: var(--primary-dark);
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

    .feature p {
        color: #666;
    }

/* بخش ایجنت کافه */
.agent-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fff9f0 0%, var(--bg-light) 100%);
}

.agent-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.agent-section h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.agent-section > .container > .agent-content > .agent-text > p:nth-of-type(1) {
    font-size: 1.2rem;
    color: var(--accent-gold);
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.agent-description {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.agent-features {
    list-style: none;
    margin-bottom: 2rem;
}

    .agent-features li {
        padding: 0.7rem 0;
        font-size: 1rem;
        color: var(--text-dark);
        border-bottom: 1px solid var(--border-color);
    }

        .agent-features li:last-child {
            border-bottom: none;
        }

.agent-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.agent-image {
    background-color: var(--text-light);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.agent-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.agent-subtitle {
    color: var(--primary-dark);
    font-weight: bold;
    font-size: 1rem;
}

/* بخش تماس */
.contact-section {
    padding: 4rem 0;
    background-color: var(--text-light);
}

    .contact-section h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        color: var(--primary-dark);
    }

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border-top: 3px solid var(--accent-gold);
}

    .contact-item h4 {
        color: var(--primary-dark);
        margin-bottom: 0.5rem;
        font-size: 1.1rem;
    }

    .contact-item p {
        color: #666;
    }

/* فوتر */
.footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 2rem 0;
    text-align: center;
}

    .footer .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

    .social-link:hover {
        color: var(--text-light);
    }

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

    .agent-content {
        grid-template-columns: 1fr;
    }

    .agent-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .footer .container {
        flex-direction: column;
    }
}
