/* Algemene styling en reset */
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif; /* Standaard lettertype */
    color: #333;
    line-height: 1.6;
    background-color: #f4f4f4;
}
 
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex; /* Gebruikt flexbox voor lay-out in container */
    justify-content: space-between; /* Spreidt items aan de uiteinden */
    align-items: center; /* Centreert items verticaal */
}
 
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif; /* Specifiek lettertype voor koppen */
    margin-top: 0;
    margin-bottom: 15px;
}
 
a {
    text-decoration: none;
    color: inherit;
}
 
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
 
/* Header styling */
.main-header {
    background-color: rgba(0, 0, 0, 0.7); /* Transparante achtergrond */
    color: #fff;
    padding: 15px 0;
    position: absolute; /* Positioneert header over de hero-sectie */
    width: 100%;
    z-index: 1000; /* Zorgt dat de header boven andere elementen ligt */
}
 
/* Styling voor de logo container (de a tag) */
.main-header .logo a {
    display: flex; /* Maakt de link een flex-container */
    align-items: center; /* Centreert items verticaal in de link */
    gap: 10px; /* Ruimte tussen logo afbeelding en tekst */
    color: inherit; /* Zorgt ervoor dat de linkkleur de h1 kleur overneemt */
}
 
/* Debije AdTech Consultancy BV tekst logo styling */
.main-header .logo h1 {
    margin: 0; /* Verwijder standaard h1 margin */
    font-size: 1.8em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
 
/* Styling voor het nieuwe bedrijfslogo (image) */
.main-header .logo .company-logo {
    height: 40px; /* Stel een vaste hoogte in voor het logo */
    width: auto; /* Behoudt de aspect ratio */
    vertical-align: middle; /* Lijnt het logo verticaal uit met de tekst */
}
 
 
.main-header .contact-info {
    display: flex;
    gap: 10px; /* Ruimte tussen e-mail, telefoon en adres */
    font-size: 0.85em; /* Iets kleiner voor lange tekst */
    white-space: nowrap; /* Voorkomt afbreken */
    flex-wrap: wrap; /* Laat het ombreken op kleinere schermen */
    justify-content: flex-end; /* Zorgt dat items rechts uitlijnen als ze ombreken */
    text-align: right;
}
 
.main-header .contact-info a,
.main-header .contact-info span { /* Stijl zowel links als gewone span tekst */
    color: #fff;
    transition: color 0.3s ease;
}
 
.main-header .contact-info a:hover {
    color: #e0e0e0;
}
 
 
/* Hero Section Styling */
.hero-section {
    background-image: url('Montain.jpeg'); /* Geüploade bergfoto */
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    position: relative;
    padding-left: 10%;
    box-sizing: border-box;
}
 
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.2) 70%);
    z-index: 1;
}
 
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding-right: 20px;
}
 
.hero-content h2 {
    font-size: 4em;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 600px;
}
 
.hero-text-and-button {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 500px;
    margin-top: 30px;
}
 
.hero-text-and-button p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 5px;
}
 
/* Trusted By Section - nu gepositioneerd als overlay binnen Hero */
.trusted-by-section.hero-overlay {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 2;
    max-width: 250px;
}
 
.trusted-by-section h3 {
    font-size: 1.3em;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}
 
.client-logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
 
.client-logos img {
    max-height: 40px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: filter 0.3s ease, opacity 0.3s ease;
}
 
.client-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}
 
/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .main-header .logo .company-logo {
        height: 35px; /* Iets kleiner op tablets */
    }
 
    .main-header .logo h1 {
        font-size: 1.6em;
    }
 
    .hero-section {
        padding-left: 5%;
    }
 
    .hero-content h2 {
        font-size: 3em;
    }
 
    .trusted-by-section.hero-overlay {
        right: 2%;
        max-width: 200px;
        padding: 15px 20px;
    }
 
    .trusted-by-section h3 {
        font-size: 1.1em;
    }
 
    .client-logos img {
        max-height: 35px;
    }
}
 
 
@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
 
    .main-header .logo a {
        flex-direction: column; /* Logo afbeelding en tekst onder elkaar op mobiel */
        gap: 5px;
    }
 
    .main-header .logo h1 {
        font-size: 1.4em; /* Nog kleiner op mobiel */
    }
 
    .main-header .logo .company-logo {
        height: 30px; /* Nog kleiner op mobiel */
    }
 
    .main-header .contact-info {
        flex-direction: column;
        gap: 5px;
        font-size: 0.8em;
        text-align: center;
    }
 
    .hero-section {
        padding-left: 5%;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        padding-bottom: 20px;
    }
 
    .hero-section::before {
        background: rgba(0, 0, 0, 0.7);
    }
 
    .hero-content {
        max-width: 90%;
        padding-right: 0;
        margin-top: 80px;
    }
 
    .hero-content h2 {
        font-size: 2.5em;
    }
 
    .hero-text-and-button {
        align-items: center;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
 
    .hero-text-and-button p {
        background-color: transparent;
        padding: 0;
    }
 
    .trusted-by-section.hero-overlay {
        position: static;
        transform: none;
        margin-top: 40px;
        width: 90%;
        max-width: 300px;
        left: 50%;
        transform: translateX(-50%);
        padding: 15px;
        background-color: rgba(255, 255, 255, 0.9);
    }
 
    .trusted-by-section h3 {
        font-size: 1.1em;
        margin-bottom: 15px;
    }
 
    .client-logos {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
 
    .client-logos img {
        max-height: 30px;
    }
}
 
@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 2em;
    }
 
    .trusted-by-section.hero-overlay {
        max-width: 90%;
        padding: 10px;
    }
 
    .client-logos img {
        max-height: 25px;
    }
}