/* ✅ Algemene footer-styling */
footer {
  background-color: #bfa14a;
  color: #fff;
  padding: 40px 20px;
}

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

.footer-column {
  flex: 1;
  margin: 20px;
  min-width: 200px;
}

.footer-column h3 {
  color: #fff;
  border-bottom: 2px solid #fff;
  padding-bottom: 10px;
  margin-bottom: 20px;
  text-align: left;
}

.footer-column p,
.footer-column ul {
  margin: 10px 0;
  color: #fff;
  text-align: left;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #e0e0e0;
}

/* ✅ Social Icons Styling */
.social-icons {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 10px;
}

.social-icons li {
  list-style: none;
}

.social-icons img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s;
}

.social-icons img:hover {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid #fff;
  padding-top: 10px;
  font-size: 14px;
  color: #fff;
}

/* ✅ Cookie-banner styling */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%; /* Volledige breedte */
    background: rgba(255, 245, 230, 0.95); /* Lichte crème-achtergrond */
    color: #333; /* Donkergrijze tekst */
    padding: 15px;
    text-align: center;
    display: none;
    font-size: 14px;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease-in-out;
    z-index: 9999; /* Zorgt ervoor dat de banner altijd bovenop blijft */
}

/* ✅ Tekst binnen de cookie-banner netjes uitlijnen */
#cookie-banner .cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

/* ✅ "Lees meer" link */
#cookie-banner a {
    color: #bfa14a;
    text-decoration: underline;
    font-weight: bold;
}

#cookie-banner a:hover {
    color: #a88d3e;
}

/* ✅ Stijl voor de Accept & Weiger knoppen */
#cookie-banner button {
    padding: 10px 20px;
    background: #bfa14a;
    border: none;
    color: white;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-left: 10px;
}

#cookie-banner button:hover {
    background: #a88d3e;
    transform: scale(1.05);
}

/* ✅ Knoppen netjes op mobiele weergave */
@media (max-width: 800px) {
    #cookie-banner .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    #cookie-banner button {
        margin-top: 10px;
        width: 100%;
        max-width: 200px;
    }
}
