body {
  font-family: Arial, sans-serif;
  background-color: #fefadf;
 
}


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

:root {
/* CSS HEX */
--pag-bg: #593837ff;
--footer: #593837ff;
--footer-knoppen: rgb(255, 182, 18,0.9);
--footer-knoppen-hover: #9a996eff;
--footer-knoppen-tekst: #000;
--menu-item-bg:#FAFAFA;
--section-title:#FAFAFA;
--item-price-bg:#9a996eff;
--menu-item-price-font:#FAFAFA;
  
/* CSS HEX */
--chocolate-plum: #593837ff;
--amber-flame: #ffb612ff;
--white: #ffffffff;
--brandy: #942911ff;
--palm-leaf: #9a996eff;
}

      body {
     
                 
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
       background:var(--pag-bg);
        color: #6b6b5a;
        min-height: 100vh;
        line-height: 1.6;
        padding-bottom: 80px; /* Ruimte voor vaste navigatie onderaan */
      }
      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
      }
     .header {
  text-align: center;
  margin-bottom: 50px;
  padding: 40px 20px;
  background-image: url('/images/frontpage%202.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 15px;
  border: 0px solid #2d5016;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  z-index: 1;
}

.header * {
  position: relative;
  z-index: 2;
}
.header h1 {
  color:#fff;
  margin-bottom: 15px;
  text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: px;
}

.title-line-1 {
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 5px;
  font-family: verdana; /* Optioneel */
}

.title-line-2 {
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 2px;
  font-style: ;
  opacity: 0.8;
  color: #FFB612;
}
      .header p {
        font-size: 1.2rem;
        color: #ffff;
        font-style: italic;
        opacity: 0.9;
        margin-bottom: 20px;
      }
      .website-display {
        margin-top: 15px;
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
      }
      .website-button {
        padding: 12px 30px;
        background:#9A996E;
        color: #ffffff;
        border: none;
        border-radius: 25px;
        cursor: pointer;
        font-weight: normal;
        font-size: 1rem;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
        display: inline-block;
      }
      .website-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(45, 80, 22, 0.4);
      }
      .website-button[href="#"],
      .website-button[href=""] {
        display: none;
      }
      /* -------------- De header / navigatie -------------- */
  .sticky-header {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--footer);
  opacity: 0.95;
  backdrop-filter: blur(5px);
  border-top: 1px solid #b8c5a6;
  padding: 15px 0;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

.sticky-header .nav-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}

.sticky-header nav.main-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
}

.nav-button {
  padding: 10px 20px;
  background: var(--footer-knoppen);
  color: var(--footer-knoppen-tekst);
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(135, 169, 107, 0.3);
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  box-sizing: border-box;
}

.nav-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 10px grey;
  background: var(--footer-knoppen-hover);
}

.nav-button.active {
  background: #333745;
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(45, 80, 22, 0.5);
}

