body{
    
    
    font-family: "Exo 2";
  
    margin:0;
    background-color: #f2f2f2; /* lichtgrijs */
}


/* ---------------omhoog en terug --------------------------*/
.side-buttons {
  position: fixed;
  right : 10px;      /* aan de linker kant */
  top: 40%;        /* ongeveer in het midden */
  display: flex;
  flex-direction: column;
  gap: 10px;       /* ruimte tussen de knoppen */
}

.side-buttons button {
  font-size: 24px;       /* grotere pijltjes */
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background-color: #d3d3d3; /* lichtgrijs */
  color: #333;               /* donkergrijs voor contrast */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.side-buttons button:hover {
  background-color: #b0b0b0; /* iets donkerder bij hover */
}


/* ---------------navbar --------------------------*/
#hamburger {
    position: fixed; /* of absolute, afhankelijk van je layout */
    top: 5px;       /* afstand van boven */
    left: 0;         /* helemaal links */
    z-index: 1;   /* zodat het boven andere elementen komt */
    padding: 10px;   /* optioneel voor klikbare ruimte */
    cursor: pointer;
    align-items: center;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;

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

    padding-right: 40px;

    /* Glass effect */
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 11000;
}

.navbar > ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;   /* 👈 dit is de key */
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
    margin-right: 40px;
    height: 100%;
    align-items: center;   /* tekst in lijstjes ook onderin uitlijnen */
}

.navbar li {
    position: relative;
}

.navbar li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(255, 255, 255, 0.3); /* submenu ook glas effect */
    backdrop-filter: blur(8px);
    line-height: 2;
    padding: 0px 0;
    min-width: 200px;
    border-radius: 8px; /* optioneel mooi afgerond submenu */
    list-style: none; /* 👈 verwijdert de bullets */
}

.navbar li:hover > ul {
    display: block;
}

.navbar li ul li {
    padding: 0px 10px;
  
}

.navbar a {
    display: flex;              /* 👈 dit is de fix */
    align-items: center;        /* verticaal centreren */
    height: 100%;               /* vult de navbar hoogte */
    
    text-decoration: none;
    color: red;
    font-weight: bold;
    font-size: 20px;
    -webkit-text-stroke: 0.1px black;
}

.navbar a:hover {
    color: #333;
}
   
/* --------------Header --------------------------*/
.header {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 40px 0;
    background-color: transparent;
    z-index: 1000;
    transition: top 0.3s ease; /* smooth slide */
}

.header h1 {
    color: red !important;
      font-weight: 900; /* zo dik mogelijk */
      font-size: 40px; /* maak het groter voor visueel effect */
      line-height: 1; /* normale line-height */
      -webkit-text-stroke: 0.6px black;
}


.header p.subtitle {
    color: white; /* basis kleur */
    line-height: 1.1;
    font-weight: bold;
    font-size: 28px;
    -webkit-text-stroke: 0.6px black;
}



/* Link zonder kleur override */
.header a {
    text-decoration: none;
    color: inherit; /* laat h1 en p hun eigen kleur behouden */
}


/* ---------------banner --------------------------*/


.banner {
    background-image: url("../images/Index/Banner.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: clamp(1000px, 80vh, 9000px);
    display: flex;
    justify-content: center; /* horizontaal centreren */
    align-items: flex-start; /* start bovenaan */
    text-align: center;
    z-index: 900;
}

.banner h2 {
    margin-top: 490px; /* laat de titel zakken */
    color: red;
    font-size: 32px;
    font-weight: bold;
    -webkit-text-stroke: 0.4px black;
}
/* --------------- hero --------------------------*/

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: clamp(500px, 80vh, 9000px);
  padding: clamp(20px, 5vw, 60px);
  background-color: #999;
  color: white;
  
}

.hero-container {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 4vw, 40px);
  padding: clamp(20px, 4vw, 40px);
  background: rgba(0,0,0,0.65);
  border-radius: 20px;
  text-align: center;
}

.hero-text {
  width: 80%;
  font-size: clamp(18px, 2.5vw, 25px);
  line-height: 1.6;
}

/* ===== CAROUSEL ===== */

.carousel {
  position: relative;
 
  width: 90%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 15px;
  
}

.slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* mooier dan contain */
  object-position: center;
  display: block;
}

/* ===== BUTTONS ===== */

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(35px, 5vw, 50px);
  height: clamp(35px, 5vw, 50px);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: clamp(16px, 2vw, 24px);
  background: rgba(0,0,0,0.5);
  color: white;
  z-index: 2;
  transition: background 0.3s;
}

.prev:hover, .next:hover {
  background: rgba(0,0,0,0.8);
}

.prev { left: 10px; }
.next { right: 10px; }

/* ===== MOBILE ===== */

