/*
Theme Name: Projectbureau M2
Theme URI: https://ljpc.solutions
Author: LJPc solutions
Author URI: https://ljpc.solutions
Description: A custom theme for Scene2Go projects
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: scene2go-theme
Tags: responsive
*/

/* Reset */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, img, ul, ol, li, form, label, article, aside, footer, header, nav, section {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

body {
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: #333;
    background-color: #f8f9fa;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    margin-bottom: 30px;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-title {
    font-size: 24px;
    font-weight: 700;
    margin-right: 20px;
}

.site-title a {
    color: #0073aa;
    text-decoration: none;
}

.site-description {
    color: #666;
    font-size: 14px;
}

/* Navigation */
.main-navigation {
    margin-top: 10px;
}

.main-navigation ul {
    list-style: none;
    display: flex;
}

.main-navigation li {
    margin-right: 20px;
}

.main-navigation a {
    color: #444;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: #0073aa;
}

/* Content */
.site-content {
    padding: 30px 0;
}

.content-area {
    margin-bottom: 40px;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

/* Footer */
.site-footer {
    background-color: #fff;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05);
    padding: 30px 0;
    margin-top: 30px;
}

.site-info {
    color: #666;
    font-size: 14px;
    text-align: center;
}

/* Scene2Go Template */
.page-template-scene2go-template {
    background-color: #f1f1f1;
}

.page-template-scene2go-template .site-header,
.page-template-scene2go-template .site-footer {
    display: none;
}

.page-template-scene2go-template .site-content {
    padding: 0;
}

.page-template-scene2go-template .content-area {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .site-branding {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .site-title {
        margin-bottom: 5px;
    }
    
    .main-navigation ul {
        flex-direction: column;
    }
    
    .main-navigation li {
        margin-right: 0;
        margin-bottom: 10px;
    }
}
