/* ==========================================================================
   Silent Disco Verhuur - Custom Styles
   ========================================================================== */

/* Font Faces */
@font-face {
  font-family: 'Nohemi';
  src: url('/resources/Fonts/Nohemi/Nohemi-Light.ttf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Nohemi';
  src: url('/resources/Fonts/Nohemi/Nohemi-Bold.ttf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Beastly';
  src: url('/resources/Fonts/Beastly/BeastlyDemo-18Point.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* Box Sizing Reset */
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

/* Custom theme colors */
:root {
  --primary: #ee7f31;
  --secondary: #245742;
  --navbar: #d6f566;
  --success: #28a745;
  --info: #FEB3D1;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;

  --geel: #f8d354;
  --roze: #f4b6d1;
  --donkerrood: #470f0f;

  --body-bg: #FCF9f0;
  --body-color: var(--dark);

  --text: var(--dark);
  --text-title: #343a40;
  --text-navbar: #343a40;
  --text-footer: var(--light);

    --alert-success-bg: var(--success);
    --alert-success-text: var(--light);
    --alert-danger-bg: var(--danger);
    --alert-danger-text: var(--light);
    --alert-warning-bg: var(--warning);
    --alert-warning-text: var(--dark);
    --alert-info-bg: var(--info);
    --alert-info-text: var(--dark);
}

/* Global Styles */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Nohemi', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--body-bg);
    color: var(--body-color);
    margin: 0;
    padding: 0;
}

.container {
    margin-bottom: 20px;
}

/* Toasts should overlay the page, not shift layout */
#toastContainer {
    position: fixed !important;
    top: 4.5rem !important;
    right: 1rem !important;
    z-index: 9999 !important;
    pointer-events: none !important;
    max-width: 500px;
}

#toastContainer .toast {
    pointer-events: auto;
    margin-bottom: 1rem;
}

main {
    flex: 1;
}

.footer {
    margin-top: auto;
}

/* Progress Steps */
.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 2rem;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.progressStep {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.progressStep-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.progressStep-label {
    font-size: 0.875rem;
    color: var(--secondary);
    text-align: center;
    font-weight: 500;
}

.progressStep.active .progressStep-number {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 0 4px rgba(238, 127, 49, 0.2);
}

.progressStep.active .progressStep-label {
    color: var(--primary);
    font-weight: 600;
}

.progressStep.completed .progressStep-number {
    background: var(--success);
    color: white;
}

.progressStep.completed .progressStep-label {
    color: var(--success);
}

/* Product Cards */
.product-card {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.product-card.border-primary {
    border-color: var(--primary) !important;
    box-shadow: 0 4px 12px rgba(238, 127, 49, 0.2);
}

.product-card .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Price Summary */
.price-breakdown {
    font-size: 0.95rem;
}

.sticky-top {
    position: sticky;
}

/* Status Badges */
.badge {
    padding: 0.5em 0.75em;
    font-weight: 600;
}

/* Cards */
.card {
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    margin-bottom: 1.5rem;
}

.card-header {
    border-radius: 8px 8px 0 0 !important;
    font-weight: 600;
    background-color: var(--light);
    color: var(--secondary);
}

/* Card Color Variants */
.card.card-primary,
.card-header.card-header-primary {
    background-color: var(--primary);
    color: white;
}

.card.card-success,
.card-header.card-header-success {
    background-color: var(--success);
    color: white;
}

.card.card-warning,
.card-header.card-header-warning {
    background-color: var(--warning);
    color: white;
}

.card.card-info,
.card-header.card-header-info {
    background-color: var(--info);
    color: white;
}

.card.card-danger,
.card-header.card-header-danger {
    background-color: var(--danger);
    color: white;
}

/* Buttons */
.btn {
    border-radius: 6px;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
}

/* Forms */
.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    border-radius: 6px;
    border: 1px solid #ced4da;
    padding: 0.625rem 0.875rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(238, 127, 49, 0.25);
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Tables */
.table {
    font-size: 0.95rem;
}

.table thead th {
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
    color: #495057;
}

.table-hover tbody tr:hover {
    background-color: rgba(238, 127, 49, 0.05);
}

/* Alerts */
.alert {
    border-radius: 8px;
    border: none;
}

.alert-success {
    background-color: var(--alert-success-bg);
    color: var(--alert-success-text);
}

.alert-danger {
    background-color: var(--alert-danger-bg);
    color: var(--alert-danger-text);
}

.alert-warning {
    background-color: var(--alert-warning-bg);
    color: var(--alert-warning-text);
}

.alert-info {
    background-color: var(--alert-info-bg);
    color: var(--alert-info-text);
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.25rem;
}

/* Login Page */
.min-vh-100 {
    min-height: 100vh;
}

/* Dashboard Cards */
.card.bg-primary, 
.card.bg-success, 
.card.bg-warning, 
.card.bg-info, 
.card.bg-danger {
    border: none;
}

.card.bg-primary h2, 
.card.bg-success h2, 
.card.bg-warning h2, 
.card.bg-info h2, 
.card.bg-danger h2 {
    font-weight: 700;
}

/* Pagination */
.pagination {
    margin-top: 1.5rem;
}

.page-link {
    color: var(--primary);
    border-radius: 6px;
    margin: 0 2px;
}

.page-link:hover {
    color: var(--primary);
    background-color: rgba(238, 127, 49, 0.1);
}

.page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Modal */
.modal-content {
    border-radius: 8px;
}

.modal-header {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

/* Error Page */
.error-page {
    padding: 2rem;
}

.error-page .display-1 {
    font-size: 8rem;
    font-weight: 700;
    color: var(--danger);
}

/* Responsive Design */
@media (max-width: 768px) {
    .progress-progressSteps {
        flex-wrap: wrap;
    }
    
    .progressStep {
        margin-bottom: 1rem;
        min-width: 50%;
    }
    
    .progressStep-label {
        font-size: 0.75rem;
    }
    
    .progressStep-number {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
    .btn-lg {
        font-size: 1rem;
        padding: 0.625rem 1.25rem;
    }
    
    .card-body {
        padding: 1rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .btn,
    .alert,
    .progress-steps,
    .footer {
        display: none;
    }
    
    .card {
        border: 1px solid #dee2e6;
        box-shadow: none;
    }
}

/* Utility Classes */
.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.border-primary {
    border-color: var(--primary) !important;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: #d46b22;
    border-color: #d46b22;
}

.btn-primary:focus,
.btn-primary.focus {
    background-color: #d46b22;
    border-color: #d46b22;
    box-shadow: 0 0 0 0.25rem rgba(238, 127, 49, 0.35);
}

.btn-primary:active,
.btn-primary.active,
.show > .btn-primary.dropdown-toggle {
    background-color: #c7631f;
    border-color: #c7631f;
}

.btn-primary:disabled,
.btn-primary.disabled {
    background-color: #f2a46d;
    border-color: #f2a46d;
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:focus,
.btn-outline-primary.focus {
    box-shadow: 0 0 0 0.25rem rgba(238, 127, 49, 0.35);
}

.btn-outline-primary:active,
.btn-outline-primary.active,
.show > .btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #c7631f;
    border-color: #c7631f;
}

.btn-outline-primary:disabled,
.btn-outline-primary.disabled {
    color: #f2a46d;
    border-color: #f2a46d;
    background-color: transparent;
}

.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background-color: var(--light);
    border-color: var(--secondary);
    color: var(--secondary)
}

.btn-secondary:focus,
.btn-secondary.focus {
    background-color: var(--secondary);
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.25rem rgba(36, 87, 66, 0.35);
}

.btn-secondary:active,
.btn-secondary.active,
.show > .btn-secondary.dropdown-toggle {
    background-color: #1a3f30;
    border-color: #1a3f30;
}

.btn-secondary:disabled,
.btn-secondary.disabled {
    background-color: #7b9a8d;
    border-color: #7b9a8d;
}

.btn-outline-secondary {
    color: var(--secondary);
    border-color: var(--secondary);
}

.btn-outline-secondary:hover {
    color: #fff;
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.btn-outline-secondary:focus,
.btn-outline-secondary.focus {
    box-shadow: 0 0 0 0.25rem rgba(36, 87, 66, 0.35);
}

.btn-outline-secondary:active,
.btn-outline-secondary.active,
.show > .btn-outline-secondary.dropdown-toggle {
    color: #fff;
    background-color: #1a3f30;
    border-color: #1a3f30;
}

.btn-outline-secondary:disabled,
.btn-outline-secondary.disabled {
    color: #7b9a8d;
    border-color: #7b9a8d;
    background-color: transparent;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}
/* ==========================================================================
   Status History Timeline
   ========================================================================== */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
}

.timeline-item {
    position: relative;
    padding-bottom: 20px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -26px;
    top: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.timeline-item.latest .timeline-marker {
    border-color: #28a745;
    background: #28a745;
    color: white;
}

.timeline-item.latest .timeline-marker i {
    color: white;
}

.timeline-content {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 6px;
    border-left: 3px solid #e0e0e0;
}

.timeline-item.latest .timeline-content {
    border-left-color: #28a745;
    background: #f0f8f4;
}

/* ==========================================================================
   Customer Pages
   ========================================================================== */
header {
  background: var(--geel);
  /* height: 45vh;  Dit maakt de header gevoelig voor non full page */
  box-sizing: border-box;
  position: relative;
  height: 580px;
  margin-bottom: 120px;
  padding-top: 20px;
  overflow: visible;
  /* Ensure overflow doesn't affect layout */
}

.contentPages {
  height: fit-content;
  padding-bottom: 20px;
  margin-bottom: auto;
}

.top-section {
  margin: 0 auto;
  /* centreer truckje */
  max-width: 1024px;
  /* centreer truckje */
  align-items: center;
  flex-direction: column;
  
}

.logo-and-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  height: 75px;
  transform: rotate(-12deg);
}

.cta-text {
  padding: 15px;
  width: 100%;
  font-weight: 500;
  text-align: center;
}

.cta-button {
  background-color: transparent;
  /* Fallback color */
  color: white;
  /* White text */
  border: none;
  /* No border */
  padding: 10px 20px;
  /* Padding inside the button */
  cursor: pointer;
  /* Pointer cursor on hover */
  font-family: 'Nohemi', sans-serif;
  /* Font family */
  font-size: 1.2rem;
  /* Font size */
  font-weight: bold;
  /* Bold text */
  display: inline-block;
  /* Inline block for padding */
  text-align: center;
  /* Center the text */
  background-image: url('/resources/svg/ctabutton.svg') !important;
  /* Path to your SVG */
  background-size: cover;
  /* Cover the entire button */
  background-repeat: no-repeat;
  /* No repeat */
  border-radius: 15px;
  /* Rounded corners if needed */
  position: relative;
  /* Position relative for pseudo-elements */
  overflow: hidden;
  /* Hide overflow of pseudo-elements */
}

.cta-button:hover {
  background-color: var(--primary);
  color: var(--body-text);
  /* Darker orange on hover */
}

/*
.cta-button:active {
  background-color: #c6591f; /* Even darker orange on active */

.company-shoutout {
  font-family: Beastly;
  margin-top: 20px;
  color: black;
  font-size: 3rem;
  font-weight: 400;
  line-height: 85%;
  text-align: center;
}


.image-section-wrapper {
  transform: rotate(-5deg);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-left: 3px; /* needed to avoid a horizontal scroll bar */
  margin-right: 3px; /* needed to avoid a horizontal scroll bar */
}

.image-section {
  display: flex;
  justify-content: center;
  margin-top: 40px;

}

.polaroid {
  background: white;
  padding: 5px 5px 40px;
  border-radius: 5px;
  border: 1px solid var(--dark);
  margin: 0 10px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}

.polaroid-img {
  width: 540px;
  height: 350px;
  object-fit: cover;
}

.promise-banner {
  background-color: var(--navbar);
  color: var(--text);
  padding: 10px;
  width: 100%;
  position: relative;
  transform: rotate(5deg);
  display: flex;
  justify-content: space-evenly;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-size: 0.75rem;
  font-weight: 600;
}

.promise-banner-contentpage
{
  margin-top: -10px;
}

.promise-banner p {
  margin: 0 10px;
}

.star {
  width: 40px;
  /* Adjust size as needed */
  height: 40px;
  /* Adjust size as needed */
  position: absolute;
  z-index: 0;
}

.promise-banner-star {
  width: 15px;
  height: 15px;
  position: relative;
}

.star1 {
  top: 50%;
  /* Adjust position as needed */
  left: 2%;
  /* Adjust position as needed */
}

.star2 {
  top: -3%;
  /* Adjust position as needed */
  right: 40%;
  /* Adjust position as needed */
  transform: rotate(-10deg);
}

.star3 {
  top: 35%;
  /* Adjust position as needed */
  right: 35%;
  /* Adjust position as needed */
  width: 20px;
  /* Adjust size as needed */
  height: 20px;
  /* Adjust size as needed */
  transform: rotate(50deg);
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--text);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-text h1 {
  font-size: 3rem;
  margin: 0;
}

.banner-text p {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.banner-text .btn {
  font-size: 1.5rem;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  color: var(--text);
  text-decoration: none;
  background-color: var(--navbar);
  transform: rotate(5deg);
}

.banner-text .btn:hover {
  border-color: var(--navbar);
  background-color: var(--navbar);
  /* Underline color and thickness */
}

/*menu */
.menu-container-home {
  position: absolute;
  overflow: visible;
  top: 425px;
  left: 50%;
  transform: translateX(-50%);
}
.menu-container {
  position: relative;
  overflow: visible;
  margin-top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.menu-row {
  display: flex;
  justify-content: center;
}

.menu-container-center {
  position: relative;
  left: auto;
  transform: none;
}


.menu-button {
  background-color: transparent;
  /* Fallback color */
  color: var(--body-text);
  /* White text */
  border: none;
  /* No border */
  margin-top: 10px;
  padding: 10px 20px;
  /* Padding inside the button */
  cursor: pointer;
  /* Pointer cursor on hover */
  font-family: 'Beastly', sans-serif;
  /* Font family */
  font-size: 2rem;
  /* Font size */
  font-weight: bold;
  /* Bold text */
  display: inline-block;
  /* Inline block for padding */
  text-align: center;
  /* Center the text */
  background-image: url('/resources/svg/menubutton.svg') !important;
  /* Path to your SVG */
  background-size: cover;
  /* Cover the entire button */
  background-repeat: no-repeat;
  /* No repeat */
  border-radius: 15px;
  /* Rounded corners if needed */
  position: relative;
  /* Position relative for pseudo-elements */
  overflow: hidden;
  /* Hide overflow of pseudo-elements */
}

.cta-button:hover {
  background-color: var(--primary);
  /* Darker orange on hover */
}


.menu-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.menu-items {
  display: none; /* Hidden by default */
  position: absolute;
  background-color: var(--navbar);
  padding: 10px;
  bottom: 100%; /* Position the menu above the button */
  width: 175px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-radius: 5px;
  text-align: center;
  left: 50%; 
  transform: translateX(-50%);
}

.menu-items a {
  display: block;
  padding: 8px 0;
  color: var(--body-text);
  font-weight: 600;
  text-decoration: none;
}

.main-content {
  margin-top: 20px;
  margin-bottom: 20px;
}

h1 {
  color: var(--text-title);
  text-align: center;
  margin-top: 20px;
}

.page-title {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 10px;
  font-family: 'Nohemi', sans-serif;
  font-size: 2.5em;
  color: var(--text-title);
}

.page-subtitle {
  text-align: center;
  margin-bottom: 50px;
  font-family: 'Nohemi', sans-serif;
  font-size: 1.2em;
  color: var(--text-title);
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Footer customization */
footer {
  background-color: var(--roze);
  color: var(--body-text);
  padding: 20px 0;

}

footer h5 {
  margin-bottom: 15px;
  font-family: Beastly;
  color: var(--secondary)
}

footer p {
  margin-bottom: 10px;
}

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

footer a:hover {
  text-decoration: underline;
}

/* Control size */
.footer-logo {
  width: 300px;
  /* Adjust the width as needed */
  height: auto;
  /* Maintain aspect ratio */

}

.footer-gras {
  width: 100%;
  /* Adjust the width as needed */
  height: auto;
  /* Maintain aspect ratio */
  overflow: hidden;

}



/*index page */


.icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  /* Allow the icon container to have its own height */
  height: auto;
  /* Ensure the container height adjusts to the content */
  padding: 10px;
  /* Optional: add some padding if necessary */
}

.stepHome{
  text-align: left
}

.stepHome img {
  max-height: 150px;
  /* Limit the icon height if necessary */
}

.stepHome-color1 {
  color: var(--secondary)
}

.stepHome-color2 {
  color: var(--primary)
}

.stepHome-color3 {
  color: var(--donkerrood)
}

.stepHome-text-section {
  padding: 15px;
}

.stepHome-text-section h3 {
  margin-top: 0;
}

.stepHome-subtitle {
  font-family: Beastly;
  font-size: 2rem;
  margin-bottom: 5px;
}




.explanation-section {
  background-color: var(--secondary);
  color: var(--text-footer);
  padding-top: 50px;
  padding-bottom: 30px;
  padding-left: 100px;
  padding-right: 50px;

}

.explanation-section h4 {
  font-family: Beastly;

}

/* faq section */
.accordion {
  width: 100%;
  border-radius: 8px;
}

.accordion-item {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
  border: none;
  background-color: var(--secondary);
  color: var(--text-footer);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-button {
  width: 100%;
  text-align: left;
  padding: 15px;
  font-size: 18px;
  background-color: var(--secondary) !important;
  color: var(--text-footer) !important;
  border: none;
  cursor: pointer;
  outline: none !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
  border-radius: 8px;
  box-shadow: none !important;
}

.accordion-button:hover {
  background-color: var(--primary) !important;
  color: var(--text-footer) !important;
}

.accordion-button.active {
  background-color: var(--primary) !important;
  color: var(--text-footer) !important;
  box-shadow: none !important;
}

.accordion-button i {
  transition: transform 0.3s;
}

.accordion-button.active i {
  transform: rotate(180deg) !important;
}

.accordion-item.active .accordion-button i {
  transform: rotate(180deg) !important;
}

.accordion-content {
  display: none;
  padding: 15px;
  background-color: var(--secondary);
  color: var(--text-footer) !important;
}

.accordion-content p {
  margin: 0;
  color: var(--text-footer) !important;
}


/* Reserven pagina */
.products-container {
  display: flex;
  justify-content: space-between;
  /* Adjust space between items */
  flex-wrap: nowrap;
  /* Prevent wrapping */
}

/* Inspiratie pagina */
.masonry {
  column-count: 3;
  column-gap: 1em;
}

.masonry-item {
  display: inline-block;
  background: white;
  margin: 0 0 1em;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.masonry-item:hover {
  transform: scale(1.05);
}

.masonry-item img {
  width: 100%;
  height: auto;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.masonry-item .content {
  padding: 1em;
}

.masonry-item h5 {
  font-size: 1.25em;
  margin-bottom: 0.5em;
}

.masonry-item p {
  color: #555;
}

/* queries for specific resolutions */
@media (max-width: 767px) {

  header {
    height: fit-content;
    margin-bottom: auto;
  }
  
  .menu-container {
    bottom: 0px;
  } 

  .polaroid-img {
    width: 150px;
    height: 150px;
  }

  .promise-banner {
    font-size: 0.55rem;
  }

  .company-shoutout {
    font-size: 2rem;
    font-weight: 400;
  }

  .banner-text .btn {
    font-size: 1rem;
  }

  .star2 {
    right: 10%;
  }

  .star3 {
    right: 15%
  }

  /* explanation section mobile */
  .explanation-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* inspiratie pagina */
  .masonry {
    column-count: 1;
    padding: 15px;
  }
}