/*
Theme Name: Maintenance Coming Soon Theme
Theme URI: https://example.com/
Author: Jouw Naam
Author URI: https://example.com/
Description: Een tijdelijk onderhoudsthema dat toont dat de website binnenkort online komt.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: maintenance-coming-soon-theme
*/

/* Styling */
body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #4a00e0, #8e2de2);
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.mcs-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.mcs-box {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
}
.mcs-box h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.mcs-box p {
    font-size: 1.2rem;
}
.mcs-loader {
    margin-top: 2rem;
    border: 6px solid #f3f3f3;
    border-top: 6px solid #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
