/* ==========================================================================
   Basis Reset & Moderne Typografie
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; /* Moderator look */
    line-height: 1.7;
    color: #333;
    background-color: #f8f9fa; /* Iets zachter grijs voor meer rust */
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Header & Navigatie (Nu met Flexbox!)
   ========================================================================== */
header {
    background-color: #fff;
    padding: 1.5rem 0;
    border-bottom: 4px solid #1d8ad2; /* De blauwe kleur uit Origineel.png */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

header h1 {
    color: #1d8ad2; /* Kleur uit logo */
    font-size: 1.8rem;
    letter-spacing: 1px;
}

/* Navigatie styling */
nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover, 
nav ul li a.active {
    color: #1d8ad2; /* Matchen met merk */
}

/* ==========================================================================
   Hero Sectie (Homepage)
   ========================================================================== */
#hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('images/bell-rock-hero.jpeg'); /* Gebruik de opgeslagen afbeelding */
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 120px 40px; /* Iets meer ademruimte voor de foto */
    text-align: center;
    border-radius: 12px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#hero h2 {
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* Voor extra leesbaarheid */
    margin-bottom: 20px;
    color: #fff;
}

#hero p {
    font-size: 1.3rem;
    max-width: 800px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    margin: 0 auto 15px;
}

/* ==========================================================================
   Content Secties (Wie zijn wij / Wat doen wij)
   ========================================================================== */
.page-section {
    background-color: #fff;
    padding: 40px;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

h2, h3 {
    color: #1d8ad2; /* Consistent blauw */
    margin-bottom: 1rem;
}

article {
    margin-bottom: 30px;
    padding-bottom: 20px;
}

article:not(:last-child) {
    border-bottom: 1px solid #eee; /* Scheiding tussen artikelen */
}

/* Lijsten in 'Wat doen wij' */
ul {
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

/* ==========================================================================
   Footer & Links
   ========================================================================== */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
    margin-top: 50px;
}

a {
    color: #1d8ad2;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        gap: 15px;
        font-size: 0.9rem;
    }

    #hero {
        padding: 40px 20px;
    }

    .page-section {
        padding: 20px;
    }
}
/* Styling voor de Call-to-Action knop */
.btn-primary {
    display: inline-block;
    background-color: #fff;
    color: #1d8ad2; /* De blauwe kleur uit je logo */
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-decoration: none;
}
/* Layout voor de profielen */
.profile-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.profile-card {
    flex: 1;
    background: #fdfdfd;
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.samen-sectie {
    text-align: center;
    background: #eef7ff; /* Lichtblauwe achtergrond voor de 'Samen' sectie */
    padding: 30px;
    border-radius: 10px;
}

/* Secundaire knop voor LinkedIn */
.btn-secondary {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    border: 2px solid #1d8ad2;
    color: #1d8ad2;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: bold;
}

.btn-secondary:hover {
    background-color: #1d8ad2;
    color: #fff;
    text-decoration: none;
}

/* Zorg dat profielen op mobiel onder elkaar staan */
@media (max-width: 768px) {
    .profile-grid {
        flex-direction: column;
    }
}
/* Services Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.service-card {
    background: #fff;
    padding: 25px;
    border-top: 5px solid #1d8ad2; /* Blauwe accentkleur uit logo */
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-radius: 5px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Aanpak & Speciaal Tarief sectie */
.aanpak-section {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.aanpak-content {
    flex: 2;
}

.special-rate-box {
    flex: 1;
    background-color: #1d8ad2; /* Blauw uit logo */
    color: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.special-rate-box h4 {
    color: #fff;
    margin-bottom: 10px;
}

.special-rate-box .btn-secondary {
    border-color: #fff;
    color: #fff;
    margin-top: 20px;
}

.special-rate-box .btn-secondary:hover {
    background-color: #fff;
    color: #1d8ad2;
}

/* Responsive aanpassing */
@media (max-width: 768px) {
    .aanpak-section {
        flex-direction: column;
    }
}
/* Contact Pagina Layout */
.contact-wrapper {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    flex: 1;
}

.primary-contact {
    border-left: 8px solid #1d8ad2; /* Blauwe accentkleur uit logo */
}

.secondary-contact {
    background-color: #fcfcfc;
    border: 1px solid #eee;
}

.contact-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.contact-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-list .label {
    display: block;
    font-weight: bold;
    color: #1d8ad2;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Mobiele aanpassing voor contact */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }
}
/* Boeken Grid */
.book-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.book-card {
    display: flex;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.book-cover {
    flex: 0 0 180px;
    background: #f0f0f0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-cover img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.book-info {
    padding: 25px;
}

/* Badges voor status */
.badge {
    position: absolute;
    top: 10px;
    left: -5px;
    padding: 5px 15px;
    color: #fff;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 3px;
    z-index: 1;
}

.status-soon { background-color: #1d8ad2; } /* Blauw van Bell Rock */
.status-out { background-color: #888; }

.availability {
    margin-top: 15px;
    color: #1d8ad2;
}

/* Mobiel: afbeelding boven de tekst */
@media (max-width: 600px) {
    .book-card { flex-direction: column; }
    .book-cover { flex: 0 0 250px; }
    .book-grid { grid-template-columns: 1fr; }
}