* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    background: #f4e3d7;
    color: #4b2e1a;
    padding: 20px;
}

.container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 40px 20px;
}

.gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
}

.gallery img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 4px;
}

.cta {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid #ddd;
}

.cta a {
            text-decoration: none;
            font-weight: 600;
            color: #fff;
}

        .cta a:hover {
            text-decoration: underline;
}

header {
    background-color: #E0CFC3;
    color: #4b2e1a;
    padding: 40px 20px;
    text-align: center;
    border-radius: 30px;
    position: relative;
    width: 100%;
    overflow: visible;
    padding-bottom: 50px;
}

header h1 {
    font-size: 2.5em;
    color: #ab5039;
}

header p {
    font-size: 1.2em;
    color: #444;
}

  
.page-title {
  text-align: center;
  font-size: 2em;
  margin-top: 30px;
  margin-bottom: 20px;
  color: #4b2e1a; /* eventueel je eigen kleur */
}

.content-blok {
  max-width: 1500px;   /* bredere container */
  width: 90%;          /* vult 90% van de pagina */
  margin: 0 auto;      /* centreren */
  padding: 20px;       /* beetje ruimte rondom */
}

.logo {
    position: absolute;
    bottom: 50px;
    left: 5%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 3px solid white;
    object-fit: cover;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 25px;
}

.slogan {
    position: absolute;
    bottom: 20px;
    right: 5%;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
    color: #65303E;
    font-family: 'arial black', arial;
}


/* Anchor link fix voor vaste header */
section[id] {
  scroll-margin-top: 200px;
}

.workshoppagina .Workshopmenu {
    padding: 10px 20px;
    margin-bottom: 20px;
    position: relative;
    left: 0;
    width: 100%;
    background: #4b2e1f;
    color: #FFF;
    z-index: 9999;
}

.Workshopmenu a {
    margin-right: 15px;
    color: #FFF;
    text-decoration: none;
    font-weight: 600;
}

.workshoppagina {
    padding-top: 30px;
 
}

.menu ul {
  display: flex;
  list-style: none;
  gap: 1em;
  margin: 0;
  padding: 0;
  color:white;

}
.socials {
    marging-left: auto;
    display: flex;
    gap: 15px;
}
.menu-toggle {
  display: none; /* nog niet zichtbaar op grote schermen */
  font-size: 2em;
  cursor: pointer;
}

/* --- Alleen op telefoons (onder 768px breedte) --- */
@media (max-width: 768px) {
  .menu ul {
    display: none; /* menu verbergen */
    flex-direction: column;
    background-color: #f4e3d7; /* kies je eigen kleur */
    color:white;
    position: absolute;
    top: 60px; /* onder de header */
    right: 10px;
    padding: 10px;
    border: 1px solid #ccc;
  }

  .menu ul.show {
    display: flex; /* menu zichtbaar als je op ☰ klikt */
    color:white;
  }

  .menu-toggle {
    display: block; /* hamburgermenu tonen */
  }
}

.social-icon {
    color: white;
    font-size: 22px;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover,
a:focus {
    text-decoration: underline; /* onderstreept bij hover of focus */
}


.intro {
  display: flex;              /* Plaatst afbeelding en tekst naast elkaar */
  align-items: center;        /* Centreert ze verticaal */
  gap: 20px;                  /* Ruimte tussen foto en tekst */
  margin: 40px;
}

.rond-foto {
  width: 150px;               /* Pas grootte aan */
  height: 150px;
  object-fit: cover;          /* Zorgt dat de afbeelding goed bijsnijdt */
  border-radius: 50%;         /* Maakt de afbeelding rond */
  border: 3px solid #ccc;     /* Optioneel: rand */
}

.tekst {
  max-width: 500px;           /* Beperk tekstbreedte indien gewenst */
}

nav {
    background-color: #f4e3d7;
    color: #4b2e1a;
    padding: 10px 20px;
    gap: 20px;
    display: flex;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #ccc;
}

nav a {
    text-decoration: none;
    color: #333;
}

nav a:hover {
    text-decoration: underline;
}

section {
    margin: 40px auto;
    max-width: 800px;
    padding: 0 10px;
}

section h2 {
    font-size: 1.8em;
    color: #ab5039;
    margin-bottom: 10px;
}

section ul {
    list-style: none;
    margin-bottom: 10px;
}

section ul li {
    margin: 5px 0;
}

a {
    color: #ab5039;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    margin-top: 60px;
    font-size: 0.9em;
    color: #777;
}

.contactblok {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contactgegevens {
  flex: 2;
}

.contactfoto {
  flex: 1;
}

.contactfoto img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}


.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #4b2e1a;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 50%;
  font-size: 22px;
  text-align: center;
  cursor: pointer;
  display: none;
  z-index: 9999;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: background 0.3s, transform 0.3s;
}
.drie-kolommen {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 kolommen van gelijke breedte */
  gap: 20px;
  margin: 40px;
}
@media (max-width: 800px) {
  .drie-kolommen {
    grid-template-columns: 1fr; /* alles onder elkaar */
  }
}


.kolom {
  background: #E0CFC3;
  padding: 20px;
  border-radius: 8px;
 font-size: 1em;
    color: #ab5039;
}


/* Basisopmaak voor alle knoppen */
.knop-basis {
  display: inline-block;
  background-color: #4b2e1a;   /* jouw hoofdkleur */
  color: #FFF;                 /* donkere tekst voor contrast */
  font-family: 'Segoe UI', sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 28px;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 20px;
  margin-bottom: 20px;
  cursor: pointer;
}

/* Hover-effect: subtiele schaduw en iets donkerdere tint */
.knop-basis:hover {
  background-color: #e8d2c2;   /* iets donkerdere variant van #f4e3d7 */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

/* Eventueel klik-effect */
.knop-basis:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Varianten (optioneel, als je later andere kleuren wilt gebruiken) */
.knop-inblok {
  display: inline-block;
  background-color: #4b2e1a;   /* jouw hoofdkleur */
  color: #FFF;                 /* donkere tekst voor contrast */
  font-family: 'Segoe UI', sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 28px;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 20px;
  margin-bottom: 20px;
  cursor: pointer;
}

.knop-inschrijven {
  background-color: #4b2e1a;
}

Rok op maat naaiatelier noordbroek.jpg
@media (max-width: 600px) {

    /* Navigatie mobiel centreren */
    nav {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 10px;
        text-align: center;
    }

 }@media (max-width: 600px) {

    /* Navigatie mobiel gecentreerd */
    nav {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 10px;
        text-align: center;
    }

    /* LOGO: midden bovenin */
    .logo {
        position: absolute !important;
        top: 10px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 90px !important;
        height: 90px !important;
        z-index: 2;
        border-radius: 50%;
        border: 3px solid white;
        object-fit: cover;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    /* SLOGAN: midden onderin */
  .slogan {
      font-size: 0.9rem !important;
      position: absolute !important;
      bottom: 20px;
      right: 10px;
      transform: none !important;
      max-width: 90%;
      text-align: right;
    }

    header img {
        max-height: 250px;
        object-fit: cover;
        width: 100%;
        display: block;
    }

    section {
        margin: 20px auto;
        padding: 0 10px;
    }

    section h2 {
        font-size: 1.4em;
    }

    section ul {
        padding-left: 20px;
    }

    section ul li {
        font-size: 0.95em;
    }

    footer {
        padding: 10px;
    }
}
#workshop-impressie {
    Background-color: transparant;
}
