body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a; /* Darker background */
    color: #e0e0e0;
}

header {
    background-color: #282828; /* Slightly lighter dark header */
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #3a3a3a;
}

header h1 {
    margin: 0;
    color: #e0e0e0; /* Ensure header title is visible */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.hamburger-menu {
    cursor: pointer;
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    padding: 0;
}

.hamburger-menu .bar {
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #64b5f6; /* Muted blue for hover */
}

main {
    padding: 20px;
    max-width: 800px;
    margin: 20px auto;
    background-color: #282828; /* Main content area matches header */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7); /* Stronger shadow for depth */
    border-radius: 8px;
}

.order-form h2 {
    text-align: center;
    color: #90caf9; /* Light blue for headings */
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea,
.form-group input[type="file"] {
    width: calc(100% - 22px);
    padding: 10px;
    border: 1px solid #424242; /* Darker border */
    border-radius: 4px;
    box-sizing: border-box;
    background-color: #333333; /* Darker input background */
    color: #e0e0e0;
}

.form-group textarea {
    resize: vertical;
}

.form-group input[type="radio"] {
    margin-right: 5px;
}

.payment-info {
    background-color: #4a4a4a; /* Muted dark gray for payment info */
    border: 1px solid #616161;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    margin-top: 20px;
    color: #e0e0e0; /* Light text for readability */
}

.payment-info strong {
    color: #90caf9; /* Accent color for strong text */
}

button[type="submit"] {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #64b5f6; /* Muted blue for buttons */
    color: #1a1a1a; /* Dark text on light button */
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

button[type="submit"]:hover {
    background-color: #42a5f5; /* Darker blue on hover */
}

.pickup-now-message {
    text-align: center;
    background-color: #333333;
    border: 1px solid #424242;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    color: #e0e0e0;
}

.pickup-now-message strong {
    color: #e0e0e0;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #282828;
    color: #e0e0e0;
    margin-top: 20px;
    border-top: 1px solid #3a3a3a;
}

.small-text-label {
    font-size: 0.8em;
}

.logo-container {
    padding: 20px 0;
    text-align: center;
}

.logo-container img {
    height: 40px;
    margin: 0 15px;
    opacity: 0.6;
    filter: invert(1);
}

/* Search input styling */
#mk-search {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

#mk-query {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #424242;
    border-radius: 4px;
    background-color: #333333;
    color: #e0e0e0;
    font-size: 1rem;
}

#mk-search button {
    padding: 10px 15px;
    background-color: #64b5f6;
    color: #1a1a1a;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#mk-search button:hover {
    background-color: #42a5f5;
}

#mk-result {
    width: 100%;
    background-color: #333333;
    border: 1px solid #424242;
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
    white-space: pre-wrap;
    font-size: 0.9em;
    color: #90caf9;
}


@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .hamburger-menu {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background-color: #333333;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links a {
        display: block;
        padding: 10px 0;
    }

    main {
        margin: 10px;
        padding: 15px;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group textarea {
        width: 100%;
    }

    #mk-search {
        flex-direction: column;
    }

    #mk-query {
        width: 100%;
    }

    #mk-search button {
        width: 100%;
    }
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    background-color: #333333;
    border: 1px solid #424242;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-item img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 10px;
}

.gallery-item p {
    font-size: 0.9em;
    color: #e0e0e0;
}