body {
    padding: 0;
    margin: 0px;
    background: rgba(181, 181, 255); /* background color voor de hele pagina */
    font-family: "Playfair Display", serif; /* Font family, google font  */
    
}
p,a, button {
    font-size: 21px;/* Font size for p,a and button */
}

h1 {
 font-size: 40px; /* Font size for h1 */
}
h3 {
    font-size: 30px; /* Font size for h3 */
}
/* Responsive styles */
@media only screen and (max-width: 1024px) { /* Tablet */
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    .reizen-article {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px; /* Pas de gap aan indien nodig */
    }
    form {
        padding: 15px;
    }

    form h2 {
        font-size: 20px;
    }

    form input[type="text"],
    form input[type="date"],
    form input[type="email"],
    form input[type="tel"],
    form select {
        font-size: 14px;
    }

    form button[type="submit"] {
        font-size: 14px;
    }
}

@media only screen and (max-width: 840px) { /* Phone */
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-logo {
        align-self: flex-start; /* Logo blijft links staan */
    }

    .navbar .nav-item {
        width: 100%; /* Li-elementen komen onder elkaar */
        text-align: left; /* Tekst uitlijnen naar links */
    .reizen-article {
        grid-template-columns: 1fr; /* 1 column on phone */
    }
    .footer-section {
        flex-direction: column; /* Stack columns on mobile */
        
    }
    .footer-article {
        margin: 10px 0; /* Add vertical margin for spacing */
    }
    form {
        padding: 15px;
    }

    form h2 {
        font-size: 20px;
    }

    form input[type="text"],
    form input[type="date"],
    form input[type="email"],
    form input[type="tel"],
    form select {
        font-size: 14px;
    }

    form button[type="submit"] {
        font-size: 14px;
    }
}
}


nav {
    
    display: flex;
    align-items: center; /* Align items vertically centered */
    justify-content: space-between; /* Space between logo and nav items */
    padding: 0 20px; /* Add some padding to the sides */
    background-color: #000080; /* Set the background color of the nav */
}

.navbar-logo {
    margin-right: 20px; /* Space between logo and navbar items */
    height: 100px; /* Set a specific height for the logo */
    width: auto; /* Maintain aspect ratio */
    border: 2px solid #ffd700; /* Add a white border around the logo */
    border-radius: 5px; /* Optional: round the corners of the border */
    padding: 0px; /* Optional: add some padding inside the border */

}

.navbar {
    
    list-style: none; /* Remove default list styling */
    display: flex; /* Display navbar items in a row */
    justify-content: space-around; /* Space out navbar items evenly */
    height: 100%; /* Stretch navbar to fill the entire height of the viewport */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
}

.nav-item {
    margin-left: 20px; /* Space between navbar items */
    display: flex; /* Use flex to align items */
    align-items: center; /* center items vertically */
    height: 100px;
}

.nav-link {
    text-decoration: none; /* Remove underline from links */
    color: #ffd700; /* Set link color */
    line-height: 100px; /* Center text vertically within the nav item */
}

.page.header {
    width: 100%;
    height: 100vh; /* Full height of the viewport */
    background-image: url('https://images.unsplash.com/photo-1517479149777-5f3b1511d5ad?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D'); /* Replace with your image path */
    background-size: cover; /* Cover the entire area */
    background-position: center; /* Center the image */
    display: flex;
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    text-align: center; /* Center text */
}

.welcome {
    background-color:rgba(255, 255, 255,0.5) ; /* Optional: semi-transparent background for readability */
    padding: 20px;
    border-radius: 10px; /* Optional: rounded corners */
}

.welcome h1 {
    color: #000080; /* Red text for h1 */
}

.welcome p {
    color: black; /* Black text for p */
}

.button-reizen {
    background-color: #000080; /* Red background for button */
    color: #ffd700; /* Gold text for button */
    border: none; /* Remove default border */
    padding: 10px 20px; /* Padding for button */
    cursor: pointer; /* Pointer cursor on hover */
    border-radius: 5px; /* Optional: rounded corners for button */
    margin-top: 10px; /* Space between the paragraph and the button */
    width: auto; /* Set width to auto to fit content */
    max-width: 150px; /* Optional: set a maximum width for the button */
    align-self: center; /* Center the button within the article */
}

.button-reizen:hover {
    opacity: 0.8; /* Optional: slightly fade on hover */
}

