/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: Arial, sans-serif;
    background: #f5f7fa;
    color: #333;
}

/* HEADER */
header {
    background: #ff6f00;
    color: white;
    padding: 20px;
    font-size: 24px;
    font-weight: bold;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
}

/* SEARCH BOX */
.search-box {
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.search-box input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    flex: 1;
    min-width: 150px;
}

.search-box button {
    padding: 10px 20px;
    background: #ff6f00;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
}

.search-box button:hover {
    background: #e65c00;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

/* CARD */
.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

/* IMAGE */
.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* CONTENT */
.card-content {
    padding: 15px;
}

/* TITLE */
.card-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* PRICE */
.price {
    color: #ff6f00;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

/* LOCATION */
.location {
    color: #666;
    margin-bottom: 10px;
}

/* BUTTONS */
.card-content a {
    display: inline-block;
    margin-right: 10px;
    padding: 8px 12px;
    background: #ff6f00;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.2s;
}

.card-content a:hover {
    background: #e65c00;
}

/* SECOND BUTTON (vergelijk) */
.card-content a:last-child {
    background: #007bff;
}

.card-content a:last-child:hover {
    background: #0056b3;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .search-box {
        flex-direction: column;
    }
}
.buttons {
    margin-top: 10px;
}

.btn-orange {
    background: #ff6a00;
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    margin-right: 5px;
    display: inline-block;
}

.btn-blue {
    background: #007bff;
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
}

.btn-orange:hover {
    background: #e55d00;
}

.btn-blue:hover {
    background: #0056b3;
}