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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
	 color: #353b43ff;
}

h1, h2
{
	font-weight: bold;
	font-style: italic;
	color: #353b43ff;
}


header {
    background: #fff;
    color: #353b43ff;
    padding: 1rem 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.logo img {
    width: 400px; /* Adjust the logo size here */
	 max-width: 100%;
}

/* Basic Header and Nav Styles */
.logo-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: #eb6209ff;
    text-decoration: none;
	 font-weight: bold;
    padding: 1rem;
    display: block;
}

nav ul li:hover > a {
    background-color: white;
}

.hamburger {
    display: none; /* Hide hamburger icon on desktop */
    font-size: 2rem;
    cursor: pointer;
    color: #353b43ff;
}

/* Submenu (Drop-Down) Styling */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.submenu li {
    position: relative;
}

.submenu li a {
    padding: 0.75rem 1rem;
    white-space: nowrap;
}

nav ul li:hover > .submenu {
    display: block;
}

/* Multi-level Submenu */
.submenu .submenu {
    top: 0;
    left: 100%;
}

nav ul li .submenu li:hover > .submenu {
    display: block;
}

/* Responsive Dropdown (optional) */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
		  display: none; /* Hide menu on mobile by default */
        width: 100%;
        text-align: center;
    }

    .submenu {
        position: static;
        box-shadow: none;
    }

    nav ul li:hover > .submenu {
        display: none;
    }

	.hamburger {
        display: block; /* Show hamburger icon on mobile */
    }
	
    nav ul li:active > .submenu {
        display: block;
    }

	 .logo im {
		 width: 40%;
	 }
}


section {
    padding: 3rem 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#home {
    position: relative;
    background: url('img/banner.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    height: 100vh; /* Full screen */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


#home h1, h2
{
	font-weight: bold;
	font-style: italic;
	color: #eb6209ff;
}


#home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); /* Black overlay with 50% opacity */
    z-index: 1;
}

#home .container {
    position: relative;
    z-index: 2; /* Keeps content above the overlay */
}

	

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.service {
    background: white;
    padding: 1rem;
    margin: 10px;
    flex-basis: 30%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center; /* Center the content */
}

.service img {
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0; /* Rounded corners for the top of the image */
    margin-bottom: 1rem; /* Space between the image and text */
}

.service h3 {
    margin-bottom: 0.5rem;
	 color: #eb6209ff;
}

.service p {
    font-size: 1rem;
    color: #555;
}


.service a {
    text-decoration: none;
	 }

/* For responsiveness */

/*

@media (max-width: 768px) {
    .services-grid {
        flex-direction: row;
    }

    .service {
        flex-basis: 30%;
    }
}

*/
/* boten grid */


.boten-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.boot {
    background: white;
    padding: 1rem;
    margin: 10px;
    flex-basis: 18%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center; /* Center the content */
}

.boot img {
    width: 100%;
    height: auto;
    border-radius: 5px 5px 0 0; /* Rounded corners for the top of the image */
    margin-bottom: 1rem; /* Space between the image and text */
}


.boot h3 {
    margin-bottom: 0.5rem;
	 color: #eb6209ff;
}

.boot p {
    font-size: 1rem;
    color: #555;
}


.detail-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.detail {
    background: white;
    padding: 1rem;
    margin: 10px;
    flex-basis: 40%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: left; /* Center the content */
}

img.primg {
	 width: 250px;
    height: auto;
    border-radius: 5px 5px 0 0; /* Rounded corners for the top of the image */
    margin-bottom: 1rem; /* Space between the image and text */
}
img.thumb {
	 width: 150px;
    height: auto;
    border-radius: 5px 5px 0 0; /* Rounded corners for the top of the image */
    margin-bottom: 1rem; /* Space between the image and text */
}


/* For responsiveness */
@media (max-width: 768px) {
    .boten-grid {
        flex-direction: column;
    }

    .boot {
        flex-basis: 100%;
    }
}

/* einde boten grid */

footer {
    background-color: #353b43ff;
    color: white;
    padding: 2rem 1rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex-basis: 30%;
    padding: 1rem;
}

#quick-links ul {
    list-style: none;
    padding: 0;
}

#quick-links ul li {
    margin-bottom: 0.5rem;
}

#quick-links ul li a {
    color: white;
    text-decoration: none;
}

#location-map iframe {
    border-radius: 8px;
}

.footer-bottom {
    text-align: center;
    padding: 1rem 0;
    background-color: #222;
    color: #ccc;
    margin-top: 2rem;
}


/* The modal (background) */
        .modal {
            display: none; /* Hidden by default */
            position: fixed; /* Stay in place */
            z-index: 1; /* Sit on top */
            left: 0;
            top: 0;
            width: 100%; /* Full width */
            height: 100%; /* Full height */
            overflow: auto; /* Enable scroll if needed */
            background-color: rgb(0,0,0); /* Fallback color */
            background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
        }

        /* Modal content box */
        .modal-content {
            background-color: white;
            margin: 15% auto; /* 15% from the top and centered */
            padding: 20px;
            border: 1px solid #888;
            width: 80%; /* Could be more or less, depending on screen size */
            max-width: 400px;
            text-align: center;
        }

        /* The close button */
        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }

        .close:hover,
        .close:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }

/* Media Queries for smaller screens */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        flex-basis: 100%;
    }
}


/* Media Queries for Responsiveness 
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }

    .services-grid {
        flex-direction: column;
    }

    .service {
        flex-basis: 30%;
    }
}

*/

@media (max-width: 480px) {
    h1 {
        font-size: 1rem;
    }

    h2 {
        font-size: 0.75rem;
    }

    p {
        font-size: 0.5rem;
    }
}
