html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    font-family: Arial, sans-serif;
    background: #fafafa;
}

header {
    background: #222;
    color: white;
    padding: 1rem;
}

header .nav-link {
    color: white;
    margin-left: 1rem;
    text-decoration: none;
}

header .nav-link:hover {
    color: red;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* standaard 3 per rij */
    gap: 1rem;
    padding: 1rem;
    justify-items: center; /* centreer de items binnen hun grid-cel */
}

/* Tablet: 2 per rij */
@media (max-width: 1400px) {
    .books-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobiel: 1 per rij */
@media (max-width: 991px) {
    .books-grid {
        grid-template-columns: 1fr;
    }

    .card-body {
        font-size: 1rem !important;
    }
}

.book-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s;

    .card-body
    {
        font-size: .75rem;
    }

    .card-footer{
        position: absolute;
        bottom: 0;
        width: 100%;
    }
}

.book-card:hover {
    transform: scale(1.05);
    cursor: pointer;
}






.about-me {
    text-align: center;
    margin-top: 1rem;

    .profile-pic {
        width: 150px;
        border-radius: 50%;
        margin-bottom: 1rem;
    }

    .socials a {
        margin: 0 0.5rem;
        color: #0066cc;
    }
}

