* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Georgia', serif;
}

body {
    background-color: #000;
    color: white;
    overflow-x: hidden;
}


/* HERO SECTION */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;

	background-color: black; /* zwarte achtergrond */
	background-image: url("../img/20261.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 940px auto; /*  max breedte 940px, hoogte automatisch */

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    z-index: 1;
}





/* DARK OVERLAY */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for readability */
}

/* TEXT IN HERO */
.hero-content {
    position: absolute;
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%);
    z-index: 1;
    max-width: 600px;
    text-align: center;
    opacity: 0; /* Initially hidden */
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.5s; /* Delayed effect */
}
.hero-content h1{
    font-size:56px;
}

/* FADE-IN ANIMATION */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* CONTACT SECTION */
.contact-section {
    background: #1a1a1a; /* Dark background */
    color: white;
    text-align: center;
    padding: 50px 20px;
    margin-top: -5px; /* Removes gap from the image */
}

.contact-container {
    max-width: 1200px;
    margin: auto;
}

.contact-section h2 {
    font-size: 28px;
    color: white;
    margin-bottom: 10px;
}

.contact-details p {
    font-size: 18px;
    margin: 8px 0;
    display: inline-block;
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 30px;
}
.contact-details a {
    text-decoration: none;
    color:white;
}

.contact-details strong {
    color: #3A8ABB;
}
.footer {
    background: #111; /* Dark background */
    color: white;
    text-align: center;
    padding: 15px 20px;
    font-size: 14px;
    position: relative; /* Keeps it at the bottom without covering content */
    bottom: 0;
    width: 100%;
}
@media (max-width: 768px) {
    .hero {
        height: 70vh; /* Maak de hero wat korter op mobiel */
        background-position: center top; /* Verschuif focus van achtergrond */
    }

    .hero-content {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 0; /* Remove the padding that pushed it off-center */
        max-width: 90%;
        text-align: center; /* Optional: center text inside */
    }

    .hero-content h1 {
        font-size: 35px; /* Kleinere tekstgrootte op mobiel */
    }

    .contact-details p {
        font-size: 16px;
        padding: 15px 20px; /* Minder padding op mobiel */
        display: block; /* Laat items onder elkaar zien op mobiel */
    }
    
}
/*logo*/

.logo-container {
  text-align: center;   /* midden */
  margin: 2rem 0;       /* ruimte boven en onder */
  position: relative;   /* relative = standaard, zorgt dat hij niet loskomt */
}

.logo-container img {
  max-width: 200px;     /* responsive */
  height: auto;
  display: inline-block;
}