body {
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
}

.gallery-section {
    padding: 30px 0;
}

.gallery-header {
    text-align: center;
    margin-bottom: 20px;
}

.gallery-header h2 {
    font-size: 28px;
    color: #333;
    font-weight: bold;
}

.btn-switch {
    display: inline-block;
    margin: 0 10px;
    padding: 10px 20px;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.btn-photo {
    background-color: #007bff;
}

.btn-video {
    background-color: #d40318;
}

.btn-photo:hover {
    background-color: #0056b3;
}

.btn-video:hover {
    background-color: #c82333;
}

.card {
    border: none;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.card:hover {
    transform: scale(1.03);
}

.card-title {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: center;
    padding: 5px 0;
}

.hidden {
    display: none;
}