/* landing-style.css (نسخه کاملاً جدید) */

body {
    font-family: 'Vazirmatn', sans-serif;
    direction: rtl;
    background-color: #121212;
    color: #f0f0f0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px 0;
}

.landing-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 1)), url('images/background.jpg'); /* یک عکس پس‌زمینه زیبا انتخاب کنید */
    background-size: cover;
    background-position: center;
    filter: blur(5px);
    z-index: -1;
}

.landing-container {
    max-width: 900px;
    width: 95%;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* هدر و لوگو */
.landing-header {
    margin-bottom: 40px;
}

.logo-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #FFD700;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
    margin-bottom: 20px;
}

.restaurant-name {
    color: #FFD700;
    font-weight: 700;
    font-size: 2.8rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.welcome-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

/* گرید منوها */
.menu-options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .menu-options-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu-card {
    position: relative;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.menu-card:hover .card-bg {
    transform: scale(1.05);
}

.card-content {
    position: relative;
    width: 100%;
    padding: 20px;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 20%, transparent);
}

.card-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #FFD700;
}

.card-content p {
    font-size: 1rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* بخش ساعت کاری */
.business-hours {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
}

.hours-icon {
    color: #FFD700;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hours-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.hours-details p {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.hours-details p:last-child {
    margin-bottom: 0;
}

/* فوتر و اینستاگرام */
.landing-footer {
    padding-top: 20px;
}

.landing-footer p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.social-link {
    font-size: 2.5rem;
    color: #FFD700;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    color: #fff;
    transform: scale(1.1);
}

.copyright {
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}