/* Reset & Basis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    background-color: #0d1117;
    color: #f0f0f0;
    line-height: 1.6;
    padding-top: 80px;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #161b22;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}
header .logo-img {
    height: 50px;
}
.nav-links {
    display: flex;
    gap: 20px;
}
.nav-links li a {
    padding: 5px 10px;
    border-radius: 5px;
    transition: background 0.3s;
}
.nav-links li a:hover,
.nav-links li a.active {
    background-color: #21262d;
}
.login-btn {
    background-color: #238636;
    color: #fff;
    padding: 5px 12px;
    border-radius: 5px;
    transition: 0.3s;
}
.login-btn:hover {
    background-color: #2ea043;
}

/* Hero Secties */
.hero, .login-hero, .info, .video-section {
    text-align: center;
    padding: 60px 20px;
}
.hero img.logo-small,
.info img.logo-small,
.video-section img.logo-small,
.login-card img.logo-small {
    height: 80px;
    margin-bottom: 20px;
}
.hero h2,
.info h2,
.video-section h2,
.login-hero h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}
.hero p,
.info p,
.video-section p,
.login-hero p {
    max-width: 700px;
    margin: 0 auto 15px;
}

/* Products Grid */
.products {
    padding: 40px 20px;
}
.products h2 {
    text-align: center;
    margin-bottom: 30px;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 20px;
}
.product-card {
    background-color: #161b22;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}
.product-card img {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}
.product-card h3 {
    margin-bottom: 10px;
}
.product-card .price {
    font-weight: bold;
    margin-bottom: 10px;
}
.product-card select,
.product-card button.add-btn {
    margin-top: 5px;
    width: 100%;
    padding: 8px;
    border-radius: 5px;
    border: none;
}
.product-card select {
    background-color: #0d1117;
    color: #f0f0f0;
    border: 1px solid #30363d;
}
.product-card button.add-btn {
    background-color: #238636;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}
.product-card button.add-btn:hover {
    background-color: #2ea043;
}

/* Footer */
footer {
    background-color: #161b22;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 1px solid #30363d;
}

/* Winkelwagen */
#cart {
    position: fixed;
    right: -350px;
    top: 0;
    width: 300px;
    height: 100%;
    background-color: #161b22;
    box-shadow: -2px 0 5px rgba(0,0,0,0.5);
    transition: right 0.3s;
    z-index: 2000;
    display: flex;
    flex-direction: column;
}
#cart.open {
    right: 0;
}
.cart-header {
    background-color: #21262d;
    padding: 15px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}
.cart-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.remove-item {
    cursor: pointer;
    color: #f85149;
}
.cart-total {
    padding: 10px;
    font-weight: bold;
    border-top: 1px solid #30363d;
}
.checkout-btn {
    background-color: #238636;
    color: #fff;
    border: none;
    padding: 10px;
    margin: 10px;
    cursor: pointer;
    border-radius: 5px;
}
.checkout-btn:hover {
    background-color: #2ea043;
}
.floating-cart {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #238636;
    color: #fff;
    padding: 15px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 2000;
    transition: 0.3s;
}
.floating-cart:hover {
    background-color: #2ea043;
}

/* Login/Contact forms */
.login-form-section,
.contact-form {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}
.login-card,
.contact-form form {
    background-color: #161b22;
    padding: 30px;
    border-radius: 10px;
    max-width: 400px;
    width: 100%;
}
.form-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}
.form-group label {
    margin-bottom: 5px;
}
.form-group input,
.form-group textarea {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #30363d;
    background-color: #0d1117;
    color: #f0f0f0;
}
.cta-btn {
    background-color: #238636;
    color: #fff;
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.cta-btn:hover {
    background-color: #2ea043;
}
.signup-link {
    text-align: center;
    margin-top: 10px;
}
.signup-link a {
    color: #238636;
}

/* Pop-up */
.popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #238636;
    padding: 15px 25px;
    border-radius: 10px;
    display: none;
    color: #fff;
    font-weight: bold;
    z-index: 3000;
}
.popup.show {
    display: block;
}
/* Info blokjes */
.info-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
}
.info-block {
    background-color: #161b22;
    padding: 20px;
    border-radius: 10px;
    max-width: 300px;
    flex: 1 1 250px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.5);
    transition: transform 0.3s;
}
.info-block:hover {
    transform: translateY(-5px);
}
.info-block h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #238636;
}
.info-block p {
    font-size: 0.95rem;
    line-height: 1.4;
}
.logo-img {
    width: 60px;      /* pas aan hoe groot je hem wil */
    height: 60px;     /* zelfde als width = perfecte cirkel */
    border-radius: 50%;
    object-fit: cover; /* zorgt dat het mooi in de cirkel past */
    border: 2px solid #fff; /* optioneel randje */
}
.green-dot {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
    background-color: #00ff55;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff55;
    cursor: pointer;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    transition: 0.2s;
}

.green-dot:hover {
    transform: scale(1.15);
}

