.section-header {
    text-align: left;
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}
.section-title:hover {
    color: #555;
}
.show-more-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #b6c92f;
    color: white;
    border-radius: 4px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.show-more-btn:hover {
    background-color: #b6c92f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.multi-photo-slider-container {
    max-width: 3000px;
    margin: 0 auto;
    position: relative;
}
.slider-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}
.multi-photo-slider {
    position: relative;
    overflow: hidden;
    margin: 0;
    flex-grow: 1;
}
.slide {
    display: none;
}
.photo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.photo-item {
    position: relative;
    will-change: transform;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-radius: 0.75rem;
    height: 100%;
    border: 1px solid;
    border-color: #0000001a;
}

.photo-item:hover{
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    transition-property: box-shadow;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.photo-item__container{
    padding: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.photo-item__container:last-child {
    padding-bottom: 1.5rem;
}

.photo-item__image-container {
    aspect-ratio: 1 / 1;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
    background-color: #f9fafb;
}

.photo-item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}
.photo-item:hover .photo-item__image {
    transform: scale(1.03);
}

.photo-item__info{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.photo-item__name{
    margin-bottom: 0.5rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 600;
}

.photo-item__description{
    font-size: .875rem;
    line-height: 1.25rem;
}

.slider-nav {
    background: white;
    color: black;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    outline: none;
}
.slider-nav:hover {
    background: #f5f5f5;
    transform: scale(1.1);
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}
.slider-nav:active {
    background: #e0e0e0;
    transform: scale(0.95);
    box-shadow: 0 1px 5px rgba(0,0,0,0.2);
}
.slider-pagination {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 6px;
    align-items: center;
    height: 4px;
}
.pagination-dot {
    width: 4px;
    height: 4px;
    background: rgba(34, 34, 40, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}
.pagination-dot.active {
    width: 24px;
    height: 2px;
    background: rgba(34, 34, 40, 0.3);
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.photo-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}
.photo-modal__content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.photo-modal__close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.photo-modal__close:hover {
    color: #bbb;
    transform: scale(1.2);
}
.photo-modal__image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}
.photo-modal__caption {
    margin-top: 15px;
    color: white;
    text-align: center;
    font-size: 18px;
    max-width: 80%;
}
.photo-modal__nav {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 20px;
}
.photo-modal__prev, .photo-modal__next {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s;
}
.photo-modal__prev:hover, .photo-modal__next:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}
@media (max-width: 1200px) {
    .photo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 900px) {
    .photo-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .photo-modal__content {
        width: 95%;
    }
}
@media (max-width: 600px) {
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .photo-item__title {
        font-size: 13px;
    }

    .photo-modal__caption {
        font-size: 16px;
    }

    .photo-modal__prev, .photo-modal__next {
        width: 40px;
        height: 40px;
        font-size: 25px;
    }

    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}
@media (max-width: 400px) {
    .photo-grid {
        grid-template-columns: 1fr;
    }

    .photo-modal__content {
        padding: 10px;
    }

    .photo-modal__close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }

    .slider-nav {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}
.photo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.photo-modal img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}
.photo-modal__caption {
    color: white;
    margin-top: 20px;
    font-size: 1.2em;
}
.photo-modal__close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
.slide {
    display: none;
}
.slide.active {
    display: block;
}

