body {
  margin: 0;
  font-family: "Oxanium", Arial, sans-serif;
  background: #d9d9d9;
  color: #111;
  line-height: 1.6;
}

.site-header {
  padding: 40px 20px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.title-block {
  text-align: center;
}

.subtitle {
  margin: 5px 0 0 0;
  font-size: 1rem;
  color: #444;
}

h1 {
  margin: 0;
  font-size: 2.4rem;
}

h2 {
  margin-top: 0;
  font-size: 1.8rem;
}

h3 {
  margin-top: 0;
  font-size: 1.3rem;
}

.logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* LOGGOR I LOGGA-SEKTION */
.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.logo-large {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px 60px;
}

.content-row {
  display: flex;
  gap: 50px;
  margin: 50px 0;
  flex-wrap: wrap;
  align-items: center;
}

.text-column {
  flex: 1 1 420px;
  max-width: 520px;
}

.image-column {
  flex: 1 1 380px;
  max-width: 520px;
}

.main-image {
  width: 100%;
  max-width: 520px;
  border-radius: 8px;
}

.booking-section,
.contact-section,
.other-section,
.social-section {
  margin: 70px 0;
  text-align: center;
}

.button-link {
  display: inline-block;
  padding: 12px 22px;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.2s ease;
}

.button-link:hover {
  background: #333;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card {
  background: #ececec;
  border-radius: 10px;
  padding: 16px;
}

.card-image {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

.social-section p {
  margin: 10px 0;
}

.social-section a {
  border-bottom: 1px solid #111;
  text-decoration: none;
}

.social-section a:hover {
  border-bottom: none;
}

a {
  color: #111;
}

a:hover {
  text-decoration: none;
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    gap: 10px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .text-column,
  .image-column {
    max-width: 100%;
  }
}