:root {
  --primary: #2f6b3b;
  --dark: #222;
  --light: #ffffff;
  --gray: #f4f4f4;
  --text: #333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--gray);
  line-height: 1.6;
}

h1, h2, h3 {
  font-weight: 600;
  letter-spacing: -0.5px;
    text-align: center;
}

p {
  font-size: 15.5px;
}
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;      /* Pas aan naar wens */
    width: auto;
    display: block;
}
@media (max-width: 768px) {

    .logo img {
        height: 50px;
    }

}
/* CONTAINER */
.container {
  width: 92%;
  max-width: 1200px;
  margin: auto;
}

/* TOPBAR */
.topbar {
  background: #009b26;
  color: white;
  font-size: 13px;
  padding: 8px 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

/* mobiel: onder elkaar */
@media (max-width: 768px) {
  .topbar-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* HEADER */
.header {
  top: 34px; /* hoogte van topbar */
    background: var(--light);
}

@media (max-width: 768px) {
  .header {
    top: 56px;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

/* LOGO */
.logo a {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

/* DESKTOP MENU (klassiek rechts) */
.nav {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav a {
  position: relative;
  text-decoration: none;
  color: #222;
  font-size: 15px;
  padding: 6px 0;
  transition: 0.2s ease;
}

/* hover underline (klassieke Helix stijl) */
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: 0.25s ease;
}

.nav a:hover::after {
  width: 100%;
}

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

/* active page */
.nav a.active {
  color: var(--primary);
}

.nav a.active::after {
  width: 100%;
}

/* DROPDOWN WRAPPER */
.dropdown {
  position: relative;
  display: inline-block;
}

/* DROPDOWN BUTTON */
.dropbtn {
  text-decoration: none;
  color: #222;
  font-size: 15px;
  padding: 6px 0;
  display: inline-block;
  position: relative;
}

/* DROPDOWN MENU */
.dropdown-content {
  display: none;
  position: absolute;
  top: 35px;
  left: 0;
  background: white;
  min-width: 220px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border: 1px solid #eee;
  z-index: 999;
}

/* LINKS IN DROPDOWN */
.dropdown-content a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  border-bottom: 1px solid #f2f2f2;
}

.dropdown-content a:hover {
  background: #f7f7f7;
  color: var(--primary);
}

/* SHOW ON HOVER (DESKTOP) */
.dropdown:hover .dropdown-content {
  display: block;
}

/* MOBILE BUTTON */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #222;
}

/* HERO (meer zoals huidige site) */

.hero {
    position: relative;

    width: 100%;
    min-height: 650px;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    background-image: url("../images/warptheme/slider_1.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  
}


.hero-content {

    position: relative;

    z-index: 2;

    color: white;

    max-width: 850px;

    padding: 40px;

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

.hero p {
  font-size: 18px;
}

.hero-content h1,
.hero-content p {
    text-shadow: 2px 12px 16px rgba(0,0,1,1);
}

@media (max-width:992px){

.hero{

    min-height:550px;

}

}

@media (max-width:768px){

.hero{

    min-height:420px;

}

.hero h1{

    font-size:38px;

}

}

@media (max-width:576px){

.hero{

    min-height:320px;

}

.hero h1{

    font-size:30px;

}

.hero p{

    font-size:16px;

}

}

/* PAGE HERO */
.page-hero {
  background: #f6f6f6;
  padding: 60px 0;
  text-align: center;
}

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

/* DETAIL HERO */
.detail-hero {
  background: #f6f6f6;
  padding: 60px 0;
  text-align: center;
}

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

/* DETAIL GRID */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* GALLERY */
.main-img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 15px;
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.thumbs img {
  width: 100%;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.2s;
}

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

/* INFO */
.info h2 {
  margin-bottom: 10px;
}

.info ul {
  margin: 15px 0;
  padding-left: 18px;
}

.info li {
  margin-bottom: 8px;
}

/* MOBILE */
@media (max-width: 768px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .thumbs {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* PRODUCT GRID */
.products {
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.product-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: white;
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
  transition: 0.25s ease;
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.product-card h3 {
  padding: 15px;
  font-size: 16px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* MOBILE */
@media (max-width: 768px) {
  .products {
    grid-template-columns: 1fr;
  }
}

/* MOBILE BUTTON */
.menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}

/* MOBILE MENU (OFF CANVAS STYLE) */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: white;
    padding: 80px 25px 25px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: .3s ease;
    z-index: 2000;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    text-decoration: none;
    color: #222;
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.mobile-menu a:hover {
    color: var(--primary);
}

/* overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 1500;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 3px;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

/* SECTIONS */
.section {
  padding: 60px 0;
}

.section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
}

/* GRID CARDS */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.card {
  background: white;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 10px;
  text-align: center;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.card-image{

    position:relative;

    display:block;

    overflow:hidden;

}

.card-overlay{

    position:absolute;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(0,0,0,.35);

    opacity:0;

    transition:.3s;

}
.card-button{
    background:#009b26;
    color:#fff;
    border:2px solid #fff;
    padding:12px 30px;
    border-radius:4px;
    font-weight:600;
    letter-spacing:.5px;
    transition:.3s;
}

.card-button:hover{
    background:#fff;
    color:#009b26;
}

.card:hover .card-overlay{

    opacity:1;

}

.card:hover img{

    transform:scale(1.08);

}
.card img{

    width:100%;

    display:block;

    transition:.4s ease;

}
.light {
  background: #f7f7f7;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

.split img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

.split3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

.split3 img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

.split4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

.split4 img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

.text h2 {
  margin-bottom: 15px;
  font-size: 30px;
}

.text p {
  margin-bottom: 12px;
  color: #444;
}

/* mobile */
@media (max-width: 768px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.usp .card {
  text-align: left;
  padding: 25px;
}

.usp h3 {
  margin-bottom: 10px;
  color: var(--primary);
}


.image-card {
  padding: 0;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: 0.3s;
}

.image-card:hover img {
  transform: scale(1.05);
}

.cta {
  background: var(--primary);
  color: white;
  text-align: center;
}

.cta .btn {
  background: white;
  color: var(--primary);
}

.center {
  text-align: center;
}

.testimonials{

    background:#f8f8f8;

}

.testimonial-wrapper{

    display:flex;

    align-items:center;

    gap:15px;

}

.testimonial-slider{

    display:flex;

    overflow-x:auto;

    scroll-behavior:smooth;

    gap:25px;

    scrollbar-width:none;

    flex:1;

}

.testimonial-slider::-webkit-scrollbar{

    display:none;

}

.testimonial{

    min-width:350px;

    max-width:350px;

    background:white;

    border-radius:8px;

    padding:30px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    flex-shrink:0;

}

.testimonial p{

    font-style:italic;

    margin-bottom:20px;

}

.testimonial h4{

    color:#009b26;

}

.slider-btn{

    width:45px;

    height:45px;

    border:none;

    border-radius:50%;

    background:#009b26;

    color:white;

    cursor:pointer;

    font-size:20px;

}

.slider-btn:hover{

    background:#00791d;

}

/* FOOTER */
.footerr {
  background: #111;
  color: white;
  padding: 30px 0;
  margin-top: 60px;
  text-align: center;
}

.footer {
  background: #111;
  color: #eee;
  padding: 50px 0 20px;
}

.footer h3, .footer h4 {
  color: white;
  margin-bottom: 10px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.8;
}

.footer a:hover {
  color: white;
}

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid #333;
  text-align: center;
  padding-top: 15px;
  font-size: 13px;
  color: #aaa;
}

/* mobile */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
/* ACTIVE STATES */
.mobile-menu.active {
  right: 0;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .grid4 {
    grid-template-columns:  1fr 1fr;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

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