/* Styling Halaman Galeri */

.gallery-section {
    padding: 60px 0;
    text-align: center;
}

.gallery-title {
    font-size: 3em;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.gallery-subtitle {
    font-size: 1.2em;
    color: #666;
    margin-top: 0;
    margin-bottom: 40px;
}

.gallery-container {
    max-width: 1200px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.gallery-item-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-item-content {
    padding: 20px;
    text-align: left;
}

.gallery-item-content h3 {
    font-size: 1.25em;
    color: #333;
    margin: 0 0 10px;
    font-weight: 600;
}

.gallery-item-content p {
    font-size: 0.9em;
    color: #888;
    margin: 0 0 15px;
}

.read-more-btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: #E24B4B;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.read-more-btn:hover {
    background-color: #c93b3b;
}