* {
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
  }
  
  body {
    margin: 0;
    background: radial-gradient(circle at top, #2b1d14, #0b0f1a);
    color: #f5e6d3;
  }
  
  /* subtiele sterren */
  .stars {
    position: fixed;
    inset: 0;
    background: url('https://www.transparenttextures.com/patterns/stardust.png');
    opacity: 0.15;
    z-index: -1;
  }
  
  /* header */
  .header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(to bottom, rgba(60,35,20,0.9), rgba(10,10,20,0.9));
    border-bottom: 1px solid rgba(255,200,150,0.3);
  }
  
  .subtitle {
    color: #f2c89b;
    letter-spacing: 1px;
  }
  
  /* back button */
  .back-btn {
    position: absolute;
    left: 20px;
    top: 20px;
    color: #f2c89b;
    text-decoration: none;
  }
  
  /* navigatie */
  .nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background: rgba(20,15,10,0.85);
  }
  
  .nav button {
    padding: 12px 26px;
    border-radius: 25px;
    border: 1px solid #f2c89b;
    background: transparent;
    color: #f2c89b;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .nav button:hover {
    background: #f2c89b;
    color: #2b1d14;
    box-shadow: 0 0 15px rgba(242,200,155,0.6);
  }
  
  /* content */
  .content {
    padding: 40px;
  }
  
  .section {
    display: none;
  }
  
  .section.active {
    display: block;
  }
  
  h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #ffd9b3;
  }
  
  /* home info */
  .intro {
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
    text-align: center;
  }
  
  .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
  
  .info-card {
    background: rgba(60,35,20,0.7);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255,200,150,0.3);
  }
  
  /* menu */
  .menu-category {
    max-width: 600px;
    margin: 0 auto 30px;
    background: rgba(40,25,15,0.7);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255,200,150,0.25);
  }
  
  .menu-category h3 {
    color: #ffcc99;
    margin-bottom: 15px;
  }
  
  .menu-category ul {
    list-style: none;
    padding: 0;
  }
  
  .menu-category li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dotted rgba(255,200,150,0.3);
  }
  