/* Custom CSS for Gallery */

/* Top Bar */
.top-bar {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
}

.top-bar h1 {
    font-size: 24px;
    margin: 0;
    font-weight: 700;
}

.top-bar h1 span {
    font-weight: 400;
}

.top-bar p, .top-bar .top-bar-text p {
    margin: 0;
}

/* Nav Bar */
.nav-bar {
    background-color: #343a40;
}

.navbar-brand {
    font-size: 24px;
    font-weight: 600;
}

.navbar-nav .nav-item .nav-link {
    font-size: 18px;
}

.navbar-nav .nav-item .dropdown-menu .dropdown-item {
    font-size: 16px;
}

.btn-custom {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #fff;
    font-weight: 600;
    padding: 8px 20px;
}

.btn-custom:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

/* Gallery */
.gallery {
    padding: 80px 0;
}

.gallery h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

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

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.gallery-item .overlay p {
    font-size: 16px;
}

@media (max-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 16px;
    }
    .navbar-brand {
        font-size: 20px;
    }
    .btn-custom {
        padding: 6px 16px;
    }
}

@media (max-width: 768px) {
    .gallery h2 {
        font-size: 28px;
    }
    .navbar-brand {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .gallery h2 {
        font-size: 24px;
    }
    .navbar-brand {
        font-size: 16px;
    }
}
