/* style.css */

/* Basis-reset en font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    /* Achtergrond-afbeelding:
     Omdat style.css in dezelfde map staat als glaszetter.jpg,
     volstaat url('glaszetter.jpg') */
    background: url('glaszetter.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #333;
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff6600;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 1rem;
}

nav a.active {
    color: #ff6600;
}

/* Hero-sectie */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.8);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ff6600;
}

.hero p {
    font-size: 1.1rem;
    color: #333;
}

/* Services-sectie */
.services {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 60px 20px;
    flex-wrap: wrap;
}

.service-box {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    width: 280px;
}

.service-box img,
.service-box .service-icon {
    display: block;
    margin: 0 auto 15px;
}

.service-box img {
    width: 60px;
}

.service-box .service-icon {
    font-size: 50px;
    color: #ff6600;
}

.service-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.service-box p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

/* Call-to-action knop */
.cta {
    text-align: center;
    margin: 60px 0;
}

.cta a {
    background-color: #ff6600;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    font-weight: bold;
}

.cta a:hover {
    background-color: #e65c00;
}

/* Footer */
footer {
    background-color: rgba(255, 255, 255, 0.85);
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: #777;
}