/* style script */
/*   rettep   */

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

  :root {
    --bg: black;
    --bgdark: black;
    --bgview: #eee;
    --panel: #111827;
    --muted: #334155;
    --text: #CECE9C;
    --textlight: #e9e9e9;
    --buttontext: white;
    --buttonbackground: black;
    --buttonhover: #333;
    --accent: #22d3ee; 
    --border: #111;
    --message: #CECE9C;
    --error: red;
    --rettep: #CECE9C;
  }

/* Works on Firefox */
* {
  scrollbar-width: thin;
  /* scrollbar-color: grey white; */
}
/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 6px;
}

*::-webkit-scrollbar-track {
  background: var(--bgdark);
}

*::-webkit-scrollbar-thumb {
  background-color: var(--bgdark);
  border: 4px solid var(--buttonhover);
}
/* --- */

  body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: var(--bg);
    color: var(--text);
  }

  header {
    display: flex;
    flex: 0;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    flex-wrap: wrap;
  }

  header .logo {
    width: 150px;
    margin: 0;
    border: none;
  }

  h1.header {
    display: inline-block;
  }

  /* menu */

  nav {
    display: flex;
    gap: 1rem;
    border-bottom: 1px solid black;
  }

  nav a {
    text-decoration: none;
    color: var(--text);
  }

  .dropdown {
    position: relative;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg);
    min-width: 160px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1;
    animation: dropdown 1s ease forwards;
  }

  .dropdown-content a {
    display: block;
    padding: 10px;
    color: black;
    text-decoration: none;
  }

  .dropdown-content a:hover {
    background: #f1f1f1;
  }

  /* Toon dropdown bij hover */
  .dropdown:hover .dropdown-content {
    display: block;
  }

  /* --- */

  main {
    flex: 1;
    /*display: flex;*/
    /*flex-direction: column;*/
    background-color: var(--bgdark);
    color: var(--textlight);
    background-size: cover;
    background-position: center;
    padding: 0.5rem;
    overflow-y: auto;
  }

  main {
    justify-content: center;   /* horizontaal centreren */
    background-image: url('../images/studio.jpg');
  }

  .content-container {
    max-width: 1080px;
    margin: 0 auto;
  }

  .content-header {
    margin-bottom: 2rem;
  }

  .content-main {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 2rem;
    opacity: 0;
    animation-delay: 0.1s;
  }

  .content-main .column {
    flex: 1;
  }

  .content-main .column {
    max-width: 520px;
  }

  .content-main .form, .record {
    width: 100%;
    height: auto;
    padding: 5px;
    border-radius: 5px;
  }

  .content-main .form, .text {
    width: 100%;
    height: 300px;
    border-radius: 5px;
  }

  .content-main .form, .button {
    width: 100%;
    padding: 5px;
    border-radius: 8px;
  }

  footer {
    display: flex;
    flex: 0 0 auto;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    flex-wrap: wrap;
  }

  footer a, .content-main-contact a {
    text-decoration: underline;
    color: var(--cta);
  }

  .button {
    border: none;
    background-color: var(--rettep);
  }
  
  .right {
    text-align: right;
  }

  .error {
    color: var(--error);
  }
 
  .message {
    color: var(--message);
  }
 
  .nodecoration {
    text-decoration: none;
  }
 
  a {
    color: var(--rettep);
  }
 
/* -- font -- */

  body {
    font-family: monospace;
  }

  h1.header {
    font-size: 1rem;
  }

    h2.header {
      font-size: 1rem;
    }

  main h1 {
    font-size: 2rem;
    margin-bottom: 25px;
  }

  main h2 {
    font-size: 1.2rem;
    margin-bottom: 25px;
  }

  main h3 {
    font-size: 1rem;
     margin-bottom: 10px;
 }
  
  main p {
    font-size: 0.8rem;
    margin-bottom: 20px;
  }
  
  main label {
    font-size: 0.8rem;
    margin-bottom: 2px;
  }
  
  @media (min-width: 768px) { 
  
    header {
      padding: 0.5rem 1rem;
    }

    h1.header {
      font-size: 1.6rem;
    }

    h2.header {
      font-size: 1.2rem;
    }

    main h1 {
      font-size: 3rem;
      margin-bottom: 20px;
    }

    main h2 {
      font-size: 2rem;
      margin-bottom: 20px;
    }

    main h3 {
      font-size: 1.5rem;
       margin-bottom: 10px;
   }
    
    main p {
      font-size: 1rem;
      margin-bottom: 15px;
    }
    
    main label {
      font-size: 1rem;
      margin-bottom: 2px;
    }
    
  }
  
  @media (min-width: 1024px) { 
    header {
      padding: 0.5rem 2rem;
    }

    main h1 {
      font-size: 4rem;
      margin-bottom: 25px;
    }

    main h2 {
      font-size: 2.5rem;
      margin-bottom: 25px;
    }

    main h3 {
      font-size: 2rem;
       margin-bottom: 10px;
   }
    
    main p {
      font-size: 1rem;
      margin-bottom: 20px;
    }
    
    main label {
      font-size: 1rem;
      margin-bottom: 2px;
    }
    
  }
