
/* ========================================
   RESET & BASE
======================================== */
*, *::before, *::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: 'Inria Sans', sans-serif;
    color: #f0f0f0;
    background: #0d1a0f;
}

/* ========================================
   HEADER / NAV
======================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 40px;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: background 0.4s ease;
}

header.scrolled {
    background: rgba(10, 11, 10, 0.37);
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    color: #ffffff;
    text-decoration: none;
  
    font-size: 1.6rem;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    padding: 8px 16px;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.nav-links a.active {
    color: #ffffff;
    background: rgba(100, 200, 120, 0.18);
    border: 1px solid rgba(100, 200, 120, 0.25);
}


.section-container {
    width: 100%;
    background: linear-gradient(160deg, #0d2e14 0%, #0a1a0b 50%, #021008 100%);
    padding-top: 80px;
}

/* ========================================
   INFO SECTION (Product van de week)
======================================== */
.info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin:0 auto;
    padding: 100px 60px;
}

.info-img {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 5 / 6;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: box-shadow 0.5s ease-in-out,transform 0.3s ease-in-out;
   
}
.info-img:hover{
    transform: scale(1.05);
    box-shadow:2px 2px 30px rgba(100, 200, 120, 0.6);
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-text h2 {
    font-family:  sans-serif;
    font-size: 2.4rem;
    color: #ffffff;
    line-height: 1.2;
}

.info-text p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
}

/* ========================================
   ABOUT SECTION — UNTOUCHED (origineel)
======================================== */
.about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px;
}



.about-text h2 {
     font-family:  sans-serif;
    font-size: 2.4rem;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
}

.circle-image {
    width: 450px;
    height: 400px;
    border-radius: 50%;
    background: url("https://placehold.co/400x400") center / cover;
    transition: transform 0.3s ease-in-out,box-shadow 0.5s ease-in-out;
}
.circle-image:hover{
    transform: scale(1.05);
    box-shadow:2px 2px 30px rgba(100, 200, 120, 0.6);
}
/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-block;
    background: #2e7d45;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 12px 28px;
    font-size: 1rem;
    font-family: 'Inria Sans', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
    align-self: flex-start;
}

.btn:hover {
    background: #3a9957;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(46, 125, 69, 0.35);
}

.btn:active {
    transform: translateY(0);
}

/* ========================================
   BURGER MENU
======================================== */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 10000;
    padding: 4px;
}

.burger-menu span {
    background-color: #ffffff;
    display: block;
    width: 28px;
    height: 3px;
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.25s ease;
}

.change.burger-menu span:nth-child(1) {
    transform: translate(0, 9px) rotate(-45deg);
}
.change.burger-menu span:nth-child(2) {
    opacity: 0;
}
.change.burger-menu span:nth-child(3) {
    transform: translate(0, -9px) rotate(45deg);
}

/* ========================================
   OVER ONS PAGE — BASE
======================================== */
main {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 0 60px;
    
}

.container {
    width: 100%;
}

h1 {
    text-align: center;
    color: #ffffff;
    font-family:  sans-serif;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

hr {
    opacity: 0.08;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin: 2rem 0;
}


.intro-section {
    margin: 2rem 0;
}

.intro-section p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    line-height: 1.75;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}


.team-section {
    margin: 4rem 0;
}

.team-section h2 {
    text-align: center;
    color: #ffffff;
    font-family:  sans-serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}


.team-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: rgba(100, 200, 120, 0.6);
    border-radius: 2px;
    margin: 8px auto 0;
}


.team-members {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    
    margin: 3rem 0;
}

/* Each member card */
.team-members > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 24px 20px;
    transition: transform 0.25s ease, background 0.25s ease;
}

.team-members > div:hover {
    transform: translateY(-4px);
    background: rgba(100, 200, 120, 0.06);
}

.team-members img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(100, 200, 120, 0.25);
}

.team-members h3 {
    color: #ffffff;
    text-align: center;
    font-family:  sans-serif;
    font-size: 1rem;
    font-weight: 400;
}

.team-members h5 {
    font-size: 0.75rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Inria Sans', sans-serif;
    font-weight: 400;
}


.discr-btn {
    background: rgba(0, 141, 129, 0.15);
    border: 1px solid rgba(0, 141, 129, 0.35);
    padding: 10px 22px;
    margin: 12px 0 0;
    color: #ffffff;
    border-radius: 10px;
    font-family: 'Inria Sans', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.discr-btn:hover {
    background: rgba(0, 141, 129, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 141, 129, 0.25);
}
/* TEST JEZELF */
.progress-bar {
      width: 100%;
  height: 22px;
  background: #e0e0e0;
  border-radius: 999px;   
  overflow: hidden;    
}

.test-page-container {
  max-width: 600px;
  margin: 4rem auto;
  display: flex;
  justify-content: center;
  height: 100vh;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
}

.image {
  width: 300px;
  height: 300px;
  border-radius: 16px;
  background: #e8f5ef;
  border: 1px solid #ddd;
}

.text {
  text-align: center;
}

.text h1 {
  font-size: 22px;
  margin-bottom: 8px;
}

.text p {
  font-size: 14px;
  color: #666;
  max-width: 340px;
  line-height: 1.65;
}

.progress-bar {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
}

.bar-track {
  flex: 1;
  height: 10px;
  background: #e8e8e0;
  border-radius: 999px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  width: 0%;
  background-color: #1D9E75;
  border-radius: 999px;
  transition: width 0.5s ease;
}

.check-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.2s ease-in-out;
}
.check-btn.done {
  background: #1D9E75;
  color: #fff;
  border-color: #1D9E75;
}

