/* base */
* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; font-family: Arial, Helvetica, sans-serif; }

.frontpage {
  min-height: 100vh;
  background: url("../images/hero-fiskekutter.jpg") center/cover no-repeat fixed;
}

/* topbar + logo */
.topbar {
  padding: 16px 18px;
}
.logo {
  width: 220px;
  height: auto;
  display: block;
}

/* hero layout */
.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

/* buttons */
.button-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 18px 26px;
  border-radius: 14px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0,0,0,0.18);
  transition: transform .08s ease;
}
.btn:active { transform: scale(0.98); }

.btn-gaest { background: #43a047; }
.btn-matros { background: #1e5ea8; }
.btn-styrmand { background: #c84a4a; }

/* mobile */
@media (max-width: 520px) {
  .logo { width: 170px; }
  .btn { min-width: 240px; }
}