/* ================= GENERAL ================= */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #222;
  background: #f4f4f4;
}

img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero h1,
.hero p {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

/* ================= NAVIGATION ================= */
nav {
  background: white;
  padding: 15px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: black;
  font-weight: bold;
}

/* ================= ABOUT ================= */
.about {
  padding: 60px 20px;
  text-align: center;
  background: white;
}

.about h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.about p {
  max-width: 800px;
  margin: 15px auto;
  line-height: 1.6;
}

/* ================= DIVIDER ================= */
.divider {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.divider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.divider h2 {
  position: relative;
  color: white;
  font-size: 40px;
  letter-spacing: 2px;
  z-index: 1;
}

/* ================= GALLERY (Drone + Bil) ================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  padding: 60px 20px;
}

/* Luft mellom drone og bil seksjon */
.car-gallery {
  margin-top: 120px;
  gap: 45px; /* Ekstra luft mellom bilbildene */
}

/* ================= PRICE SHEET ================= */
.price-sheet {
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.price-sheet .sheet {
  background: white;
  padding: 50px 40px;
  max-width: 800px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.price-sheet h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 30px;
}

.price-sheet .package {
  font-size: 20px;
  line-height: 2;
  margin-bottom: 15px;
}

/* ================= INFO SECTIONS ================= */
.business-photo-info,
.private-photo-info {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
  line-height: 1.7;
}

/* ================= CONTACT ================= */
.contact {
  background: white;
  padding: 60px 20px;
  text-align: center;
}

.contact h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.contact-list {
  list-style: none;
  padding: 0;
  max-width: 400px;
  margin: 0 auto;
}

.contact-list li {
  padding: 10px 0;
  font-size: 18px;
  border-bottom: 1px solid #eee;
}

.contact-list li:last-child {
  border-bottom: none;
}

/* ================= CONTACT PAGE ================= */
.kontakt-wrapper {
  min-height: 100vh;
  background-image: url("images/hero4.JPG");
  background-size: cover;
  background-position: center;
  padding: 60px 15px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.kontakt-ark {
  background: white;
  width: 100%;
  max-width: 800px;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.kontakt-ark h2 {
  text-align: center;
  margin-bottom: 30px;
}

.kontakt-ark label {
  display: block;
  margin-top: 20px;
  font-weight: bold;
}

.kontakt-ark input,
.kontakt-ark textarea {
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.kontakt-ark button {
  margin-top: 30px;
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 6px;
  background-color: #111;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.kontakt-ark button:hover {
  background-color: #333;
}

/* ================= FOOTER ================= */
footer {
  text-align: center;
  padding: 25px;
  background: black;
  color: white;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .hero {
    padding: 70px 15px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .gallery {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .car-gallery {
    margin-top: 80px;
  }

  .kontakt-ark {
    padding: 25px;
  }

  nav {
    flex-direction: column;
    gap: 10px;
  }
}
