* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

.gallery-section {
    background: #ffffff;
    padding: 80px 20px;
    height: 70vh;
}

.gallery-title {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    color: #550216;
    margin-bottom: 80px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-wrapper {
    display: flex;
    justify-content: center;
    gap: 260px;
}

.gallery-item {
    text-align: center;
}

.gallery-image {
    width: 240px;
    height: 200px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    clip-path: url(#archShape);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    opacity: 0.7;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-image:hover {
    filter: opacity(1);
    transform: translateY(-4px);
    opacity: 1;
}

.gallery-label {
    margin-top: 18px;
    font-size: 16px;
    font-weight: 600;
    color: #550216;
}