/* Base styles */
body {
    margin: 0;
    Content-Security-Policy: default-src 'self';

    font-family: Arial, sans-serif;
    background-color: #f1eaea; /* Light background color */
}

/* Sidebar styles */
.sidebar {
    height: 100%;
    width: 250px; /* Width of the sidebar */
    position: fixed; /* Fixed position */
    top: 0;
    left: -250px; /* Hide sidebar by default */
    background-color: #111; /* Dark background for sidebar */
    padding-top: 20px; /* Padding for sidebar content */
    transition: left 0.3s ease-in-out; /* Smooth transition for sidebar */
    z-index: 1000; /* Keep sidebar on top */
}

.sidebar.show {
    left: 0; /* Show sidebar when active */
}

.sidebar h2 {
    color: white; /* Sidebar title color */
    text-align: center;
}

.sidebar .navbar-img {
    display: block; /* Center image */
    margin: 0 auto 20px auto;
    height: 80px; /* Height of the image */
    width: auto;
}

.sidebar ul {
    list-style-type: none; /* Remove list style */
    padding: 0;
}

.sidebar ul li {
    padding: 10px; /* Padding for list items */
    text-align: center;
}

.sidebar ul li a {
    color: white; /* Link color */
    text-decoration: none; /* Remove underline */
    display: block;
    font-size: 18px; /* Font size for links */
}

.sidebar ul li a:hover {
    background-color: #575757; /* Hover background color */
}

/* Content styles */
.content {
    margin-left: 40px; /* Initial margin for content */
    padding: 20px; /* Padding for content */
    transition: margin-left 0.3s; /* Smooth transition for content */
}

.content.shift {
    margin-left: 270px; /* Adjust content margin when sidebar is visible */
}

/* Sidebar button styles */
.sidebar-button {
    position: fixed; /* Fixed position */
    top: 20px; /* Position from top */
    left: 10px; /* Position from left */
    background-color: #111; /* Background color */
    color: white; /* Text color */
    padding: 10px; /* Padding for button */
    cursor: pointer; /* Pointer cursor */
    z-index: 1000; /* Keep button on top */
    transition: background-color 0.3s; /* Smooth background color transition */
}

.sidebar-button:hover {
    background-color: #575757; /* Hover background color */
}

/* Form styles */
.container {
    max-width: 600px; /* Max width for the form */
    margin: 0 auto; /* Center the form */
}

.contact-form {
    display: flex; /* Flexbox for form layout */
    flex-direction: column; /* Stack elements vertically */
}

.form-group {
    margin-bottom: 15px; /* Space between form fields */
}

.form-label {
    font-weight: bold; /* Bold labels */
    margin-bottom: 5px; /* Space below label */
    display: block;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%; /* Full width inputs */
    padding: 10px; /* Padding for inputs */
    border: 1px solid #ccc; /* Border style */
    border-radius: 5px; /* Rounded corners */
    font-size: 16px; /* Font size for inputs */
}

textarea {
    resize: vertical; /* Allow vertical resizing */
}

/* Button styles */
.btn {
    background-color: #007bff; /* Button background color */
    color: white; /* Button text color */
    padding: 10px 15px; /* Padding for button */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners */
    font-size: 16px; /* Font size for button */
    cursor: pointer; /* Pointer cursor */
}

.btn:hover {
    background-color: #0056b3; /* Hover background color */
}

/* Footer styles */
footer {
    padding: 1em; /* Padding for footer */
    background-color: #000; /* Footer background */
    width: 100%; /* Full width */
    display: flex; /* Flexbox for footer layout */
    justify-content: space-evenly; /* Space items evenly */
    color: #fff; /* Text color */
    flex-wrap: wrap; /* Allow wrapping */
}

/* Services section styles */
.services {
    display: flex;
    flex-wrap: wrap;
}

.service {
    flex: 1 1 30%;
    margin: 10px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.service h2 {
    margin-top: 0;
}

.service p {
    color: #666;
}

/* Clock styles */
.clock {
    margin-top: 30px;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 1000;
}

/* About section styles */
.about {
    background-color: #615b5b;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
    text-align: center;
    border-radius: 40px;
    padding: 20px;
    color: white;
}

/* Samenwerken section styles */
.samenwerken {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.samenwerken .card {
    width: 100%;
    margin: 10px;
}

.samenwerken .btn-pink {
    background-color: #ff69b4;
    color: white;
}

.samenwerken .btn-pink:hover {
    background-color: #ff1493;
}

/* Pricing cards styles */
.pricing-card {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.pricing-card .card {
    background: #333;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 20px;
    overflow: hidden;
    transition: transform 0.3s;
}

.pricing-card .card:hover {
    transform: scale(1.05);
}

.pricing-card .price {
    font-size: 28px;
    color: #ff69b4;
}

.pricing-card .btn-pink {
    background-color: #ff69b4;
    color: white;
}

.pricing-card .btn-pink:hover {
    background-color: #ff1493;
}

.pricing-card .list-unstyled {
    padding-left: 0;
    list-style: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sidebar {
        width: 100%; /* Full width sidebar */
        left: -100%; /* Hide by default */
    }

    .sidebar.show {
        left: 0; /* Show sidebar when active */
    }

    .content {
        margin-left: 0; /* Reset margin for mobile */
    }

    .contact-form .form-group {
        margin-bottom: 10px; /* Reduced spacing */
    }

    .contact-form button {
        width: 100%; /* Full-width buttons on mobile */
    }

    .sidebar-button {
        font-size: 1.2em; /* Increase button size */
        padding: 5px 10px; /* Padding for mobile */
    }

    .about {
        margin: 20px;
        padding: 15px;
    }

    .samenwerken .card {
        width: 100%;
    }

    .pricing-card .card {
        width: 100%;
    }
}

@media (max-height: 450px) {
    .sidebar { 
        padding-top: 15px; 
    }
    .sidebar ul li { 
        font-size: 18px; 
    }
}