/* Mobile responsive aanpassingen */
@media (max-width: 768px) {
  .sticky-header {
    padding: 12px 0;
  }
  
  .sticky-header .nav-wrapper {
    padding: 0 8px;
  }
  
  .sticky-header nav.main-nav {
    gap: 8px;
  }
  
  .nav-button {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .sticky-header {
    padding: 10px 0;
  }
  
  .sticky-header .nav-wrapper {
    padding: 0 8px;
  }
  
  .sticky-header nav.main-nav {
    gap: 6px;
  }
  
  .nav-button {
    padding: 7px 10px;
    font-size: 0.78rem;
  }
}
      /* -------------- Overige secties (onveranderd / samenvatting) -------------- */
      .import-section {
        background: rgba(139, 168, 136, 0.2);
        padding: 30px;
        border-radius: 10px;
        margin-bottom: 40px;
        border-left: 5px solid #87a96b;
        display: none;
      }
      .update-notice {
        background: rgba(135, 169, 107, 0.1);
        padding: 20px;
        border-radius: 10px;
        margin-bottom: 30px;
        border: 1px solid #87a96b;
        text-align: center;
        display: none;
      }
      .update-notice h3 {
        color: #2d5016;
        margin-bottom: 10px;
      }
      .import-section h2 {
        color: #2d5016;
        margin-bottom: 20px;
        font-size: 1.5rem;
      }
      .file-input-wrapper {
        position: relative;
        display: inline-block;
        margin-bottom: 20px;
      }
      .file-input {
        position: absolute;
        opacity: 0;
        width: 100%;
        height: 100%;
        cursor: pointer;
      }
      .file-input-button {
        display: inline-block;
        padding: 12px 30px;
        background: linear-gradient(145deg, #87a96b, #b8c5a6);
        color: #2d5016;
        border: none;
        border-radius: 25px;
        cursor: pointer;
        font-weight: bold;
        font-size: 1rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(135, 169, 107, 0.3);
      }
      .file-input-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(135, 169, 107, 0.4);
      }
      .excel-instructions {
        background: rgba(245, 241, 232, 0.5);
        padding: 20px;
        border-radius: 8px;
        margin-top: 15px;
        border: 1px solid rgba(135, 169, 107, 0.3);
      }
      .excel-instructions h3 {
        color: #2d5016;
        margin-bottom: 10px;
      }
      .excel-instructions ul {
        list-style-position: inside;
        color: #6b6b5a;
      }
      .excel-instructions li {
        margin-bottom: 5px;
      }
      .excel-instructions p {
        margin-top: 10px;
        font-style: italic;
      }
      .menu-section {
        margin-bottom: 50px;
      }
      .menu-section.hidden {
        display: none;
      }
      .section-title {
        font-size: 2.5rem;
        color:var(--section-title);
        text-align: center;
        margin-bottom: 30px;
        padding-bottom: 15px;
        border-bottom: 3px solid #87a96b;
        position: relative;
        font-family: 'Lora', serif;
      }
      .section-title::after {
        content: "";
        position: absolute;
        bottom: -6px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 3px;
        background: #c07855;
      }
      .menu-grid {
        display: grid;
        gap: 25px;
      }
      .menu-item {
        background:var(--menu-item-bg);
        padding: 25px;
        border-radius: 15px;
        border: 1px solid rgba(135, 169, 107, 0.3);
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
      }
      .menu-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(135, 169, 107, 0.1), transparent);
        transition: left 0.5s ease;
      }
      .menu-item:hover::before {
        left: 100%;
      }
      .menu-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(135, 169, 107, 0.2);
        border-color: #87a96b;
      }
      .item-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 15px;
      }
      .item-name {
        font-size: 1.7rem;
        font-weight: normal;
        color: #2d5016;
        flex: 1;
        margin-right: 20px;
      }
      .item-price {
        font-size: 1rem;
        font-weight: normal;
        color:var(--menu-item-price-font);
        background:var(--item-price-bg);
        padding: 5px 15px;
        border-radius: 20px;
        white-space: nowrap;
      }
      .item-description {
        color: #6b6b5a;
        font-style: italic;
        font-size: 1.2rem;
        line-height: 1.5;
        opacity: 1.0;
      }
      .empty-state {
        text-align: center;
        padding: 60px 20px;
        color: #87a96b;
        font-size: 1.2rem;
        font-style: italic;
      }
      /* Responsieve aanpassingen */
      @media (max-width: 768px) {
        body {
          padding-bottom: 120px;
        }
        .container {
          padding: 15px;
        }
        .sticky-header {
          padding: 10px 0;
        }
        .sticky-header .nav-wrapper {
          padding: 0 15px;
        }
        .sticky-header nav.main-nav {
          gap: 10px;
        }
        .nav-button {
          padding: 8px 12px;
          font-size: 0.8rem;
          border-radius: 15px;
          min-width: fit-content;
        }
        .header h1 {
          font-size: 2rem;
          letter-spacing: 1px;
        }
        .header p {
          font-size: 1rem;
        }
        .admin-panel {
          padding: 30px 20px;
        }
        .section-title {
          font-size: 2rem;
        }
        .item-header {
          flex-direction: column;
          align-items: flex-start;
        }
        .item-name {
          margin-right: 0;
          margin-bottom: 10px;
        }
        .item-price {
          align-self: flex-end;
        }
        .menu-item {
          padding: 20px;
        }
        .import-section {
          padding: 20px;
        }
      }
      @media (max-width: 480px) {
        body {
          padding-bottom: 120px;
        }
        .sticky-header .nav-wrapper {
          padding: 0 10px;
        }
        .sticky-header nav.main-nav {
          gap: 8px;
          justify-content: center;
        }
        .nav-button {
          padding: 6px 10px;
          font-size: 0.75rem;
          border-radius: 12px;
          flex: 0 1 auto;
          text-align: center;
        }
        .header {
          padding: 30px 15px;
          margin-bottom: 30px;
        }
        .header h1 {
          font-size: 1.5rem;
          letter-spacing: 1px;
        }
        .header p {
          font-size: 0.9rem;
        }
        .admin-panel {
          width: 95%;
          padding: 25px 15px;
          max-height: 90vh;
          overflow-y: auto;
        }
        .section-title {
          font-size: 1.5rem;
        }
        .item-name {
          font-size: 1.3rem;
        }
        .item-price {
          font-size: 1.1rem;
        }
        .menu-item {
          padding: 15px;
        }
      }
      @media (max-width: 320px) {
        .nav-button {
          padding: 5px 8px;
          font-size: 0.7rem;
          min-width: 70px;
        }
      }
 
.item-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 15px auto;
  border-radius: 10px;
  overflow: hidden;
}

.item-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.item-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .item-image {
    height: 260px;
  }
}

@media (max-width: 480px) {
  .item-image {
    height: 180px;
  }
}
}
    </style>