/* Golden Fork Restaurant - Simple Design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 50px;
    text-align: center;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

nav {
    background-color: #fff;
    border-bottom: 1px solid #B8860B;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    width: 100%;
    margin: 0 auto;
    padding: 6px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    color: #B8860B;
}

.logo span {
    display: block;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.nav-menu {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.nav-menu li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    border-radius: 4px;
    font-size: 14px;
    border-top: #ccc 0.5px solid;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background-color: #B8860B;
    color: #fff;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
}

/* Main Content */
main {
    width: 100%;
    margin: 0 auto;
    padding: 30px 20px;
}

section {
    margin-bottom: 40px;
}

section h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #B8860B;
    display: inline-block;
}

section p {
    margin-bottom: 15px;
}

section ul {
    list-style: disc;
    margin-left: 25px;
}

section ul li {
    margin-bottom: 10px;
}


.hero {
    background-color: #f9f9f9;
    padding: 50px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 40px;
}

.hero h2 {
    font-size: 32px;
    border: none;
    padding: 0;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: #B8860B;
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    margin-top: 10px;
}

.cta-button:hover {
    background-color: #8B6914;
}

/* Cards */
.highlights-grid,
.menu-grid,
.chef-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.highlight-card,
.menu-card,
.chef-card,
.contact-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.menu-card {
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.menu-card:hover {
    transform: translateY(-5px);
}

.menu-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-card-content {
    padding: 20px;
}

.menu-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.price {
    font-size: 20px;
    color: #B8860B;
    font-weight: bold;
}

/* Forms */
form {
    max-width: 600px;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
}

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

form input,
form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

form button {
    background-color: #B8860B;
    color: #fff;
    padding: 14px 35px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

form button:hover {
    background-color: #8B6914;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.contact-card {
    text-align: left;
}

.contact-card h3 {
    margin-bottom: 15px;
    color: #1a1a1a;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 25px 20px;
}

footer p {
    font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
    .nav-menu {
        gap: 3px;
    }
    .nav-menu li a {
        padding: 8px 10px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu li a {
        padding: 15px 20px;
        border-radius: 0;
    }
    
    .hero {
        padding: 30px 20px;
    }
    
    .hero h2 {
        font-size: 24px;
    }
    
    form {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 15px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    main {
        padding: 20px 15px;
    }
    
    section h2 {
        font-size: 22px;
    }
    
    .highlights-grid,
    .menu-grid,
    .chef-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
