/* index.html */
/* ALGEMENE STYLING */
body {
  font-family: 'Henny Penny', cursive;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #F9FAFB;
  color: #111827;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

/* HEADER */
#header {
  background-color: #E0E7FF;
  color: #1E3A8A;
  padding: 20px 0;
  position: relative;
}

.header-img {
  position: absolute;
  top: 20px;
  left: 20px;
  height: 90px;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

#site-title {
  margin: 0;
  text-align: center;
  font-weight: 600;
  /* dikte van het lettertype*/
  font-size: 44.8px; 
  letter-spacing: 1px;
}

#header h1 {
  font-family: 'Henny Penny', cursive;
}

/* NAVIGATIE */
#main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

#main-nav a {
  color: #1E3A8A;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px; 
  transition: all 0.3s ease;
}

#main-nav a:hover,
#main-nav a.active {
  color: #FBBF24;
  text-decoration: underline;
}

/* HOME-LINKS */
.home-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 30px;
}

.home-links a {
  background-color: #1E3A8A;
  color: #FBBF24;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.home-links a:hover {
  background-color: #FBBF24;
  color: #1E3A8A;
  transform: translateY(-3px);
  /*Dit zorgt ervoor dat een knop bij hover een beetje omhoog komt*/
}

/* MAIN CONTENT */
#index-main {
  padding: 40px 0;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.service-item {
  background-color: #FFFFFF;
  padding: 20px;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  flex: 1 1 250px;
  /*Flex betekent:(grow) het element mag groeien,
  (shrink) mag kleiner worden
  (basis) Het element start op 250px, maar mag groter of kleiner worden */
  min-width: 250px;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

.service-item:hover {
  transform: scale(1.03);
}

/* NIEUWS */
.news-item {
  background-color: #FFFFFF;
  padding: 20px;
  border-left: 6px solid #1E3A8A;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* WELCOME BLOK */
#index-welcome {
  color: #FBBF24;
  background-color: #1E3A8A;
  padding: 50px 20px;
  text-align: center;
  font-size: 20.8px; 
  font-weight: 500;
}

/* LUNCH.HTML */
.lunch-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.lunch-card {
  background-color: #FFFFFF;
  border: 1px solid #D1D5DB;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  text-align: center;
}

.lunch-card:hover {
  transform: translateY(-4px);
}

.lunch-card h3 {
  margin-top: 0;
  color: #1E3A8A;
  font-size: 24px; 
  font-weight: 600;
}

.lunch-card p {
  color: #374151;
  font-size: 16px; 
  line-height: 1.5;
}

.lunch-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

/* ABOUTUS.HTML */
.about-section,
.unique-section {
  text-align: center;
  max-width: 800px;
  margin: 40px auto;
}

.map-section {
  margin: 60px 0;
  text-align: center;
}

.map-container iframe {
  width: 100%;
  max-width: 800px;
  height: 450px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* TOURISM.HTML */
.tourism-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.tourism-card {
  background-color: #FFFFFF;
  border: 1px solid #D1D5DB;
  border-radius: 10px;
  padding: 20px;
  width: 250px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tourism-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

.tourism-card h3 {
  color: #1E3A8A;
  font-size: 24px; 
  margin-top: 0;
  margin-bottom: 10px;
}

.tourism-card p,
.tourism-card li {
  color: #374151;
  font-size: 16px; 
  line-height: 1.5;
}

.tourism-card ul {
  padding-left: 20px;
  margin: 0;
}

.tourism-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* SPORT.HTML */
.sport-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.sport-card {
  background-color: #FFFFFF;
  border: 1px solid #D1D5DB;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sport-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

.sport-card h3 {
  margin-top: 0;
  color: #1E3A8A;
  font-size: 24px; 
  font-weight: 600;
}

.sport-card p {
  color: #374151;
  font-size: 16px; 
  line-height: 1.5;
}

.sport-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

/* ICT.HTML */
.ict-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.ict-card {
  background-color: #F0F9FF;
  border: 1px solid #93C5FD;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

/* transform: translateY(-4px);
Het kaartje gaat een beetje omhoog (4 pixels). 
Dit zorgt voor een “zwevend” effect. */          

/*box-shadow:
Er komt een grotere schaduw onder het kaartje
Daardoor lijkt het alsof het kaartje boven de pagina zweeft.
*/
.ict-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.12);
}

.ict-card h3 {
  margin-top: 0;
  color: #1D4ED8;
  font-size: 24px; 
  font-weight: 700;
}

.ict-card p {
  color: #1E293B;
  font-size: 16px; 
  line-height: 1.5;
}

.ict-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
}

/* FOOTER */
#footer {
  background-color: #111827;
  color: #FBBF24;
  text-align: center;
  padding: 40px 0;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1000px;
  margin: auto;
  gap: 30px;
  margin-bottom: 20px;
}

.footer-contact,
.footer-location,
.footer-socials {
  flex: 1 1 250px;
  min-width: 250px;
}

#footer a {
  color: #FBBF24;
  text-decoration: none;
  margin: 0 5px;
}

#footer a:hover {
  text-decoration: underline;
}

.footer-copy {
  font-size: 12.8px;
  color: #9CA3AF;
}

/* Tabel openingstijden */

#openingstijden {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

#openingstijden th, #openingstijden td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}

#openingstijden th {
  background-color: #f2f2f2;
  font-weight: bold;
}
