/* nav en footer aan elkaar */

*{
    margin: 0;
    padding: 0;
}

/* mijn nav */

header {
    background-color: #4285f4;
    border-bottom: 1px solid #e7e7e7;
    padding: 10px;
    text-align: center;
  }
  
  nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  
  nav li {
    display: inline-block;
    margin-right: 10px;
  }
  
  nav a {
    display: block;
    color: #fff;
    font-size: 1.2em;
    text-decoration: none;
    padding: 10px;
    transition: background-color 0.3s ease;
  }
  
  nav a:hover,
  nav a.active {
    background-color: #3c77d1;
  }
/* Welcome index boven stuk */

  .welcome {
    background-color: #f8f9fa;
    text-align: center;
    padding: 3rem 1rem;
    margin-bottom: 2rem;
}

.welcome h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.welcome button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
}

/* Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 0 1rem;
}

.content-grid article {
    border: 1px solid #dee2e6;
    border-radius: 4px;
    text-align: center;
    padding: 1rem;
}

.content-grid img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.content-grid button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
}






.page-footer {
    background-color: #1a1a1a;
    padding: 40px 0;
    color: #fff;
}

.container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item i {
    background: #2c2c2c;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.social-icons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.social-icons a {
    background: #2c2c2c;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}





/* media */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
}

/* footer */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
}