/* Layout Containers */
.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif;
}

h1 { text-align: center; color: #1b5e20; margin-bottom: 40px; font-size: 2.5rem; }

.category-block { margin-bottom: 60px; }

/* Titles */
.category-title {
    background: #2e7d32;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 25px;
}

.sub-title {
    color: #558b2f;
    border-bottom: 2px solid #c8e6c9;
    padding-bottom: 5px;
    margin: 30px 0 20px 0;
    font-size: 1.4rem;
}

/* Responsive Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

/* Individual Cards */
.menu-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    transition: 0.3s;
}

.menu-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.menu-item:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-color: #2e7d32;
}

/* Special Highlight for Healthy Juices */
.menu-item.health {
    background: #f1f8e9;
    border: 1px dashed #2e7d32;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .menu-grid { grid-template-columns: 1fr; }
    .category-title { width: 100%; text-align: center; }
}

.location-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
    border-top: 1px solid #eee;
}

.qr-container {
    margin: 30px auto;
    background: white;
    padding: 15px;
    display: inline-block;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.qr-container:hover {
    transform: scale(1.05);
}

.qr-image {
    width: 200px; /* Adjust size as needed */
    height: auto;
    display: block;
}

.map-actions {
    margin-top: 20px;
}

.map-button {
    display: inline-flex;
    align-items: center;
    background-color: #ffffff;
    color: #4285F4; /* Google Blue */
    padding: 12px 25px;
    border: 2px solid #4285F4;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.map-button:hover {
    background-color: #4285F4;
    color: #ffffff;
}

.gmap-icon {
    width: 20px;
    margin-right: 10px;
}

/* For smaller screens, make the button full width */
@media (max-width: 480px) {
    .map-button { width: 100%; justify-content: center; }
}