/* Reset og basis */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #fff;
  color: #222;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #ddd;
}

header h1 {
  font-family: "Futura", sans-serif;
  letter-spacing: 1px;
}

.menu-icon {
  font-size: 1.5rem;
  cursor: pointer;
}
.hero {
  position: relative;
  height: 70vh; /* du kan ændre fx til 100vh */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Video der fylder hele baggrunden */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Indholdet ovenpå videoen */
.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

/* Let mørk overlay, så teksten står tydeligt */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.hero h2 {
  font-size: 2rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.3;
}
s
/* Hero section */
.hero {
  position: relative;
  background: url("https://images.unsplash.com/photo-1505691723518-36a5ac3be353?auto=format&fit=crop&w=1200&q=60")
    center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 6rem 1rem;
}

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

.hero h2 {
  position: relative;
  font-size: 2rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.3;
  z-index: 1;
}

.buttons {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  background: #3b362d;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background: #574e40;
  transform: translateY(-2px);
}

/* Products */
.products {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8rem;
  padding: 3rem 2rem;
}

.product {
  text-align: center;
}

.product img {
  width: 220px;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.product img:hover {
  transform: scale(1.05);
}

.product h3 {
  margin-top: 1rem;
  font-size: 1.1rem;
  letter-spacing: 1px;
}
.buy-btn {
  margin-top: 1rem;
  background: #3b362d;
  color: white;
  padding: 0.6rem 1.3rem;
  border: none;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.buy-btn:hover {
  background: #574e40;
  transform: translateY(-2px);
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  background: #f6f6f6;
  color: #666;
}
