.gallery-section {
    padding: 60px 0;
    background-color: #f5f0e6; 
}
.gallery-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #997131; 
    margin-bottom: 30px;
}
.gallery-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}
.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(153, 113, 49, 0.8); /* Semi-transparent brown overlay */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay-text {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
}
.btn-brown {
    background-color: #997131; 
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.btn-brown:hover {
    background-color: #7a5a28; 
}

.card-shadow {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.text-brown {
    color: #997131; /* Your preferred brown color */
}
.btn-brown {
    background-color: #997131; /* Your preferred brown color */
    color: white;
}
.btn-brown:hover {
    background-color: #7a5a28; /* Darker shade for hover */
}
.bg-brown-light {
    background-color: #f5f0e6; /* Light background to complement the brown */
}
.img-thumbnail {
    border: 2px solid #997131; /* Brown border for the image */
    border-radius: 10px; /* Rounded corners for the image */
}
.form-control:focus {
    border-color: #997131; /* Brown border for focused input fields */
    box-shadow: 0 0 0 0.2rem rgba(153, 113, 49, 0.25); /* Brown shadow for focus */
}