/* ========== RESET & BASICS ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #1f2933;
  background-color: #f4f5f7;
  padding-top: 100px; /* ruimte voor fixed navbar */
}

/* ========== NAVIGATION BAR ========== */
/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 60px;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
  z-index: 1000;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease;
}

.navbar--hidden {
  transform: translateY(-100%);
}

/* Logo */
.logo img {
  height: 55px;
}

/* Menu */
.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #111827;
  font-weight: 600;
  font-size: 16px;
  transition: 0.25s;
}

.nav-links a:hover {
  color: #2563eb;
}

/* Right side (social + language) */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Social icons */
.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons img {
  width: 22px;
  height: 22px;
  transition: 0.25s;
}

.social-icons img:hover {
  transform: scale(1.1);
}

/* Language switcher */
.language-switcher {
  display: flex;
  align-items: center;
}

.language-switcher .lang-select {
  padding: 6px 28px 6px 10px;
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  background: #f9fafb;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23003366' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
}

.language-switcher .lang-select:hover {
  border-color: #9ca3af;
}

.language-switcher .lang-select:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.35);
}


/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  height: 400px;
  background-image: url('../img/balkfoto.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  overflow: hidden;
}

.heroCarpets {
  position: relative;
  width: 100%;
  height: 550px;
  background-image: url('../img/balkfoto.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  overflow: hidden;
}

/* Donkere transparante laag boven de afbeelding */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.58); /* iets donkerder overlay voor meer contrast */
  z-index: 1;
}

/* Donkere transparante laag boven de afbeelding */
.heroCarpets::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.58);
  z-index: 1;
}

.contact-badge {
  display: block;
  text-align: center;
  background-color: #e6f2ff; 
  color: #003366;
  padding: 12px 25px;
  border-radius: 25px;
  border: 1px solid #0078ff; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  font-weight: 600;
  width: fit-content;
  margin: 30px auto 10px auto; /* centraalt mooi */
}

/* Tekst-inhoud boven de overlay */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 42px;
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 1px;
}

.hero-content p {
  font-size: 18px;
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}
.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 18px;
  justify-content: center;
}

.btn-primary {
  background: #2563eb;
  color: #ffffff;
  padding: 13px 30px;
  border-radius: 35px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
  border: none;
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  padding: 13px 30px;
  border-radius: 35px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid rgba(229, 231, 235, 0.75);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(15, 23, 42, 0.55);
}


