@font-face {
  font-family: 'Roboto';
  src: url('roboto/Roboto-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url('roboto/Roboto-Italic-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', Helvetica, sans-serif;
}

/* ── HEADER ── */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0 2.5rem;
  height: 76px;
}

.center-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  font-family: 'Roboto', Helvetica, sans-serif;
  font-weight: bold;
  text-decoration: none;
  color: inherit;
}

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

  /* Header */
  header {
    padding: 0 1.5rem;
    height: 64px;
  }

  .center-logo {
    display: none;
  }

  nav {
    gap: 1rem;
  }

  nav a {
    font-size: 0.8rem;
  }

}

/* ── CARROUSEL ── */
.carousel {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.7s ease;
}

.carousel-track img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.3);
  border: none;
  color: white;
  font-size: 1.5rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
  z-index: 10;
}

.carousel-btn:hover {
  background: rgba(255,255,255,0.6);
}

.carousel-btn.prev { left: 1.5rem; }
.carousel-btn.next { right: 1.5rem; }

.carousel-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
}

.dot.active {
  background: white;
}

/* ── PRODUCT SECTIE ── */
.product-section {
  display: flex;
  align-items: center;
  padding: 4rem 2.5rem;
  gap: 4rem;
}

.product-section img {
  width: 50%;
  object-fit: cover;
}

.product-text {
  width: 50%;
}
