
body {
  margin: 0;
  font-family: Arial, sans-serif;
}


header {
  background-color: #054e97; 
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 30px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}


header .logo img {
  width: 110px;
  height: auto;
}


nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}


nav a:hover,
nav a:focus,
nav a.active {
  color: #ffcc00; 
}


main {
  padding-top: 70px;
}
    .image-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap; 
    margin: 40px auto;
    max-width: 1000px;
}


.image-card {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #003366; /* text color */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.image-card img {
    width: 280px;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}


.image-card h2 {
    margin-top: 10px;
    font-size: 20px;
    color: #003366;
}


.image-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.image-card:hover h2 {
    color: #f0c040; 
}


/* de css van lunch pagina!*/
.lunch-section {
    display: flex;
    align-items: flex-start;      
    justify-content: center;
    gap: 50px;                   
    max-width: 1200px;
    margin: 80px auto;
    padding: 20px;
    flex-wrap: wrap;           
}


.lunch-image img {
    width: 450px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.lunch-image img:hover {
    transform: scale(1.05);   
}
.lunch-text {
    max-width: 600px;
    color: #333;
    font-family: Arial, sans-serif;
    text-align: left;
}

.lunch-text h1 {
    color: #274959;
    margin-bottom: 15px;
}

.lunch-text h2 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #003366;
}

.lunch-text p, .lunch-text li {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
}
.lunch-text ul {
    list-style-type: square;
    margin-left: 20px;
}
.hero-button {
    display: inline-block;
    background-color: #f0c040;
    color: #003366;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero-button:hover {
    background-color: #003366;
    color: white;
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .lunch-section {
        flex-direction: column;
        text-align: center;
    }

    .lunch-image img {
        width: 90%;
        margin-bottom: 20px;
    }

    .lunch-text {
        max-width: 90%;
    }
}

/* code voor main image home page */

.hero {
    position: relative; /* maakt het mogelijk om tekst absoluut te positioneren binnen de container */
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-img {
    width: 100%;
    display: block;
    border-radius: 20px; /* optioneel voor afgeronde hoeken */
}

.hero-text {
    position: absolute; /* plaats tekst op de foto */
    top: 50%;           /* verticale positie */
    left: 50%;          /* horizontale positie */
    transform: translate(-50%, -50%); /* centrerend */
    color: white;       /* kleur van de tekst */
    text-align: center;
    background-color: rgba(0,0,0,0.4); /* optionele achtergrond voor leesbaarheid */
    padding: 20px;
    border-radius: 15px;
}

/* Sight pagina coode */

/* General page styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: #274959;
}

header .logo {
    width: 150px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

nav a.active {
    text-decoration: underline;
}

/* Main section */
.section-content {
    max-width: 1000px;
    margin: 30px auto;
    padding: 0 20px;
}

/* Slider */
.slider {
    position: relative;
    max-width: 800px;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 15px;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    position: relative;
    flex-shrink: 0;
    width: 100%;
}

.slide img {
    width: 100%;
    display: block;
    border-radius: 15px;
}

.slide-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    background-color: rgba(0,0,0,0.5);
    padding: 15px;
    border-radius: 10px;
    max-width: 70%;
    font-size: 16px;
}

/* Navigation buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 24px;
    background-color: rgba(0,0,0,0.5);
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
}

.prev { left: 10px; }
.next { right: 10px; }

.prev:hover, .next:hover { background-color: rgba(0,0,0,0.8); }

/* Hero button */
.hero-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #274959;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
}

.hero-button:hover {
    background-color: #345c76;
}

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background-color: #274959;
    color: white;
}
