/* Layout Fixes CSS */

/* Fix project layout */
.project-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-skills {
  margin-top: auto;
  padding-top: 10px;
}

/* Fix card layout */
.card {
  display: flex;
  flex-direction: column;
}

.card-body {
  flex: 1;
}

/* Fix button alignment */
.btn-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* Fix section spacing */
.page-section {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .page-section {
    padding: 3rem 0;
  }
}

/* Fix wave divider */
.wave-divider {
  margin-top: -1px;
  margin-bottom: -1px;
  z-index: 10;
}

/* Fix masthead height on mobile */
@media (max-width: 576px) {
  .masthead {
    min-height: auto;
    padding-bottom: 2rem;
  }
}