/* assets/css/gallery.css */
.gallery-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.gallery-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-header {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-header h2 {
    color: #BA0000;
    font-size: 2.2rem;
    font-weight: 700;
}

/* Card Gallery */
.gallery-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 350px; /* Tinggi seragam */
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

/* Overlay Teks */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.gallery-overlay h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.gallery-overlay span {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Navigasi */
.swiper-button-next, .swiper-button-prev {
    color: #BA0000 !important;
}

.btn-gallery-all {
    display: inline-block;
    margin-top: 40px;
    padding: 12px 35px;
    border: 2px solid #BA0000;
    color: #BA0000;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-gallery-all:hover {
    background: #BA0000;
    color: #fff;
}