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

body{
    font-family: Arial, Helvetica, sans-serif;
    background:black;
    color:white;
    line-height:1.6;
}

/* NAVBAR */
nav{
    background:#111;
    padding:20px 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

nav h2{
    letter-spacing:3px;
}

nav ul{
    list-style:none;
    display:flex;
    gap:30px;
}

nav a{
    color:white;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
}

nav a:hover{
    opacity:0.6;
}

/* HEADER */
header{
    text-align:center;
    padding:80px 20px;
}

header h1{
    font-size:48px;
    letter-spacing:4px;
}

/* CONTENT BLOCKS */
.section{
    padding:60px 20px;
    max-width:1100px;
    margin:0 auto;
}

.block{
    background:#111;
    padding:40px;
    margin-bottom:40px;
    border:1px solid #222;
}

/* FOOTER */
footer{
    text-align:center;
    padding:30px;
    background:#111;
    margin-top:60px;
    font-size:14px;
    color:#777;
}

.card img{
    width:100%;
    max-width:900px;
    height:500px;       /* Forces same height for all images */
    object-fit:cover;   /* Prevents stretching */
    display:block;
    margin:0 auto;
}

.home-image{
    width:100%;
    max-width:800px;
    display:block;
    margin:40px auto 0 auto;
    border-radius:6px;
}

.content{
    max-width:800px;
    margin:auto;
}

.text{
    font-size:18px;
    margin-bottom:40px; /* space between text and image */
}

.image-block{
    text-align:center;
    margin-top:40px;
}

.image-block img{
    width:100%;
    max-width:500px;
}

.caption{
    margin-top:10px;
    font-size:14px;
    color:gray;
}

/* Gallery inside info block */

.gallery{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:15px;
    margin-top:30px;
}

.gallery img{
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:6px;
}

/* Contact formulier styling */

form{
width:60%;
margin:auto;
display:flex;
flex-direction:column;
gap:10px;
}

input, textarea, select{
padding:8px;
}

button{
padding:10px;
cursor:pointer;
}

table{
width:80%;
margin:40px auto;
border-collapse:collapse;
}

th, td{
border:1px solid black;
padding:10px;
text-align:center;
}