@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&family=Playfair+Display:wght@700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    color: #ffffff;
}

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

h1, h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    color: #ffd700;
}

h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

h2 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 0.5rem;
}

.category {
    margin-bottom: 30px;
}

.menu-item {
    background-color: #2a2a2a;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 1px solid #444;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    position: relative;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 2px solid #ffd700;
}

.item-details {
    flex: 1;
    padding-right: 60px;
}

.menu-item h3 {
    margin: 0 0 10px 0;
    color: #ffd700;
    font-size: 1.4rem;
}

.menu-item p {
    margin: 0;
    color: #bbbbbb;
    font-size: 0.9rem;
    line-height: 1.4;
}

.price {
    position: absolute;
    top: 235px;
    right: 20px;
    color: #ffd700;
    font-weight: bold;
    font-size: 1.2rem;
    padding-left: 15px;
    border-left: 2px solid #ffd700;
}

/* Glowing effect for category headers */
@keyframes glow {
    0% { text-shadow: 0 0 5px #ffd700, 0 0 10px #ffd700; }
    50% { text-shadow: 0 0 10px #ffd700, 0 0 20px #ffd700; }
    100% { text-shadow: 0 0 5px #ffd700, 0 0 10px #ffd700; }
}

h2 {
    animation: glow 2s ease-in-out infinite;
}

/* Media query for better responsiveness on smaller screens */
@media (max-width: 600px) {
    .container {
        padding: 10px;
    }
    
    .menu-item {
        padding: 15px;
    }
    
    .menu-item img {
        height: 150px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .item-details {
        padding-right: 0;
    }
    
    .price {
        position: static;
        margin-top: 10px;
        padding-left: 0;
        border-left: none;
        width: 100%;
        text-align: right;
    }
}



.contact-section {
    margin-top: 40px;
    padding: 20px;
    background-color: #2a2a2a;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #ffd700;
}

.contact-section p {
    margin-bottom: 15px;
    color: #ffffff;
}

.contact-section a {
    display: block;
    color: #ffd700;
    text-decoration: none;
    margin-bottom: 10px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-section a:hover {
    color: #ffffff;
}

/* Update media query to include the new section */
@media (max-width: 600px) {
    /* Existing media query styles */

    /* ... (keep all the existing media query styles) ... */

    .contact-section {
        padding: 15px;
    }
}