:root {
    --black: #000000;
    --white: #FFFFFF;
    --accent: #D4A373;
    --grey-light: #F9F9F9;
    --text-main: #1A1A1A;
    --serif: 'Playfair Display', serif;
    --sans: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--white); color: var(--text-main); font-family: var(--sans); line-height: 1.6; }

.nav-horeca { background: var(--black); color: var(--white); padding: 25px 8%; position: sticky; top: 0; z-index: 1000; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; cursor: pointer; }
.logo span { color: var(--accent); }
.menu a { color: var(--white); text-decoration: none; margin-left: 30px; font-size: 0.75rem; letter-spacing: 2px; font-weight: 700; }
.btn-nav { border: 1px solid var(--accent); padding: 8px 18px; color: var(--accent) !important; }

.hero-cover { height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; background: var(--grey-light); border-bottom: 1px solid #eee; }
.hero-content h1 { font-family: var(--serif); font-size: 4rem; text-transform: uppercase; }
.subtitle-italic { font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: var(--accent); }
.divider { width: 50px; height: 2px; background: var(--black); margin: 20px auto; }

.footer-dark { background: var(--black); color: var(--white); padding: 60px 8%; margin-top: 50px; }
.footer-grid { display: flex; justify-content: space-between; }