/* Styling based on Modakeke screenshot yyyyyyyyyyyyyyyyyyyyyyyyy */
.gallery-hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
    /* */
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.gallery-underline {
    width: 120px;
    height: 6px;
    background-color: #f37021;
    margin: 0 auto 2rem auto;
    border-radius: 3px;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 10" preserveAspectRatio="none"%3E%3Cpath d="M0,5 Q25,0 50,5 T100,5" fill="none" stroke="%23f37021" stroke-width="4" stroke-linecap="round"/%3E%3C/svg%3E');
    background-color: transparent;
    background-size: cover;
}

.gallery-lead {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.gallery-container {
    padding: 2rem 0 5rem 0;
}

.gallery-section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: left;
}

/* Swiper Styling */
.swiper-container {
    width: 100%;
    position: relative;
    padding: 0 40px;
    /* Space for arrows */
}

/* Linear transition for smooth continuous scrolling */
.swiper-wrapper {
    transition-timing-function: linear !important;
}

.swiper-slide {
    height: auto;
}

.gallery-img-wrapper {
    display: block;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-img-wrapper:hover img {
    transform: scale(1.05);
}

/* Custom Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.5rem;
    font-weight: bold;
}

.swiper-button-prev {
    left: 0;
}

.swiper-button-next {
    right: 0;
}