body {
    font-family: 'Vazir', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.hamburger-menu {
    display: none;
}

.hamburger-menu:checked ~ .mobile-menu {
    display: block;
}

.mobile-menu {
    transition: all 0.3s ease-in-out;
}

.mobile-menu a {
    transition: color 0.2s;
}

.mobile-menu a:hover {
    color: #fff200;
}

.hero-bg {
    background: url('https://via.placeholder.com/1200x600') no-repeat center/cover;
}

.text-black {
    color: #231f20;
}

.bg-blue-custom {
    background-color: #6b3f34; /* رنگ هدر به‌روزرسانی شده */
}

.bg-pink-custom {
    background-color: #ec008c;
}

.bg-yellow-custom {
    background-color: #fff200;
}

.text-pink-custom {
    color: #ec008c;
}

.text-yellow-custom {
    color: #fff200;
}

.article-footer {
    background-color: #545454;
    color: white;
    text-align: center;
    padding: 1rem 0;
}

.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #6b3f34; /* هم‌رنگ هدر */
    z-index: 1000;
}

.mobile-bottom-nav a {
    color: white;
    padding: 0.5rem;
    flex: 1;
    text-align: center;
}

.mobile-bottom-nav a:hover {
    background-color: #ec008c;
}

@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .hamburger-menu-label {
        display: block;
    }

    distra
    .mobile-menu {
        transform: translateY(-100%);
    }

    .hamburger-menu:checked ~ .mobile-menu {
        transform: translateY(0);
    }

    .mobile-bottom-nav {
        display: flex;
    }
}