/* order.css */

/* Body styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f4f0;
    margin: 0;
    padding: 0;
    color: #333;
    text-align: center;
}

/* Navbar styling */
.navbar {
    background-color: #b25a16;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Bakery brand name */
.navbar .brand {
    color: white;
    font-family: 'Pacifico', cursive;
    font-size: 28px;
}

/* Navigation links */
.navbar .nav-links a {
    color: white;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    font-size: 16px;
    margin-left: 25px;
    transition: color 0.3s;
}

.navbar .nav-links a:hover {
    color: #ffe6cc;
}

/* Page heading */
h1 {
    font-family: 'Pacifico',cursive;
    color: #814418;
    margin: 30px 0;
    font-size: 48px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Menu rows */
.menu-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Each row */
.menu-row {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Menu items */
.menu-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* First row height */
.menu-item.row1 img {
    width: 100%;
    height: 200px;        /* First row height */
    object-fit: cover;
    transition: transform 0.3s;
}

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

/* Second row height (higher) */
.menu-item.row2 img {
    width: 100%;
    height: 300px;        /* Second row taller */
    object-fit: cover;
    transition: transform 0.3s;
}

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

/* Caption under each image */
/* .menu-item p {
    margin: 10px 0;
    font-weight: bold;
    color: #d2691e;
} */

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

#lightbox .lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}

#lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

#lightbox .close:hover {
    color: #ffe6cc;
}
/* Full Menu Button styling */
.full-menu-btn-container {
    text-align: center;
    margin: 40px 0;
}

.full-menu-btn {
    background-color: #b25a16; /* Bakery chocolate color */
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-family: 'Lato', sans-serif;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.full-menu-btn:hover {
    background-color: #7f3f0d;
    transform: scale(1.05);
}
/* Responsive for smaller screens */
@media screen and (max-width: 700px) {
    .menu-row {
        flex-direction: column;
    }

    .menu-item.row1 img,
    .menu-item.row2 img {
        width: 90%;
        height: auto;
    }
}