:root {
    --primary-color: #2E8B57; /* SeaGreen */
    --secondary-color: #F5F5DC; /* Beige */
    --background-color: #FFFAF0; /* FloralWhite */
    --surface-color: #FFFFFF; /* White */
    --text-color: #000000; /* Black */
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    margin: 0;
    background-color: var(--background-color);
    color: var(--text-color);
}

header {
    background-color: var(--surface-color);
    color: var(--text-color);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo h1 {
    margin: 0;
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--primary-color);
}

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

nav ul li {
    margin-left: 1.5rem;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary-color);
}

main {
    padding-top: 80px;
}

section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

section h2 {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

section h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0.5rem auto 0;
}

#hero {
    background: linear-gradient(rgba(46, 139, 87, 0.9), rgba(46, 139, 87, 0.9));
    color: white;
    text-align: center;
    padding: 6rem 2rem;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
}

.hero-content p {
    font-size: 1.2rem;
    color: white;
}

.menu-category {
    margin-bottom: 4rem;
}

.menu-category h3 {
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--text-color);
    text-align: left;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.menu-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: left;
}

.menu-item {
    background: var(--surface-color);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.menu-item h3 {
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 0.5rem;
}

#contact p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.googlemap {
    margin: 2rem auto;
    width: 80%;
    max-width: 600px;
}

.googlemap iframe {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

footer {
    background-color: var(--surface-color);
    color: var(--text-color);
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 4rem;
    border-top: 1px solid #eee;
}
