
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800&family=Open+Sans:wght@400;600&display=swap');

:root {
    --primary-color: #e67e22;
    --dark-bg: #121212;
    --card-bg: #1e1e1e;
    --text-light: #ffffff;
    --text-muted: #b3b3b3;
    --accent-gold: #f1c40f;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
}

header {
    background-color: rgba(18, 18, 18, 0.95);
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--primary-color);
}

.logo {
    font-size: 1.5rem;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-decoration: none;
    font-weight: 800;
}

nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 30px; }
nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}
nav ul li a:hover, nav ul li a.active { color: var(--primary-color); }

main { flex: 1; padding-top: 80px; }

section { padding: 80px 5%; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; position: relative; }
.section-title::after { content: ''; display: block; width: 60px; height: 4px; background: var(--primary-color); margin: 15px auto 0; }

.page-header { background: #1a1a1a; padding: 60px 20px; text-align: center; border-bottom: 1px solid #333; }
.page-header h1 { font-size: 2.5rem; color: var(--primary-color); }

.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.feature-card { background: var(--card-bg); padding: 40px; border-radius: 15px; text-align: center; border: 1px solid #333; }

.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.menu-item { background: var(--card-bg); border-radius: 10px; overflow: hidden; transition: transform 0.3s; }
.menu-item:hover { transform: scale(1.03); }
.menu-img { width: 100%; height: 200px; background-size: cover; background-position: center; }
.menu-content { padding: 20px; }

footer { padding: 30px 5%; background: #000; text-align: center; border-top: 1px solid #333; margin-top: auto; }

/* Hero for Single Page or Index */
#home {
    height: calc(100vh - 80px);
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1594212699903-ec8a3eca50f5?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.btn { padding: 15px 40px; border-radius: 50px; text-decoration: none; font-weight: bold; text-transform: uppercase; background: var(--primary-color); color: white; }
