﻿/* Reset styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

/* Header Section */
header {
    background-color: #3e3e3e;
    padding: 20px 20px;
    color: white;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.buttons {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

    .buttons:hover {
        text-decoration: underline;
    }

.cart {
    font-size: 2em;
    text-decoration: none;
}

.logo {
    width: auto;
    height: 90px;
}

/* Cart Icon */
.cart-icon {
    width: 30px;
    height: 30px;
    background-color: #d3d3d3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000;
    border-radius: 5px;
}

/* Main Content */
.main-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-left: 12%;
    margin-right: 12%;
}

/* Card */
.card {
    width: 500px;
    background-color: #ddd;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Dark Gray Block as Image Placeholder */
.card-image {
    width: 100%;
    height: 250px;
    background-color: #4c4c4c;
    border-radius: 5px;
    margin-bottom: 10px;
}

.card-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.card-info {
    font-size: 14px;
    color: #333;
}

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
}

/* Basisstijl voor de footer */
.footer {
    background-color: #555; /* Donkergrijze achtergrondkleur */
    padding: 20px 0;
    text-align: center;
    color: white;
    font-size: 18px;
}

/* Stijl voor de links in de footer */
.footer-content a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-weight: normal;
}

    /* Afstand tussen de links */
    .footer-content a:hover {
        text-decoration: underline;
    }