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

body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f4f4f4;
    background-image: url('websiteachtergrond.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100%;
}

a {
    text-decoration: none;
    color: #fff;
}

.container {
    width: 90%;
    max-width: 1080px;
    margin: auto;
    overflow: hidden;
}

/* Header */
header {
    background: #3f4a74;
    padding: 20px 0;
}

header .logo img {
    width: 150px;
    float: left;
}

header nav {
    float: right;
}

header nav ul {
    list-style: none;
}

header nav ul li {
    display: inline;
    margin-left: 20px;
}

header nav ul li a {
    color: #fff;
    font-weight: bold;
}

/* Hero Section */
.hero {
    height: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    /* Adds slight overlay for readability */
}

.hero h1 {
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1 span {
    color: #ea73ad;
}

.hero p {
    font-size: 1.5rem;
    margin: 10px 0 20px;
}

.hero-buttons .btn {
    display: inline-block;
    background: #7e718a;
    padding: 12px 25px;
    margin: 5px;
    border-radius: 5px;
    font-weight: bold;
}

.hero-buttons .btn:hover {
    background: #ea73ad;
}

/* Content Section */
.content {
    padding: 50px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 600px;
    max-width: 1080px;
    margin: auto;
}


.left-column,
.right-column {
    width: 48%;
    text-align: center;
}


.left-column ul,
.right-column ul {
    list-style: none;
    margin: 20px 0;
}

.left-column ul li,
.right-column ul li {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.left-column img,
.right-column img {
    width: 100%;
    margin-top: 20px;
}

/* Footer */
footer {
    background: #3f4a74;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

.adventure-image {
    max-width: 50%;
    height: auto;
    width: 100px;
    /* Kies de gewenste breedte */
}

.Features-image {
    max-width: 50%;
    height: auto;
    width: 100px;
    /* Kies de gewenste breedte */
}

.left-column ul li:hover,
.right-column ul li:hover {
    color: #ea73ad;
    /* Roze kleur zoals de knoppen */
    cursor: pointer;
    /* Verandert de cursor naar een handje */
}