
:root {
  --primary: #000;
  --white: #fff;
  --accent: #00b2ff;
  --font-stack: 'Arial', sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-stack); line-height: 1.6; color: #333; background: #fdfdfd; }
a { text-decoration: none; color: inherit; }

header { padding: 20px; display: flex; justify-content: space-between; align-items: center; background: var(--white); border-bottom: 1px solid #eee; }
.logo { font-weight: bold; font-size: 1.5rem; letter-spacing: 2px; }
nav a { margin-left: 20px; font-size: 0.9rem; text-transform: uppercase; }

.hero { height: 80vh; background-image: url('/assets/Greve_74.jpg'); background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; color: white; }
.container { max-width: 1000px; margin: 0 auto; padding: 40px 20px; }

.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.img-constrained { width: 100%; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

footer { text-align: center; padding: 60px 20px; background: #f4f4f4; font-size: 0.8rem; }

@media (max-width: 768px) {
  .grid { grid-template-columns: 1fr; }
  .header-nav { display: none; }
}
