/* ===== My Orchestra - Stylesheet ===== */
/* Gebaseerd op my-orchestra.nl layout */

:root {
    --primary: #1a3a5c;
    --primary-light: #2c5a8c;
    --accent: #c9a84c;
    --accent-light: #e0c570;
    --bg: #f5f7fa;
    --text: #222;
    --text-light: #666;
    --white: #fff;
    --border: #e0e0e0;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --radius: 8px;
    --max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
}

a {
    color: var(--primary-light);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

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

/* ===== Header / Navigatie ===== */
.site-header {
    background: var(--primary);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-icon {
    font-size: 2rem;
    line-height: 1;
}

.logo img {
    height: 11.2rem;
    width: auto;
    background: #fff;
    padding: 4px;
    border-radius: 4px;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}

.logo-text span {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--accent-light);
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.main-nav a {
    color: var(--white);
    padding: 0.6rem 1rem;
    border-radius: var(--radius);
    font-size: 0.95rem;
    transition: background 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
    background: var(--primary-light);
    text-decoration: none;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
}

/* ===== Hero ===== */
.hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    text-align: center;
    padding: 3.5rem 1.5rem;
}

.hero h1 {
    font-size: 2.4rem;
    margin-bottom: 0.8rem;
}

.hero p {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255,255,255,0.9);
}

/* ===== Main content ===== */
.main {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
}

.page-title {
    color: var(--primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.6rem;
    border-bottom: 3px solid var(--accent);
}

/* ===== Feature grid ===== */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.8rem;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--accent);
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-card ul {
    list-style: none;
    margin-top: 0.5rem;
}

.feature-card ul li {
    padding: 0.2rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.feature-card ul li::before {
    content: "\2713";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* ===== Content blocks ===== */
.content-block {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.content-block h2 {
    color: var(--primary);
    margin-bottom: 0.8rem;
}

/* ===== Referenties lijst ===== */
.ref-category {
    margin-bottom: 2rem;
}

.ref-category h2 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--border);
}

.ref-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0.6rem;
}

.ref-list li {
    padding: 0.5rem 0.8rem;
    background: var(--white);
    border-radius: 4px;
    border-left: 3px solid var(--accent);
}

.ref-list a {
    font-weight: 500;
}

/* ===== Contact info ===== */
.contact-info {
    font-size: 1.1rem;
    line-height: 2;
}

.contact-info strong {
    color: var(--primary);
    display: inline-block;
    width: 120px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 0.8rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
}

.btn:hover {
    background: var(--accent-light);
    text-decoration: none;
}

.btn-secondary {
    background: var(--primary);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--primary-light);
}

/* ===== Pricing box ===== */
.pricing-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px solid var(--accent);
    max-width: 500px;
    margin: 2rem auto;
}

.pricing-box .price {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 700;
}

.pricing-box .price small {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

/* ===== Footer ===== */
.site-footer {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 2rem 1.5rem;
    margin-top: 3rem;
}

.site-footer a {
    color: var(--accent-light);
}

.footer-nav {
    margin-bottom: 1rem;
}

.footer-nav a {
    color: var(--white);
    margin: 0 0.8rem;
    font-size: 0.9rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        width: 100%;
        margin-top: 0.8rem;
    }

    .main-nav.open {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        width: 100%;
    }

    .main-nav a {
        display: block;
        padding: 0.8rem 1rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .header-inner {
        padding: 0.8rem 1rem;
    }
}