/* PRODUCTS GRID */
.products { display: grid; grid-template-columns: repeat(3,1fr); gap:25px; max-width:1500px; margin:60px auto 0; padding:0 20px; }
.product { text-align:center; background-color:#ffffff; padding:24px; border-radius:14px; transition:0.3s; box-shadow:0 10px 30px rgba(15,23,42,0.04); border:1px solid #e5e7eb; }
.product:hover { transform:translateY(-6px); box-shadow:0 18px 40px rgba(15,23,42,0.12); }
.product img { width:100%; height:250px; object-fit:cover; border-radius:10px; margin-bottom:15px; transition:0.3s; }
.product img:hover { transform:scale(1.05); }
.product h3 { font-size:22px; margin-bottom:10px; color:#111827; }
.product h3 a { text-decoration:none; color:inherit; transition:0.3s; }
.product h3 a:hover { color:#2563eb; }
.product p { font-size:15px; color:#4b5563; line-height:1.6; }

/* INFO SECTION */
.info-section { background-color:#eef2f7; padding:20px; display:flex; justify-content:center; align-items:center; width:100%; }
.info-content { text-align:center; background-color:#ffffff; border-radius:20px; padding:60px 40px; max-width:900px; width:100%; box-shadow:0 18px 45px rgba(15,23,42,0.10); transition:0.3s; border:1px solid #e5e7eb; }
.info-content:hover { transform:translateY(-4px); box-shadow:0 10px 35px rgba(0,0,0,0.08); }
.section-decor { display:flex; flex-direction:column; align-items:center; margin-bottom:20px; }
.info-logo { width:600px; height: 250px;; object-fit:contain; opacity:0.9; margin-bottom:10px; }
.decor-line { width:70px; height:3px; background-color:#2563eb; border-radius:3px; }
.info-content h2 { font-size:36px; color:#0f172a; margin-bottom:18px; font-weight:700; letter-spacing:0.4px; }
.info-content p { font-size:17px; color:#4b5563; line-height:1.8; max-width:750px; margin:0 auto; }

/*REVIEWS SECTION*/
.reviews-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.reviews-header {
  text-align: center;
  margin-bottom: 40px;
}

.reviews-header h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.reviews-header p {
  color: #777;
  font-size: 15px;
}

.reviews-wrapper {
  position: relative;
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.review-card {
  min-width: calc(50% - 10px);
  background: white;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  text-align: left;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.stars {
  color: #f5b50a;
  font-size: 18px;
  margin-bottom: 10px;
}

.review-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.review-card span {
  font-size: 13px;
  color: #888;
}

/* Navigation buttons */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  font-size: 22px;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 2;
}

.prev { left: -10px; }
.next { right: -10px; }

/* Mobile */
@media (max-width: 768px) {
  .review-card {
    min-width: 100%;
  }
} /*EINDE REVIEWS SECTION */

/* FOOTER */
footer { background-color:#2c2c2c; color:#fff; padding:40px 20px 20px; }
.footer-container { display:flex; flex-wrap:wrap; justify-content:space-between; gap:30px; max-width:1200px; margin:0 auto; }
.footer-column { flex:1 1 250px; min-width:250px; }
.footer-column h3 { margin-bottom:15px; color:#f5f5f5; }
.footer-column p, .footer-column a { color:#ccc; text-decoration:none; font-size:0.95rem; }
.footer-column a:hover { color:#fff; }
.footer-column ul { list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, auto));
    column-gap: 18px;
    row-gap: 6px; }
.footer-column ul li { margin-bottom:8px; }
.footer-social-icons { display:flex; gap:15px; margin-top:10px; }
.footer-social-icons img { width:28px; height:28px; transition:0.3s; }
.footer-social-icons img:hover { transform:scale(1.1); }
.map-container { margin-top:15px; }
.footer-bottom { text-align:center; padding-top:15px; border-top:1px solid rgba(255,255,255,0.2); font-size:0.9rem; color:#aaa; }
.footer-social-icons a img {
  width: 28px;
  height: 28px;
  
  transition: 0.3s;
}

.footer-social-icons a img:hover {
  transform: scale(1.1);
}

/* COOKIE BANNER */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
}

.cookie-banner a {
  color: #ccc;
  text-decoration: underline;
}

.cookie-buttons button {
  margin-left: 10px;
  padding: 8px 14px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

#accept-cookies {
  background: #fff;
  color: #000;
}

#reject-cookies {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

/* RESPONSIVE */
@media (max-width:1100px) { .products { grid-template-columns:repeat(2,1fr); } }
@media (max-width:700px) { .products { grid-template-columns:1fr; } .product img { height:auto; } }
@media (max-width:900px) {
  .navbar { flex-direction: column; gap: 15px; padding: 5px; }
  .nav-links { flex-wrap:wrap; gap:20px; justify-content: center; }
  .nav-right{justify-content: center;}
  .social-icons { margin-top:10px; }
  .logo img { height:50px; }
  .hero { height:400px; }
  .hero-content h1 { font-size:35px; }
  .hero-content p { font-size:16px; }
  .info-section { padding:60px 15px; }
  .info-content { padding:40px 20px; }
  .info-logo { width:220px; height:110px; }
  .info-content h2 { font-size:28px; }
  .info-content p { font-size:16px; }

  /* Footer quick links op mobiel: 4 links naast elkaar zodat de footer compacter wordt */
  .footer-column ul {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 10px;
    row-gap: 4px;
  }

  .footer-column ul a {
    font-size: 0.8rem;
  }
}

/* CONTACT PAGE */
.contact-section {
  padding: 80px 20px;
  background: linear-gradient(to bottom right, #f2f6ff, #ffffff);
  display: flex;
  justify-content: center;
}

.contact-container {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: start;
}

/* Title */
.contact-container h2 {
  font-size: 36px;
  margin-bottom: 25px;
  color: #002855;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* FORM BOX */
.contact-form {
  background: #ffffff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid #e8ecf5;
}

.contact-intro {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


/* Labels */
.contact-form label {
  font-size: 15px;
  font-weight: 600;
  color: #003366;
  margin-bottom: -5px;
}

/* Inputs & Textarea */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid #d3d9e5;
  font-size: 16px;
  background: #f9faff;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0078ff;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0, 120, 255, 0.2);
  outline: none;
}

/* SEND BUTTON */
.send-btn {
  background: #0066d6;
  color: #fff;
  padding: 15px;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.25s ease;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 10px;
}

.send-btn:hover {
  background: #004ea5;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 70, 170, 0.25);
}

/* CONTACT INFO BOX */
.contact-info-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
  border: 1px solid #e8ecf5;
}

.contact-info-box h3 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #002855;
  font-weight: 700;
}

.contact-info-box p {
  font-size: 16px;
  margin-bottom: 10px;
  color: #444;
}

/* Map styling */
.contact-info-box iframe {
  border-radius: 12px;
  margin-top: 15px;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }



  /* PAINT.HTML CSS */

  /* SMALL HERO (same styling as large hero but smaller) */
.hero-small {
    position: relative;
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.page-title-section {
    text-align: center;
    padding: 40px 20px;
}

.page-title {
    font-size: 36px;
    font-weight: bold;
}

.page-subtitle {
    font-size: 18px;
    margin-top: 10px;
    color: #555;
}

/* PAINT INFO CARDS */
.product-grid-section {
    padding: 40px 20px;
}

.paint-info-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.paint-info-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.paint-info-card:hover {
    transform: translateY(-5px);
}

/* CONTACT BLOCK */
.contact-block {
    margin: 50px auto;
    text-align: center;
}

.contact-block p {
    font-size: 18px;
    margin-bottom: 15px;
}

.contact-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #111;
    color: #fff;
    border-radius: 10px;
}


}

