:root {
  --turquoise: #1dd3c6;
  --dark: #0b0b0b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: var(--dark);
  color: #fff;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  background: rgba(0, 0, 0, 0.95);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  height: 110px;
}

nav {
  display: flex;
  gap: 25px;
}

nav a {
  color: #fff;
  text-decoration: none;
}

nav a:hover {
  color: var(--turquoise);
}

.lang button {
  background: transparent;
  border: 1px solid var(--turquoise);
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
}

.lang button:hover {
  background: var(--turquoise);
  color: #000;
}

/* Hero */
.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 8%;
  background: radial-gradient(circle at top, #1dd3c633, transparent 60%);
}

.hero h1 {
  font-size: 3rem;
}

.hero span {
  color: var(--turquoise);
}

.hero p {
  margin: 20px auto;
  max-width: 600px;
}

.cta {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 40px;
  background: var(--turquoise);
  color: #000;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
}

/* Sections */
.section {
  padding: 80px 8%;
  text-align: center;
}

.section.dark {
  background: #111;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.box,
.price {
  background: #151515;
  padding: 30px;
  border-radius: 18px;
  border: 1px solid #222;
}

.featured {
  border: 2px solid var(--turquoise);
}

form {
  max-width: 400px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input,
textarea,
select,
button {
  padding: 14px;
  border-radius: 10px;
  border: none;
}

button {
  background: var(--turquoise);
  font-weight: bold;
}

footer {
  text-align: center;
  padding: 30px;
  opacity: 0.6;
}

.whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: #fff;
  padding: 15px 18px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 24px;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0b0b0b;
  color: white;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  background: black;
}

.logo {
  height: 90px; /* ← hier maak je logo groter */
  width: auto;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 500;
}

.lang button {
  margin-left: 5px;
  padding: 5px 10px;
  cursor: pointer;
}

.hero {
  padding: 100px 40px;
  background: linear-gradient(135deg, #000, #003b3b);
}

.cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: turquoise;
  color: black;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}
.instagram {
  position: fixed;
  bottom: 90px; /* boven WhatsApp */
  right: 25px;
  width: 55px;
  height: 55px;
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.instagram:hover {
  transform: scale(1.1);
}

.instagram svg {
  width: 28px;
  height: 28px;
  fill: white;
}
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }

  .header nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .hero {
    padding: 60px 15px;
  }

  .grid {
    grid-template-columns: 1fr; /* alles onder elkaar op mobiel */
    gap: 15px;
  }

  .section {
    padding: 40px 15px;
  }

  form {
    width: 100%;
    padding: 0 10px;
  }

  input, select, textarea, button {
    width: 100%;
  }

  .cta {
    padding: 10px 20px;
  }
}

