body {
    background-color: #434c50;
    min-height: 100vh;
    font: normal 16px sans-serif;
    padding: 40px 0;
}

.container.gallery-container {
    background-color: #fff;
    color: #35373a;
    min-height: 100vh;
    padding: 30px 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.gallery-container h1 {
    text-align: center;
    margin-top: 50px;
    font-family: 'Droid Sans', sans-serif;
    font-weight: bold;
}

.gallery-container p.page-description {
    text-align: center;
    margin: 25px auto;
    font-size: 18px;
    color: #999;
}

.tz-gallery {
    padding: 20px 0;
}

/* Modern Gallery Layout */
.tz-gallery .lightbox {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.tz-gallery .lightbox img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    border: none;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Hover Overlay Text / Icon */
.tz-gallery .lightbox:after {
    content: '\e003';
    font-family: 'Glyphicons Halflings';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    color: #fff;
    font-size: 35px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.tz-gallery .lightbox:before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(220, 53, 69, 0.8), rgba(0, 0, 0, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.tz-gallery .lightbox:hover {
    box-shadow: 0 12px 25px rgba(220, 53, 69, 0.3);
    transform: translateY(-5px);
}

.tz-gallery .lightbox:hover img {
    transform: scale(1.1);
    opacity: 0.5;
}

.tz-gallery .lightbox:hover:before {
    opacity: 1;
}

.tz-gallery .lightbox:hover:after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    text-decoration: none;
}

.baguetteBox-button {
    background-color: transparent !important;
}

@media(max-width: 768px) {
    body {
        padding: 0;
    }
    .container.gallery-container {
        border-radius: 0;
    }
}