/*
Theme Name: First House Literary
Theme URI: https://firsthouseliterary.com
Author: Frank Appelman
Description: Professional publishing & literary WordPress theme.
Version: 2.0
*/

/* --- BASIS INSTELLINGEN --- */
html, body {
    max-width: 100%;
    overflow-x: hidden; /* Fix voor de witte balk rechts */
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Merriweather', serif;
    background: #f8f7f4;
    color: #222;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- HEADER & TITEL --- */
.site-header {
    background: white;
    border-bottom: 1px solid #eee;
}

.site-title h1 {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.8rem;
    font-weight: 700 !important;
    letter-spacing: -0.02em;
    color: #111 !important; /* Teruggezet naar zwart voor de strakke look */
    margin: 0;
    padding-left: 10px;
}

/* --- HERO & CONTENT --- */
.hero {
    position: relative;
    background: url('https://firsthousepublishing.com/wp-content/uploads/2026/04/hero.jpeg') center/cover no-repeat;
    color: white;
    padding: 160px 20px;
    text-align: center;
}

.hero .overlay {
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: rgba(0,0,0,0.5);
}

.hero-content { position: relative; z-index: 2; }

/* --- FOOTER (DE VOLLEDIGE FIX) --- */
.site-footer {
    background-color: #000 !important;
    color: #fff;
    padding: 60px 0 20px 0;
    width: 100%;
    box-sizing: border-box;
    display: block;
    clear: both;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left; /* Zorgt dat tekst in de kolommen strak links staat */
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
    display: block;
}

.site-footer h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    width: 100%;
}

.copyright {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-logo img {
        margin: 0 auto 20px auto;
    }
}