:root {
    --bg-color: #f0f0f0;
    --text-color: #333;
    --container-bg-color: white;
    --primary-color: #ff6347; /* Tomato */
    --border-color: #eee;
}

html[data-theme='dark'] {
    --bg-color: #2c2c2c;
    --text-color: #f0f0f0;
    --container-bg-color: #3e3e3e;
    --primary-color: #90ee90; /* LightGreen for dark mode accent */
    --border-color: #555;
}

body {
    font-family: 'Jua', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Use min-height instead of height */
    margin: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-y: auto; /* Enable vertical scrolling for the body */
}

.container {
    max-width: 90%;
    width: 500px;
    padding: 2rem;
    background-color: var(--container-bg-color);
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    position: relative; /* For theme-toggle positioning */
    margin: 2rem 0; /* Add vertical margin to ensure container is not flushed to edges */
}

h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.menu-suggestion {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#suggestion-button {
    font-family: 'Jua', sans-serif;
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 10px;
    background-color: var(--primary-color);
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 1.5rem;
    display: block !important; /* Force display */
}

#suggestion-button:hover {
    background-color: darken(var(--primary-color), 10%); /* This won't work in pure CSS, but demonstrates intent */
}
/* Fallback for darken */
html[data-theme='light'] #suggestion-button:hover { background-color: #e5533d; }
html[data-theme='dark'] #suggestion-button:hover { background-color: #7ab87a; }


#menu-result {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-color);
    min-height: 2rem;
}

/* Theme Toggle Button */
#theme-toggle {
    position: absolute !important;
    top: 1rem !important;
    right: 1rem !important;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color); /* Ensure visibility */
    display: block !important; /* Force display */
    z-index: 1000 !important; /* Ensure it's on top */
}

/* Language Selector */
#language-selector {
    position: absolute !important;
    top: 1rem !important;
    left: 1rem !important;
    display: block !important; /* Force display */
    z-index: 1000 !important; /* Ensure it's on top */
}

#lang-select {
    padding: 0.3rem 0.5rem;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    background-color: var(--container-bg-color);
    color: var(--text-color);
    font-family: 'Jua', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
}

/* Partnership Inquiry Form Styles */
#partnership-inquiry {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

#partnership-inquiry h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

#partnership-inquiry form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center; /* Center form elements */
}

#partnership-inquiry label {
    font-weight: bold;
    margin-top: 0.5rem;
    width: 100%; /* Ensure label takes full width */
    text-align: left; /* Align label text to the left */
}

#partnership-inquiry input[type="text"],
#partnership-inquiry input[type="email"],
#partnership-inquiry textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Jua', sans-serif; /* Use the same font as body */
    background-color: var(--container-bg-color); /* Match container background */
    color: var(--text-color);
}

#partnership-inquiry textarea {
    resize: vertical; /* Allow vertical resizing */
}

#partnership-inquiry button[type="submit"] {
    font-family: 'Jua', sans-serif;
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 10px;
    background-color: #4CAF50; /* A nice green for submit button */
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 1.5rem;
}

#partnership-inquiry button[type="submit"]:hover {
    background-color: #45a049;
}


/* Responsive Design */
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    #suggestion-button {
        font-size: 1rem;
    }

    #menu-result {
        font-size: 1.2rem;
    }

    #partnership-inquiry h2 {
        font-size: 1.5rem;
    }

    #partnership-inquiry button[type="submit"] {
        font-size: 1rem;
    }
}

/* About Us Section Styles */
#about-us {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

#about-us h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

#about-us p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: left; /* Align text for readability */
}

/* Menu Description Style */
.menu-description-style {
    font-style: italic;
    color: var(--text-color);
    margin-top: 0.8rem;
    max-width: 80%; /* Limit width for better readability */
    margin-left: auto;
    margin-right: auto;
}