.pct-label {
  font-size: 13px;
  color: #888;
  align-self: flex-start;
}

/* PRODUCTEN PAGE  */
.product-page {
    max-width: 1200px;
    margin: 120px auto 60px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 0 40px;
}

.product-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-images img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s ease;
}

.product-images img:hover {
    transform: scale(1.02);
    box-shadow: 2px 2px 30px rgba(100,200,120,0.6);
}

.product-info h2 {
    font-family:  sans-serif;
    font-size: 2.2rem;
}

.product-maker {
    color: rgba(255,255,255,0.5);
    margin-bottom: 30px;
}

.product-description {
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

.product-price {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.buy-btn {
    background: #e53935;
}

.buy-btn:hover {
    background: #ff4b47;
}
/* Contact PAGE */

.contact-section {
    max-width: 750px;
    margin: auto;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-intro {
    text-align: center;
    color: rgba(255,255,255,0.8);
    max-width: 550px;
    margin: auto;
    line-height: 1.6;
}


.contact-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    background: rgba(255,255,255,0.02);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

input, select, textarea {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 16px;
    color: #fff;
    width: 100%;
    font-family: 'Inria Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

input:hover, select:hover, textarea:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.2);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(100,200,120,0.6);
    box-shadow: 0 0 0 4px rgba(100,200,120,0.1);
    transform: translateY(-1px);
}

::placeholder {
    color: rgba(255,255,255,0.3);
    font-weight: 300;
}

.checkbox-group {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    user-select: none;
}

.contact-form .btn {
    align-self: flex-start;
    padding: 14px 32px;
    border-radius: 12px;
    background: #64c878;
    color: #0d1117;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(100,200,120,0.3);
}

.contact-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(100,200,120,0.4);
    filter: brightness(1.1);
}

.contact-form .btn:active {
    transform: translateY(0);
}

.input-error {
    border: 1px solid #ff8a8a;
    box-shadow: 0 0 0 4px rgba(255,138,138,0.15);
}

.checkbox-error {
    outline: 2px solid #ff8a8a;
}

.error-msg {
    display: none;
}

.error-visible {
    display: block;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  h1 {
        font-size: 2.4rem;
    }

    .team-members {
        gap: 20px;
    }
    header {
        padding: 14px 24px;
    }

    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 16px;
        position: fixed;
        top: 0;
        left: 0;
        width: 260px;
        height: 100vh;
        background: rgba(8, 18, 10, 0.97);
        --webkit_backdrop-filter: blur(20px);
        z-index: 1001;
        font-size: 1.1rem;
        animation: slideIn 0.3s ease;
    }

    @keyframes slideIn {
        from { opacity: 0; transform: translateX(-100%); }
        to   { opacity: 1; transform: translateX(0); }
    }

    .burger-menu {
        display: flex;
    }

    .info {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 30px;
        gap: 40px;
    }

    .info-text {
        align-items: center;
    }

    .info-img {
        max-width: 300px;
        margin: 0 auto;
    }

    .info-text h2 {
        font-size: 2rem;
    }

    /* About collapses on tablet too */
    .about {
        flex-direction: column;
        padding: 60px 30px;
        text-align: center;
    }

    .circle-image {
        width: 300px;
        height: 270px;
    }
    .product-page{
        max-width: 700px;
        display: grid;
        grid-template-columns:1fr;
        text-align:center;
      

    }
    .product-images img,video{
        width:370px;
        height: 370px;
    }

    .product-info{
        display:flex;
        flex-direction:column;
        align-items:center;
    }
}

@media (max-width: 480px) {

    .logo {
        font-size: 1.3rem;
    }

    .info-text h2 {
        font-size: 1.7rem;
    }

    .info-text p {
        font-size: 0.95rem;
    }

    .info {
        padding: 50px 20px;
    }

    .about {
        padding: 50px 20px;
    }

    .circle-image {
        width: 220px;
        height: 200px;
    }
     main {
        padding: 100px 0 40px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .intro-section p {
        font-size: 0.9rem;
    }

    .team-members img {
        width: 90px;
        height: 90px;
    }

    .team-members > div {
        padding: 16px 14px;
    }
    .product-page{
        max-width: 700px;
        display: grid;
        grid-template-columns:1fr;
        text-align:center;
      

    }
    .product-images img,video{
        width:250px;
        height: 250px;
    }

    .product-info{
        display:flex;
        flex-direction:column;
        align-items:center;
    }
}
