/* CSS Variables for consistent premium color scheme */
:root {
    --primary-color: #9c27b0; /* Purple */
    --secondary-color: #000; /* Black */
    --accent-color: #fff; /* White */
    --text-color: #ccc; /* Light gray */
    --dark-bg: #1a1a1a; /* Dark background */
    --darker-bg: #111; /* Darker background */
    --hover-color: #7b1fa2; /* Darker purple for hover */
    --shadow: rgba(156, 39, 176, 0.3);
}

/* Reset en basisstijlen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
    overflow-x: hidden;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-bg) 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header en Navigatie */
header {
    background-color: #1a1a1a;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #9c27b0;
    font-size: 24px;
    font-weight: 700;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #9c27b0;
}

/* Hero Sectie */
.hero {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #ccc;
}

.cta-button {
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.4);
}

.cta-button:hover {
    background: linear-gradient(135deg, #7b1fa2 0%, #9c27b0 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(156, 39, 176, 0.6);
}

/* Diensten Sectie */
.services {
    padding: 100px 0;
    background-color: #111;
}

.services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #9c27b0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-item {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(156, 39, 176, 0.2);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.service-item:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 15px 35px var(--shadow);
    border-color: var(--primary-color);
}

.service-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #9c27b0;
}

.service-item p {
    color: #ccc;
}

/* Waarom Kiezen Voor Ons Sectie */
.why-us {
    padding: 100px 0;
    background-color: #000;
}

.why-us h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #9c27b0;
}

.why-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.why-text {
    flex: 1;
}

.why-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ccc;
}

.why-text ul {
    list-style: none;
    padding: 0;
}

.why-text ul li {
    margin-bottom: 10px;
    color: #fff;
}

.why-text ul li:before {
    content: "✓ ";
    color: #9c27b0;
}

.why-image {
    flex: 1;
}

.why-image img {
    width: 100%;
    border-radius: 10px;
}

/* Sign Up Sectie */
.signup {
    padding: 100px 0;
    background-color: #111;
}

.signup h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #9c27b0;
}

#signup-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #fff;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: #fff;
}

.honeypot {
    display: none;
}

/* Contact Sectie */
.contact {
    padding: 100px 0;
    background-color: #000;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #9c27b0;
}

.contact p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ccc;
}

.contact-info p {
    margin-bottom: 10px;
    color: #fff;
}

/* Thank You Page */
.thank-you {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.thank-you h2 {
    font-size: 42px;
    color: #9c27b0;
    margin-bottom: 30px;
    font-weight: 700;
}

.thank-you p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.8;
}

.datetime-info {
    background: rgba(156, 39, 176, 0.1);
    border: 1px solid rgba(156, 39, 176, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    backdrop-filter: blur(10px);
}

.datetime-info p {
    color: #fff;
    font-size: 16px;
    margin: 0;
}

.datetime-info strong {
    color: #9c27b0;
}

#current-datetime {
    color: #fff;
    font-weight: 600;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    padding: 20px 0;
    text-align: center;
    color: #ccc;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h2 {
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-button {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.services h2 {
    animation: fadeInUp 1s ease-out;
}

.service-item {
    animation: fadeInUp 1s ease-out;
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(4) { animation-delay: 0.4s; }
.service-item:nth-child(5) { animation-delay: 0.5s; }

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .why-content {
        flex-direction: column;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }
}
