:root {
    --container: 1100px;
    --primary: #d35400;
    /* warm orange */
    --dark: #222;
    --muted: #6b6b6b;
    --bg: #f7f7f7;
    --max-width: 1200px;
    --radius: 12px;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    color: var(--dark);
    background: var(--bg);
    line-height: 1.5;
    font-size: 16px;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 1rem;
    background: rgb(83, 83, 151);
    opacity: 70%;
    /* height: 50%; */
}


/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.98);
    position: sticky;
    top: 0;
    z-index: 60;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06)
}

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

.logo {
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    font-size: 1.1rem
}

.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem
}

.site-nav a {
    color: var(--dark);
    text-decoration: none;
    padding: 0.35rem 0.5rem;
    border-radius: 6px
}

.site-nav a:hover {
    background: rgba(0, 0, 0, 0.04)
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 0.25rem;
    border-radius: 6px
}

.nav-toggle .bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    margin: 4px 0;
    border-radius: 2px
}


/* Hero */
.hero {
    display: block;
    padding: 4rem 0;
    background-image: url('/img/bg-hero.jpg');
    height: 800px;
    background-size: contain ;
    /* linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.1)), */
    /* background-size: cover; */
    background-position: center;
    background-repeat: no-repeat;
    color: #fff
}

#hero-inner {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 1.5rem;
    align-items: center
}

.hero-copy h1 {
    font-size: 2.6rem;
    line-height: 1.05;
    margin: 0 0 0.6rem
}

.hero-copy p {
    max-width: 54ch;
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.9);
    height: 100vh;
}

.hero-cta .btn {
    margin-right: 0.6rem
}

.hero-image {
    height: 320px;
    background-image: url('/img/hero.png');
    /* background-image: url('/img/bg-hero.jpg'); */
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    height: full;
}



/* Buttons */
.btn {
    display: inline-block;
    padding: 0.65rem 1rem;
    border-radius: 8px;
    border: 0;
    text-decoration: none;
    cursor: pointer;
    background: #fff;
    color: var(--dark);
    font-weight: 600
}

.btn.primary {
    background: var(--primary);
    color: #fff
}

.btn.ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #fff
}


/* Sections */
.section-head {
    text-align: center;
    margin-bottom: 1.4rem
}

.features {
    padding: 3rem 0
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem
}

.feature {
    background: #fff;
    padding: 1.1rem;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(32, 32, 32, 0.04)
}


.about {
    padding: 3rem 0
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: center
}

.about-image {
    height: 260px;
    background-image: url('https://images.unsplash.com/photo-1528605105340-ef88f6f7c7a5?q=80&w=1200&auto=format&fit=crop&ixlib=rb-4.0.3&s=');
    background-size: cover;
    background-position: center;
    border-radius: 12px
}


/* Menu */
.menu {
    padding: 3rem 0
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem
}

.menu-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 0
}

.menu-item img {
    width: 45%;
    object-fit: cover
}

.menu-item-body {
    padding: 1rem
}

.menu-item-body h4 {
    margin: 0 0 0.4rem;
    font-size: 1.05rem
}

.menu-item .price {
    float: right;
    color: var(--primary);
    font-weight: 700
}