/* ===== Kleurenpalet ===== */
:root {
    --bg: #0b0c10;
    --bg-dark: #1f2833;
    --text: #c5c6c7;
    --accent: #66fcf1;
    --accent-dark: #45a29e;
    --radius: 10px;
    --max-width: 1100px;
  }
  
  /* ===== Algemene stijl ===== */
  body {
    margin: 0;
    font-family: sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
  
    /* achtergrondafbeelding */
    background-image: url("/media/background2.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  }
  
  /* ===== Hero ===== */
  .hero {
    background: rgba(229, 213, 212, 0.8);
    backdrop-filter: blur(3px);
    text-align: center;
    font-family: sans-serif;
    padding: 40px 1px;
    box-shadow: 0 4px 7px rgba(76, 189, 233, 0.8);
  }
  
  .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #1f2833;
    font-family: 'Gill Sans'
  }
  
  .hero-content p {
    font-family: 'Gill Sans';
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    font-size: 1.1rem;
    color: #1f2833;
  }
  
  /* ===== Order Section ===== */
  .order-section {
    display: flex;
    justify-content: center;
    padding: 80px 20px;
  }
  
  .order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    width: 100%;
    max-width: var(--max-width);
  }
  
  /* ===== Info Block ===== */
  .info-block {
    background-color: rgba(243, 219, 218, 0.8);
    backdrop-filter: blur(4px);
    padding: 40px;
    font-family: 'Gill Sans';
    border-radius: var(--radius);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
  }
  
  .info-block h2 {
    color: #070000;
    margin-bottom: 15px;
  }
  
  .info-block ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    color: #070000;
  }
  
  .info-block li {
    margin-bottom: 8px;
    color: #070000;
  }
  
  .info-block a {
    color: #070000;
    text-decoration: none;
    font-weight: 600;
  }
  .info-block p {
    color: #070000;
  }
  
  .info-block a:hover {
    text-decoration: underline;
  }
  
  /* ===== Formulier ===== */
  .order-container {
    background-color:  rgba(229, 213, 212, 0.8);
    backdrop-filter: blur(4px);
    padding: 40px;
    font-family: 'Gill Sans';
    border-radius: var(--radius);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
  }
  
  .order-container h2 {
    color:  #070000;
    text-align: center;
    margin-bottom: 20px;
  }
  .order-container p{
    color:  #070000;
  }
  
  label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color:  #070000;
  }
  
  input,
  textarea {
    width: 100%;
    padding: 12px;
    border-radius: var(--radius);
    border: none;
    margin-bottom: 20px;
    background-color: #c5c6c7;
    color:  #070000;
    font-size: 1rem;
    font-family: 'Gill Sans';
  }
  
  textarea {
    resize: vertical;
  }
  
  .primary-btn {
    background-color: #c5c6c7;
    color: var(--bg-dark);
    border: none;
    font-family: 'Gill Sans';
    padding: 14px;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: 0.5s;
    font-size: 1.3rem;
  }
  
  .primary-btn:hover {
    background-color: rgb(172, 230, 233);
    color: var(--bg);
  }
  
  .full {
    width: 100%;
  }
  
  /* ===== Prijstabel ===== */
  .price-table {
    margin-top: 40px;
    font-family: 'Gill Sans';
  }
  
  .price-table h3 {
    color: black;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 50px;
    font-family: 'Gill Sans';
  }
  
  .price-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #c5c6c7;
    color: #0b0c10;
    border-radius: var(--radius);
    box-sizing: border-box;
    overflow: hidden;
  }
  
  .price-table th,
  .price-table td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #aaa;
  }
  
  .price-table th {
    background-color: #aaa;
    color: var(--bg-dark);
    font-weight: 700;
  }
  
  .price-table tr:last-child td {
    border-bottom: none;
  }
  
  /* ===== Footer ===== */
  footer {
    background-color: rgba(243, 219, 218, 0.8);
    backdrop-filter: blur(4px);
    text-align: center;
    padding: 25px;
    color: black;
    opacity: 0.8;
    font-size: 0.9rem;
  }
  
  /* ===== Pop-up contactformulier ===== */
  .popup-overlay {
    display: none;
    font-family: 'Gill Sans';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(191, 217, 222);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease-in-out;
  }
  
  .popup-content {
    background-color: rgba(229, 213, 212, 0.8);
    padding: 40px;
    border-radius: var(--radius);
    width: 90%;
    max-width: 450px;
    color: var(--text);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
    position: relative;
    font-family: 'Gill Sans';
  }
  
  .popup-content h2 {
    font-family: 'Gill Sans';
    color: black;
    margin-bottom: 10px;
    text-align: center;

  }
  
  .popup-content p {
    text-align: center;
    margin-bottom: 20px;
    color: black;
    font-family: 'Gill Sans';
  }
  
  .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    color: black;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Gill Sans';
  }
  
  .close-btn:hover {
    color: var(--accent-dark);
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: var(--radius);
    border: none;
    margin-bottom: 20px;
    background-color: #c5c6c7;
    color: #0b0c10;
    font-family: 'Gill Sans';
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  /* ===== Responsive ===== */
  @media (max-width: 900px) {
    .order-grid {
      grid-template-columns: 1fr;
    }
  }
  