/* style.css */

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f5f9; /* Light blue-gray */
    margin: 0;
    padding: 0;
    text-align: center;
    color: #333;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/emenu_logo1.png');
    background-size: 250px 250px;
    background-repeat: repeat;
    background-position: center;
    
    z-index: -1;
    pointer-events: none;
    opacity: 0.5; /* Makes only the background transparent */
    filter: brightness(1) contrast(1) opacity(0.5); /* Ensures other elements are not affected */
}

.nav {
    background-color: #343a40;
    color: white;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    
}

.logo {
    height: 50px 50px;
}

a {
    color: #ffc107;
    text-decoration: none;
}

.container {
    padding: 20px;
}

h1, h2 {
    color: #343a40;
}

.menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.menu-item {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.menu-item img {
    max-width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 20px;
}

button:hover {
    background-color: #218838;
}

input {
    width: 50px;
    padding: 5px;
    margin-top: 10px;
    text-align: center;
    font-size: 16px;
}


/* General Styling */
body {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: #f0f5f9; /* Light blue-gray */
    color: #333;
}

/* Container */
.container {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
}

/* Navigation Bar */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #2c3e50; /* Deep Blue */
    color: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.logo {
    width: 150px;
}

.auth-links a {
    margin: 0 10px;
    text-decoration: none;
    color: #ecf0f1; /* Soft white */
    font-weight: bold;
    transition: 0.3s;
}

.auth-links a:hover {
    color: #bdc3c7; /* Light gray */
}

/* Menu Section */
.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

/* Individual Menu Item */
.item {
    border-radius: 10px;
    background: white;
    padding: 15px;
    margin: 15px;
    width: 260px;
    text-align: left;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.item:hover {
    transform: scale(1.05);
}

.item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
}

.item h3 {
    margin: 10px 0;
    color: #34495e; /* Dark blue-gray */
}

.item p {
    font-size: 14px;
    color: #666;
}

/* Order Button */
.order-btn {
    background: #27ae60; /* Green */
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    width: 100%;
    border-radius: 5px;
    font-size: 16px;
    transition: 0.3s;
}

.order-btn:hover {
    background: #218c53; /* Darker Green */
}

/* Subscription Plans */
h2 {
    color: #2980b9; /* Blue */
}

/* Contact Section */
a {
    color: #2980b9; /* Blue */
    font-weight: bold;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 600px) {
    .nav {
        flex-direction: column;
        text-align: center;
    }
    .menu {
        flex-direction: column;
    }
}
