/* Kleuren geïnspireerd op het logo */
:root {
  --green: #556b2f;
  --dark-brown: #4e342e;
  --light-beige: #fdfaf6;
  --accent-olive: #7a8450;
  --highlight: #a5a58d;
  --text-dark: #2d2d2d;
  --white: #ffffff;
}

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--light-beige);
  color: var(--text-dark);
}

body::after {
  content: "";
  display: block;
  height: 20px; 
}

header {
  background: linear-gradient(to right, var(--dark-brown), var(--green));
  color: var(--white);
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

footer {
  background-color: #658059;      /* afgestemd op het groene accent uit de header */
  color: #f5f3ec;                  /* lichte crèmekleur voor goede leesbaarheid */
  text-align: center;
  padding: 5px 0;                  /* nog smaller balkje */
  font-size: 0.75rem;              /* kleinere tekst, subtieler */
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  box-shadow: 0 -1px 3px rgba(0,0,0,0.1);
}

footer a {
  color: #e4e2d4;                 /* lichtere linkkleur */
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
.container {
    max-width: 800px;
    margin: auto;
  
    padding: 2rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  height: 40px;
  width: auto;
  border-radius: 6px;
  padding: 2px;
  background-color: transparent;
}

header h1 {
  margin: 0;
  font-size: 1.8rem;
}

nav {
  margin-top: 1rem;
}

nav a {
  color: var(--light-beige);
  margin-right: 1.5rem;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--highlight);
}

main {
  padding: 2rem;
}

h2 {
  color: var(--green);
}

.gallery {
  column-count: 2;
  column-gap: 1rem;
  padding: 2rem;
}

.gallery a {
  display: inline-block;
  width: 100%;
  margin-bottom: 1rem;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.gallery img:hover {
  transform: scale(1.05);
}

form {
  background-color: var(--white);
  padding: 2rem;
  max-width: 500px;
  margin: 2rem auto;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

label {
  display: block;
  margin-bottom: 1rem;
  color: var(--green);
  font-weight: 600;
}

input, textarea {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.5rem;
  border: 1px solid var(--accent-olive);
  border-radius: 8px;
  background-color: var(--light-beige);
  font-size: 1rem;
}

button {
  background-color: var(--dark-brown);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: var(--green);
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact label {
  font-weight: bold;
  color: #3a2f25; /* Donkerbruin passend bij je logo */
}

.contact input,
.contact textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.contact button {
  background-color: #4a6e57; /* Donkergroen */
  color: white;
  border: none;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
}

.contact button:hover {
  background-color: #3b5845;
}

.alert {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  background-color: #e0f2e9;
  color: #2d5936;
  border: 1px solid #a5d6b4;
  padding: 1rem 1.5rem;
  margin-top: 1rem;
  border-radius: 10px;
  text-align: center;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.4s ease-out;
}

.alert-icon {
  font-size: 1.5rem;
}

.alert-text {
  margin: 0;
}

.birthday-gif-container {
  display: flex;
  justify-content: center;       /* Centraal op de pagina */
  margin: 2rem 0;                /* Ruimte boven en onder */
  padding: 1rem;
  background: linear-gradient(135deg, #4a4a21, #7b5e34);  /* Brons/bruine warme tinten */
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(75, 94, 36, 0.5);
  max-width: 400px;              /* Max breedte van het vak */
  margin-left: auto;
  margin-right: auto;            /* Center het vak horizontaal */
}

.birthday-gif {
  width: 100%;                  /* Laat de gif max 100% van container zijn */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.birthday-gif:hover {
  transform: scale(1.05);       /* Subtiele vergroting bij hover */
  cursor: pointer;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .gallery {
    column-count: 4;
  }
}

@media (max-width: 600px) {
  .gallery {
    column-count: 1;
  }
}