.reizen {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns by default */
    gap: 20px; /* Space between columns */
    justify-items: center; /* Center items in each column */
    margin-top: 40px; /* Add space above the articles */
    background-color: rgba(181, 181, 255, 0.8); /* Semi-transparent white background */
    padding: 20px; /* Optional: add some padding around the section */
    border-radius: 10px; /* Optional: round the corners of the background */
}


.reizen-article {
    width: auto; /* Set the width of each article to 90% of the container */
    max-width: 500px; /* Optional: set a maximum width */
    text-align: center; /* Center text inside the article */
    border: 2px solid #ffd700; /* Golden border */
    border-radius: 10px; /* Round the corners of the border */
    background-color: white; /* Optional: white background for articles */
    padding: 10px; /* Optional: add some padding inside the article */
    display: flex; /* Use flexbox for layout */
    flex-direction: column; /* Stack children vertically */
    justify-content: space-between; /* Space out children to fill the height */
    height: 100%; /* Allow the article to take full height */
}

.reizen-article img {
    width: 100%; /* Set image width to 100% of the article */
    height: 325px; /* Maintain aspect ratio */
    padding: 0px;
    border-radius: 10px;
}

.reizen-namen {
    color: #ffd700; /* Golden text for reizen-namen */
}

.reizen-article p {
    color: black; /* Black text for p */
}

.reizen-categorien {
    text-align: center; /* Centers the text */
    margin-top: 50px; /* Optional: Add some vertical spacing */
    color: #000080;
}

.footer {
    background-color: #000080; /* Set background color to red */
    color: #ffd700; /* Set text color to gold */
    padding: 20px; /* Add padding for spacing */
    margin-top: 40px; /* Add margin to create space above the footer */
}

.footer-section {
    display: flex; /* Use flexbox for layout */
    flex-wrap: wrap; /* Allow wrapping for mobile */
    justify-content: space-between; /* Space between columns */
}

.footer-article {
    flex: 1; /* Allow articles to grow */
    margin: 20px; /* Add margin for spacing */
    min-width: 250px; /* Minimum width for columns */

}

.footer-article img {
    width: 50px; /* Set width to 50px */
    height: 50px; /* Set height to 50px */
    object-fit: cover; /* Ensure the image covers the area without distortion */
    margin-right: 10px; /* Add space between the image and the text */
}

.footer h3 {
    font-weight: bold; /* Make h3 bold */
}
/*
#footer-info{
    /*
    margin-left: 100px; /* Add margin for spacing left extra 
    display: flex; /* Use flexbox for layout 
    align-items: center; /* Center items vertically 
    align-items: flex-start; /* Align items at the start 
    
}
    */

.footer-info-wrapper {
    display: flex; /* Use flexbox for layout */
    flex-direction: row; /* Stack image above text */
    align-items: center;
    align-items: flex-start; /* Align items to the start */
    margin-bottom: 10px; /* Add space between each info wrapper */
    
}

.banner {
    background: #a770ef;
    background: -webkit-linear-gradient(to right, #a770ef, #cf8bf3, #fdb99b);
    background: linear-gradient(to right, #a770ef, #cf8bf3, #fdb99b);
  }

  .photo-grid-container {
    display: flex;
    justify-content: center;
  }
  
  .photo-grid {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: auto;
    margin-bottom: 3%;

  }
  
  .first-item {
   order: -1;
  }
  
  .last-item {
   order: 1;
  }
   .reizen-tiptitels {
    color: #000080; /* Golden text for reizen-namen */
   }
  
  .photo-grid-item {
    border: 2px solid #ffd700;
    width: 33%;
    height: 33%;
    margin: 10px;
    margin-bottom: 10px;
    padding: 10px;
    color: black;
  }

  /* General Form Styling */
form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Playfair Display', serif;
}

/* Form Heading */
form h2 {
    text-align: center;
    color: #000080;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
}

/* Label Styling */
form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

/* Input Fields Styling */
form input[type="text"],
form input[type="date"],
form input[type="email"],
form input[type="tel"],
form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Playfair Display', serif;
    box-sizing: border-box;
}

/* Radio Button Styling */
form input[type="radio"] {
    margin-right: 10px;
}

form input[type="radio"] + label {
    margin-right: 20px;
    font-weight: 400;
    color: #555;
}

/* Select Dropdown Styling */
form select {
    appearance: none;
    background-color: #fff;
    cursor: pointer;
}

/* Submit Button Styling */
form button[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #000080; /* Red background for button */
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button[type="submit"]:hover {
    background-color: #0056b3;
}





/* CSS Comments automatically produced by BLACKBOX AI */