body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #050403;
    background-image: url('menu_back.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

.menu h1 {
    font-family: 'Dancing Script', cursive;
    color: #d4a017;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.category-section {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.category-section h2 {
    font-family: 'Dancing Script', cursive;
    color: #d4a017;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.product-item {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.product-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 10px;
}

.product-info p {
    margin: 5px 0;
    font-size: 0.9em;
    color: #ffffff; /* Changed item text to white */
}

.price {
    color: #d4a017; /* Set price to #d4a017 */
    font-weight: bold;
    font-size: 1em;
}

.category {
    font-size: 0.8em;
    color: #ffffff; /* Changed category text to white */
}

footer {
    background-color: #f5e8c7;
    color: #000000;
    padding: 20px 0;
    text-align: center;
    width: 100%;
    position: relative;
    bottom: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.resto-name {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.2;
}

.contact {
    font-size: 16px;
    margin-bottom: 5px;
}

.location {
    font-size: 16px;
    margin-bottom: 10px;
}

.copyright {
    font-size: 14px;
}

@media (max-width: 768px) {
    .category-section {
        width: 90%;
    }

    .menu h1 {
        font-size: 2rem;
    }

    .category-section h2 {
        font-size: 1.5rem;
    }

    .product-item img {
        height: 150px;
    }
}

@media (min-width: 769px) {
    .product-item img {
        height: 250px;
    }
}
.fancy-back-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #d4a017;
    color: white;
    text-decoration: none;
    font-family: 'Dancing Script', cursive;
    font-size: 18px;
    border: none;
    border-radius: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
}

.fancy-back-button:hover {
    background-color: #b08612;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .fancy-back-button {
        padding: 10px 20px;
        font-size: 16px;
        top: 10px;
        left: 10px;
    }
}