body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: linear-gradient(135deg, #e0f3ff 0%, #bcd2e8 40%, #f0f2f5 70%, #e5e7eb 100%);
  background-size: 200% 200%;
  animation: fjordWaves 12s ease-in-out infinite;
  color: #222;
  margin: 0;
  padding: 0;
}
header {
  background: linear-gradient(120deg, #2d3e50 0%, #3a5d7c 50%, #2d3e50 100%);
  background-size: 200% 200%;
  animation: fjordGradient 8s ease-in-out infinite;
  color: #fff;
  padding: 2rem 1rem 0.5rem 1rem;
  text-align: center;
}
header h1 {
  margin: 0;
  font-size: 2.5rem;
  letter-spacing: 2px;
}
.container {
  max-width: 800px;
  margin: 2rem auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 2rem;
}
.slideshow {
  width: 100%;
  height: 380px;
  background: #1a2533;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #888;
  font-size: 1.2rem;
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
  padding-top: 0;
}
#slideshow-img-1, #slideshow-img-2 {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: opacity 2s ease;
}
.section {
  margin-bottom: 2rem;
}
.section h2 {
  margin-top: 0;
  color: #2d3e50;
  font-size: 1.3rem;
}
.side-section {
  background: #f0f4f8;
  border-left: 4px solid #2d3e50;
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 8px;
}
.map-placeholder {
  width: 100%;
  height: 180px;
  background: #d0d0d0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1rem;
}
input, textarea, button {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.6rem;
  border-radius: 5px;
  border: 1px solid #bbb;
}
button {
  background: #2d3e50;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
button:hover {
  background: #1a2533;
}
.contact, .donate {
  margin-top: 1.5rem;
  text-align: center;
}
.donate a {
  display: inline-block;
  background: #ffc439;
  color: #222;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 0.5rem;
  transition: background 0.2s;
}
.donate a:hover {
  background: #ffb347;
}
@media (max-width: 600px) {
  .container { padding: 1rem; }
  header h1 { font-size: 1.5rem; }
  .side-section {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .side-section img {
    max-width: 90vw !important;
    height: auto !important;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
    display: block;
  }
  .side-section > div[style*='align-items: center'] {
    width: 100% !important;
    justify-content: flex-start !important;
  }
  header img[alt="Fjordphoto Logo Blue"] {
    max-width: 32vw !important;
    height: auto !important;
    min-width: 60px;
  }
  header img[alt="Museum Logo"] {
    max-width: 54vw !important;
    height: auto !important;
    min-width: 90px;
  }
  .fjord-heading-bg {
    max-width: 98vw;
  }
  header div[style*='font-size: 1.05rem'] {
    font-size: 0.85rem !important;
  }
}
.slideshow-btn {
  background: #2d3e50;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.5rem;
  transition: background 0.2s;
}
.slideshow-btn:hover {
  background: #1a2533;
}

@keyframes fjordGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes fjordWaves {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.side-section img {
  max-width: 100%;
  height: auto;
  display: block;
}

a img:hover, a:focus img {
  box-shadow: 0 4px 24px rgba(58, 93, 124, 0.18), 0 2px 8px rgba(0,0,0,0.12);
  transform: scale(1.04);
  transition: box-shadow 0.2s, transform 0.2s;
  outline: none;
}

a img {
  transition: box-shadow 0.2s, transform 0.2s;
}

.fjord-heading-bg {
  background: #1a2533;
  border-radius: 8px 8px 0 0;
  margin: 0 auto -8px auto;
  width: 100%;
  max-width: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
.fjord-heading {
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin: 0;
  padding: 1.1rem 0 1.1rem 0;
  text-align: center;
}
.fjord-heading-animated {
  color: #7a7d81;
}
.fjord-heading-animated {
  color: #f7f7f7;
  animation: fjordTextFade 2.5s ease-in-out infinite alternate;
}
@keyframes fjordTextFade {
  0% { color: #fff; }
  100% { color: #e5e7eb; }
} 