/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Noto Sans Armenian', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header styles */
header {
    background-color: #ED3237;
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

header h1 {
    font-size: 1.8rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Main content layout */
.main-content {
    display: flex;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Categories navigation */
.categories-nav {
    width: 250px;
    margin-right: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 1rem;
}

.categories-nav ul {
    list-style: none;
}

.categories-nav li {
    margin-bottom: 0.5rem;
}

.categories-nav a {
    display: block;
    padding: 0.8rem 1rem;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.categories-nav a:hover,
.categories-nav li.active a {
    background-color: #ED3237;
    color: white;
}

/* Menu items section */
.menu-items {
    flex: 1;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.menu-items h2 {
    margin-bottom: 1.5rem;
    color: #ED3237;
    font-size: 1.8rem;
    border-bottom: 2px solid #ED3237;
    padding-bottom: 0.5rem;
}

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

.menu-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.item-image {
    height: 180px;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.menu-item:hover .item-image img {
    transform: scale(1.05);
}

.item-info {
    padding: 1rem;
}

.item-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.price {
    font-weight: bold;
    color: #ED3237;
}

/* Footer styles */
footer {
    background-color: #333;
    color: white;
    padding: 1.5rem 0;
    text-align: center;
}

/* Responsive styles */
@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }

    .categories-nav {
        width: 100%;
        margin-right: 0;
        margin-bottom: 1.5rem;
        display: none;
    }

    .categories-nav.active {
        display: block;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .items-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .items-grid {
        grid-template-columns: 1fr;
    }
}

/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox-content {
    position: relative;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    max-width: 80%;
    max-height: 80%;
    overflow: auto;
}

.lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    display: block;
    margin: 0 auto;
}

.lightbox-name {
    text-align: center;
    margin-top: 10px;
    color: black;
}

.close-lightbox {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    color: black;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

a {
    color: black;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}