@media (max-width: 768px) {
  .hero-container {
    padding: 20px;
  }

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

/* --------------- product --------------------------*/
/* Basis */
.product-page {
  display: flex;
  justify-content: center;
  padding: 20px;
  background-color: #f8f8f8;
}

.product-page:first-of-type {
  padding-top: 200px;
}

/* Container */
.product-container {
  display: flex;
  flex-direction: column; /* 👈 mobile-first */
  gap: 20px;
  width: 80%;
  width: 100%;
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Afbeelding */
.product-image {
  width: 90%;
  display: flex;
  justify-content: center;
}

.product-image img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  border-radius: 10px;
}

/* Info */
.product-info {
  text-align: center;
}

.product-info h2 {
  margin: 0;
  color: red;
  font-size: clamp(18px, 2.5vw, 30px);
  text-align: center;
  font-weight: bold;
}

.product-info .description {
  margin: 0px 0;
  text-align: center;
  line-height: 1.6;
  font-size: clamp(16px, 2.5vw, 24px);
  font-weight: bold;
}

.product-info .additional {
    font-size: clamp(12px, 2.5vw, 22px);
  color: #666;
}

/* Prijs + actie */
.product-rental {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

/* Prijs */
.price-box {
  background: #333;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
}

.price {
  margin: 0;
  font-weight: bold;
}

/* Aantal */
.quantity-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity-input {
  width: 60px;
  height: 35px;
  text-align: center;
}

/* Knop */
.btn-rent {
  background: red;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-rent:hover {
  background: darkred;
}

/* ---------------- DESKTOP ---------------- */
@media (min-width: 900px) {
  .product-container {
    flex-direction: row; /* 👈 naast elkaar */
    align-items: center;
  }

  .product-image {
    flex: 1;
  }

  .product-info {
    flex: 2;
    text-align: left;
  }

  .product-rental {
    flex: 1;
  }
}

/* ===== CONTAINER ===== */
.offerte-container {
    text-align: center;
    max-width: 80%;
    margin: 200px auto;
    padding: 25px;
    border-radius: 12px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

/* ===== TITLE ===== */
#offerte-title {
    text-align: center;
    margin-bottom: 25px;
}

/* ===== HEADER + ITEM GRID ===== */
.offerte-header,
.offerte-item {
    display: grid;
    grid-template-columns: 1fr 80px 120px 80px;
    align-items: center;
    gap: 10px;
}

/* ===== HEADER ===== */
.offerte-header {
    text-align: left;
    font-weight: bold;
    padding: 10px;
    border-bottom: 2px solid #ddd;
}

/* ===== ITEMS ===== */
.offerte-item {
    height: 45px;
    text-align: left;
    padding: 8px 10px;
    margin-top: 8px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    transition: 0.2s;
}

.offerte-item:hover {
    transform: scale(1.01);
}

/* ===== TEXT ===== */
.offerte-item p {
    margin: 0;
    font-size: 0.95em;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.offerte-item p:nth-child(2) {
    text-align: center; /* aantal */
}

.offerte-item p:nth-child(3) {
    text-align: left; /* prijs */
}

/* ===== BUTTON (verwijderen) ===== */
.offerte-item button {
    background-color: #ff4d4f;
    color: #fff;
    border: none;
    padding: 6px 5px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

.offerte-item button:hover {
    background-color: #e03e3e;
}

/* ===== FOOTER ===== */
.offerte-footer {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr max-content  160px; /* zelfde als items */
    align-items: center;
    margin-top: 25px;
}

/* ===== TOTAAL (onder prijs kolom) ===== */
.grand-total {
    grid-column: 2;
    text-align: right;
    font-size: 1.3em;
    font-weight: bold;
    white-space: nowrap; /* voorkomt afbreken */
}
/* ===== BUTTON (links) ===== */
#send-offerte {
    grid-column: 1;
    justify-self: start;
    background-color: #1890ff;
    color: white;
    font-size: 15px;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

#send-offerte:hover {
    background-color: #006bb3;
}

/* ===== TOAST ===== */
.toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(20px);
    background: #ff4d4f;
    color: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    opacity: 0;
    transition: 0.3s ease;
    z-index: 9999;
    text-align: center;
}

.toast.show {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
}

/* ===== POPUP ===== */
.auto-popup {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    opacity: 0;
    transition: 0.3s;
    z-index: 9999;
}

.auto-popup.show {
    opacity: 1;
    top: 50px;
}






/* ------------------------------
    Foto sectie & gallery
------------------------------ */
.photo-section {
    width: 80%;
    margin: 200px auto 50px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s;
}
.gallery img:hover { transform: scale(1.05); }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    display: flex;
}
.lightbox.hidden { display: none; }
.lightbox img.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    display: block;
    margin: auto;
}
.lightbox .close { position: absolute; top:20px; right:40px; font-size:40px; color:white; cursor:pointer; }
.lightbox .prev, .lightbox .next {
    position:absolute; top:50%; transform:translateY(-50%);
    font-size:40px; color:white; background:rgba(0,0,0,0.5);
    border:none; padding:10px 15px; cursor:pointer; border-radius:50%;
}
.lightbox .prev { left:20px; }
.lightbox .next { right:20px; }











/*           Footer       */
 
/* Footer achtergrond en padding */
#footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 10px;  /* genoeg padding voor ruimte, boven en onder */
    box-sizing: border-box;
    /* height: 100px;  <- verwijderen */
    min-height: 100px;
       padding: 20px 10px;   /* optioneel, zodat het niet te klein wordt */
    display: flex;
    flex-direction: column;
    justify-content: center; /* verticaal centreren van inhoud */
    align-items: center;     /* horizontaal centreren */
}

/* Container voor iconen */
#footer .icons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* Vierkante iconen knoppen */
#footer .icons a,
#footer .icon-box {
    display: flex;                /* flex voor centreren van iconen */
    align-items: center;
    justify-content: center;
    width: 50px;                  /* breedte knop */
    height: 50px;                 /* hoogte knop */
    background: #ccc;             /* lichte grijze knop */
    color: #333;                  /* icon kleur */
    font-size: 24px;              /* icon grootte */
    border-radius: 10px;          /* afgeronde hoeken */
    border: 3px solid #999;       /* rand om knop zichtbaar te maken */
    text-decoration: none;
    transition: 0.3s;
}

/* Hover effect voor iconen */
#footer .icons a:hover,
#footer .icon-box:hover {
    background: #25D366;          /* WhatsApp groen */
    color: #fff;
}
