/* Generell styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', sans-serif;
}

body {
  background-color: #fdfaf6;
  color: #333;
  line-height: 1.6;
}

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

/* Header og navigasjon */
header {
  background-color: #fff;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav a {
  margin-left: 30px;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #cfa15f;
}

/* Hero-seksjon */
.hero {
  background: url('https://images.unsplash.com/photo-1541542684-05b2cbcf6f27?auto=format&fit=crop&w=1650&q=80') no-repeat center center/cover;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.hero h1 {
  font-size: 4rem;
}

.hero p {
  font-size: 1.5rem;
  margin-top: 10px;
}

/* Seksjoner */
section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: auto;
}

section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
  color: #333;
}

/* Meny kort */
.menu-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.menu-item {
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.menu-item h3 {
  margin-bottom: 10px;
  color: #cfa15f;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  padding: 30px 40px;
  text-align: center;
}
