body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  background: url('img/bak.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #333;
}

h1, h2, h3 {
  margin: 10px 0;
}

.pris-container {
  text-align: center;
  padding: 30px;
}

.pris-container img {
  max-width: 800px;  /* Limit width */
  width: 90%;        /* Scale on smaller screens */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}
/* HEADER / MENU */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  padding: 15px 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}


header .logo h1 {
  font-size: 24px;
  color: #333;
  margin: 0;
  font-weight: bold;
}

nav a {
  text-decoration: none;
  color: #444;
  font-weight: 600;
  margin-left: 20px;
  font-size: 16px;
  transition: color 0.3s;
}

nav a:hover,
nav a.active {
  color: #ff4500; /* Highlight color */
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px;
}

.product {
  background: white;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.2s;
}

.product img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

.product:hover {
  transform: scale(1.02);
}

/* Popup Slideshow Modal */
.gallery-modal {
  display: none; 
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.gallery-content {
  position: relative;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-content img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 5px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 40px;
  color: #333;
  cursor: pointer;
  z-index: 10000;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.3);
  border: none;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 5px;
  z-index: 10000;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

.arrow:hover {
  background: rgba(0,0,0,0.6);
}
/* Våre Produkter - Seksjonstittel */
.section-title {
  display: inline-block;
  padding: 10px 30px;
  background: rgba(255, 255, 255, 0.2); /* Gjennomsiktig hvit */
  backdrop-filter: blur(8px);            /* Glass effekt */
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  color: #333;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin: 20px auto;
}

/* Sentraliser innholdet i main */
main {
  text-align: center;
}

