/* General body font */
body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
}

/* Navbar styles */
.navbar {
    --bs-navbar-padding-y: 0.2rem;
}

.nav-link {
    position: relative;
    font-size: 1.25rem;
    color: #211e1e !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #5e1a1a;
    transform: scaleX(0);
    transition: transform 0.13s ease-in-out;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

/* Logo */
.logo img {
    height: 55px;
    width: auto;
}

/* Social icons */
.social-link {
    color: #2a2828;
    font-size: 1.6rem;
    padding: 0.15rem;
    transition: color 0.2s ease;
}

.social-link:hover {
    color: #946a08;
}

/* Gallery */
.gallery-item .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.gallery-item img {
    object-fit: cover;
    height: 250px;
    width: 100%;
}

/* Modal */
.modal-xl {
    max-width: 90%;
}

#modalImage {
    max-height: 80vh;
}

/* Modal navigation */
.modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #333;
    z-index: 10;
    transition: all 0.2s ease;
}

.modal-nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.modal-nav-prev {
    left: 10px;
}

.modal-nav-next {
    right: 10px;
}

/* Image indicators */
.image-indicators {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
}

.image-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
}

.image-indicator.active {
    background-color: #b49a6f;
}

/* Filter buttons */
.btn-outline-dark.active {
    background-color: #b49a6f;
    border-color: #652624;
    color: white;
}

@media (max-width: 991.98px) {
    .navbar-social {
        display: none;
    }
}
