/*
Theme Name: Aibirds
Theme URI: https://aibirds.nl
Author: Aibirds
Description: Custom WordPress theme voor Aibirds. Portable theme dat geen domein hardcodeert, zodat het zonder aanpassingen van aibirds.aibirds.nl naar aibirds.nl verplaatst kan worden.
Version: 0.1.1
Requires at least: 6.4
Tested up to: 7.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aibirds
*/

/* Basisstijl; verdere styling staat in assets/css/app.css */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: #1c1c1c;
    background: #ffffff;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: #1a56db;
}

.site-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.site-header {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-branding__title {
    margin: 0;
    font-size: 1.5rem;
}

.site-branding__title a {
    text-decoration: none;
    color: inherit;
}

.primary-menu {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.primary-menu a {
    text-decoration: none;
    color: inherit;
}

.site-main {
    padding: 3rem 0;
    min-height: 40vh;
}

.site-footer {
    padding: 2rem 0;
    border-top: 1px solid #e5e5e5;
    font-size: 0.9rem;
    color: #6b6b6b;
}