/* Algemene stijl */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

a {
  text-decoration: none;
  color: #333;
  border-radius: 5px;
  padding: 2px;
  margin: 5px;
}
a:hover {
  transition: border 0.3s;
  transition: color 0.5s;
  border: solid #039799 1px;
  color: #004995;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  height: clamp(15px, 10vh, 150px);
  max-height:25vh;
  margin-top:5px;
}

.btn {
  background-color: #007BFF;
  color: #fff;
  padding: 5px 4px;
  border-radius: 6px;
  transition: background 0.5s;
  white-space: nowrap;
}

.btn:hover {
  background-color: #0056b3;
}

/* Hero */
.hero {
  background-color: #007BFF;
  color: white;
  padding: 10px 10px;
  text-align: center;
}

.hero-content b {
  font-size: 36px;
}

.hero-content p {
  font-size: 18px;
}

.btn-white {
  background: white;
  color: #007BFF;
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: bold;
  white-space: nowrap;
}


/* Footer */
.footer {
  background: #010733;
  color: white;
  padding: 5px 5px;
  position: fixed;
  bottom: 0;
  width: 92vw;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  border-radius: 10px;
  pointer-events: none; /* voorkomt klikbaarheid wanneer verborgen */
  transition: opacity 1.4s ease-in; /* overgang met ease-in */
  font-size:0.9rem;
  text-align: center;
  z-index: 5;
}

.footer.visible {
  opacity: 0.7;
  pointer-events: auto;
}

.footer button {
  background: #007BFF;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
}


.addtocartform input[type="text"],  input[type="number"]{
	width:75%;
}

.uniekmaken {
  background: rgba(1,53,100,0.63);
  color:#fff;
  border-radius: 8px;
  padding:15px;
  margin:15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.uniekmakendesigner {
  background: rgba(14,100,73,0.63);
  color:#fff;
  border-radius: 8px;
  padding:15px;
  margin:15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Producten */
.products-section {
  padding: 10px 10px;
  background-color: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
}

.product-grid {
  display: grid;
  /*grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));*/
  grid-template-columns: repeat(auto-fit, minmax(220px, max-content));
  gap: 15px;
  justify-content: center; 
}

.product-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.4s;
  max-height: 350px;
  min-width: 200px;
  max-width: 350px;
  padding: 5px;
  position: relative;
   padding-bottom: 40px;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-img {
  padding: 6px;
  max-height: 200px;
  max-width: 90%;
}

.product-img-home {
  padding: 6px;
  height: 50%;
  max-width:100%;
}

.product-info{
	min-height: 250px;
}

.price {
  font-weight: bold;
  color: #007BFF;
  position: absolute;
  left: 5px;
  bottom: 15px;
}

@keyframes flash {
  0% { background-color: yellow; border: solid red 1px; }
  100% { background-color: transparent; }
}
.productb-price.flash {
  animation: flash 1s;
}

.product-btn{
  padding: 6px 6px;
  background: #007BFF;
  color: white;
  border: none;
  border-radius: 4px;
  position: absolute;
  right: 5px;
  bottom: 5px;
}



/* SHOP ==========*/

/* Hero sectie */
.productb-hero {
  background: #f4f4f4;
  padding: 40px 20px;
  text-align: center;
}

.productb-hero__title {
  font-size: 2rem;
  color: #333;
}

/* Grid */
.productb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 30px;
}

.full-width-row {
  grid-column: 1 / -1;
  width: 90vw;
  height: 25px;
  background-color: #010436;
  color: #fff;
  text-align: center;
  line-height: 20px;
  margin: 0 auto;
  padding: 2px;
}
/* Productkaarten */
.productb-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.productb-card__image-wrapper {
  text-align: center;
  margin-bottom: 15px;
}

.productb-card__image {
  max-width: 50vw;
  max-height: 50vh;
}

.productb-card__info {
  margin-top: 10px;
}

.productb-card__description {
  color: #555;
  font-size: 1rem;
}

/* Formulier */
.productb-form label {
  font-weight: bold;
  font-size: 0.95rem;
  display: inline-block;
  margin-bottom: 5px;
}

.productb-form input[type="text"],
.productb-form input[type="number"] {
  width: 90%;
  padding: 8px;
  margin-bottom: 10px;
  margin-left: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.productb-form__custom {
  margin-top: 15px;
  font-size: 0.95rem;
  background-color: #003648;
  color: #fff;
  
  
}

/* Knop */
.btn {
  padding: 6px 10px;
  background-color: #008cba;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
}

.btn--small {
  font-size: 0.9rem;
}

.btn--small--disabled {
  font-size: 0.9rem;
  background-color: #971013 !important;
}

.btn-shop {
  padding: 6px 10px;
  background-color: #008cba;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  width: 50%;
  font-size:1.2rem;
}

.btn-shop-disabled {
  padding: 6px 10px;
  background-color: #971013 !important;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  width: 50%;
  font-size:1.2rem;
}

.btn:hover {
  background-color: #0073a6;
}

/* Prijs */
.productb-price {
  display: inline-block;
  margin-left: 15px;
  font-weight: bold;
  color: #333;
  font-size: 1rem;
}



/* header ===========================*/
/* Basis layout voor de header */
.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem;
}

/* Navigatie als kolom op mobiel */
.nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
}

/* Navigatielinks stijlen */
.nav a {
  text-decoration: none;
  color: black;
  padding: 5px;
  border-radius: 5px;
}

/* Actieve knop */
.nav .btn {
  background-color: #ddd;
  font-weight: bold;
}

.nav a {
  transition: color 0.3s;
}

.nav a:hover {
  color: #007BFF;
}


/* Media query voor grotere schermen */
@media (min-width: 700px) {
  .header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .nav {
    flex-direction: row;
    gap: 1rem;
  }
}
@media (max-width: 700px) {
	.hidewhensmall {
        display: none;
  }
}

/*Info popup*/

/* Styling voor de popup (standaard verborgen) */
.popup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5); /* Zwarte achtergrond met transparantie */
    justify-content: center;
    align-items: center;
}

/* Inhoud van de popup */
.popup-content {
    background-color: white;
    color:#000e3e;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    width: 80%;
    max-width: 80%;
    position:relative;
}

/* Sluitknop in de popup */
.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    background-color: rgba(255,47,0,0.6);
    color:#fff;
    border-radius : 15px;
	padding-left:10px;
	padding-right:10px;
}

.infobtn{
	background-color:#009;
	color:#fff;
	padding-left:10px;
	padding-right:10px;
	border-radius:15px;
	text-align:center;
	  cursor: pointer;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 99vw;
    height: 99vh;
    background-color: rgba(0, 0, 0, 0.5); /* Zwarte achtergrond met transparantie */
    text-align: center;    
    justify-content: center;
    align-items: center;
}

.modaldiv {
    z-index: 11;
    border-radius: 5px;
    object-fit: contain;
	 width: 95%;
    height: 95%;
    position:relative;
}

/*Table*/
.nicetable{
  border-collapse: collapse;
  width: 95vw;
}
.nicetable td, .nicetable th {
  border: 1px solid #0094d4;
    background-color: #b9d1fc;
  padding: 8px;
}
.nicetable tr:nth-child(even) td{
    background-color: #b3caf4;
}
.nicetable tr:hover td {
    background-color: #203301;
  	color: white;
}
.nicetable th{
  padding-top: 2px;
  padding-bottom: 2px;
  text-align: left;
  background-color: #0094d4;
  color: white;
}
