/* Algemene instellingen */


/* Main (inhoud tussen header en footer) */
main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
}

/* Footer styling */
.footer-bar {
  background-color: #ffffff;
  color: #222;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  height: 50px;
  border-top: 1px solid #e0e0e0; /* voor footer */
  border-bottom: 1px solid #e0e0e0; /* voor header */
}

/* Klok styling */
#clock {
  font-weight: 500;
  white-space: nowrap;
}

.tijd {
  margin-left: 8px;
  color: #000;
}

/* Weericoon */
.weer-icon {
  border: none;
  width: 50px;
  height: 40px;
  filter: brightness(0.95) drop-shadow(1px 1px 2px rgba(0,0,0,0.3));
}

/* Logo in de header */
.header-logo {
  height: 40px;
  width: 40px;
  margin-right: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Tekst naast het logo in de header */
.logo-text {
  font-size: 18px;
  display: flex;
  align-items: center;
  margin-left: 10px;
}

/* Footer Left en Right styling */
.footerLeft, .footerRight {
  display: flex;
  align-items: center;
}

.footerLeft {
  font-size: 18px;
  gap: 15px;  /* Ruimte tussen de klok en het weer icoon */
}

.footerRight {
  gap: 10px; /* Ruimte tussen de icoontjes */
}

/* De individuele iconen in de footer */
.socialimage {
  width: 40px;
  height: 40px;
  border-radius: 25%;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover effect voor de icoontjes */
.socialimage:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* Responsive aanpassingen voor kleinere schermen */
@media (max-width: 600px) {
  /* Zorgt ervoor dat de icoontjes goed zichtbaar zijn op kleinere schermen */
  .socialimage {
    width: 35px;
    height: 35px;
  }

  /* Zorgt ervoor dat de klok leesbaar is op kleinere schermen */
  #clock {
    font-size: 12px;
  }
}


.main-logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.main-logo {
  width: 300px;
  height: auto;

}

.main-logo:hover {
  transform: scale(1.05);
}
