body {
    font-family: Arial, sans-serif;
    text-align: left;
    background-color: #fff5f8;
    color: #333;
    margin: 0;
    padding: 0;
}
.navbar {
    background-color: #ff66a3;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.navbar a {
    color: white;
    text-decoration: none;
    padding: 10px;
    font-weight: bold;
}
.navbar .logo {
    height: 50px;
    width: auto;
}
.container {
    max-width: 800px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
h1 {
    color: #ff66a3;
}
.menu-item {
    font-size: 1.2em;
    margin: 10px 0;
}
.cupcake-section {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            max-width: 900px;
            margin: 40px auto;
            padding: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        }
        .cupcake-image {
            width: 40%;
            border-radius: 10px;
        }
        .cupcake-info {
            width: 60%;
            text-align: left;
        }

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.gallery img {
    width: 250px;  /* Set fixed width */
    height: 250px; /* Set fixed height */
    object-fit: cover; /* Ensure images maintain aspect ratio */
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.gallery img:hover {
    transform: scale(1.5);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

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

/* Lightbox Image */
.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.3);
}

canvas {
    display: block;
    background: #222;
    margin: 20px auto;
    border: 2px solid white;
    border-radius: 10px;
}

/* Menu Page Styling */
.container {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.menu-item img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}

.menu-item h2 {
    font-size: 20px;
    margin: 0;
    color: #ff66a3;
}

.menu-item p {
    margin: 5px 0;
    font-size: 16px;
    color: #333;
}

@media (max-width: 768px) {
    .menu-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .menu-item img {
        width: 100px;
        height: 100px;
    }
}

