.hero {
  min-height: 70vh;
  background: url('/assets/images/hero.webp') center center / cover no-repeat;
  position: relative;
}
.hero .overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 4rem 2rem;
  border-radius: 0.5rem;
}

.card-img-top {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

section {
  padding: 3rem 0;
}

.masonry {
    column-count: 4;
    column-gap: 1rem;
}

@media (max-width: 992px) {
    .masonry { column-count: 3; }
}

@media (max-width: 768px) {
    .masonry { column-count: 2; }
}

@media (max-width: 576px) {
    .masonry { column-count: 1; }
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1rem;
}
 .footer-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-link:hover {
    color: #dc3545;
  }

  .footer-social {
    color: #ffffff;
    transition: color 0.3s ease;
  }
  .footer-social:hover {
    color: #dc3545;
  }

.glightbox-container .gslide-description {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    background: transparent !important;
    padding: 0;
    max-width: none;
}
.glightbox-container .gdesc-inner {
    background: transparent !important;
    padding: 0;
    text-align: center;
}
.glightbox-container .gslide-title {
    display: inline-block;
    background-color: rgba(220, 53, 69, 0.9);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 0.25rem;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    margin: 0 auto;
}

/* Mobile Touch Target Fixes
   Ensure buttons meet minimum 44x44px touch target on mobile devices (WCAG 2.1)
*/
@media (max-width: 767.98px) {
    /* Make btn-sm larger on mobile for better touch targets */
    .btn-sm,
    .btn-group-sm > .btn {
        min-height: 44px;
        min-width: 44px;
        padding: 0.5rem 0.75rem;
        font-size: 1rem;
    }

    /* Icon-only buttons need to be square with proper size */
    .btn-sm:has(> i:only-child),
    .btn-group-sm > .btn:has(> i:only-child) {
        width: 44px;
        height: 44px;
        padding: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Table action buttons - stack vertically on mobile */
    .btn-group.btn-group-sm {
        flex-direction: column;
        gap: 0.25rem;
    }

    .btn-group.btn-group-sm > .btn {
        border-radius: 0.375rem !important;
        margin-left: 0 !important;
    }

    /* Pagination links */
    .pagination .page-link {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
