body {
    background-color: black;
    overflow-x: hidden;
}
.nav-link {
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.carousel-img {
    height: 80vh;
    width: 100vw;
    object-fit: cover;
}
.services-img {
    background-image: url("/static/img/IMG_4642.e6bb5d1d9164.jpg");
    height: 70vh;
    width: 100vw;
    background-size: cover; 
    background-repeat: no-repeat; 
    background-position: center left;
    background-attachment: fixed;
    z-index: -1;
}
.portfolio-img {
    background-image: url("/static/img/IMG_5209.a884e4430687.jpg");
    height: 70vh;
    width: 100vw;
    background-size: cover; 
    background-repeat: no-repeat; 
    background-position: center center;
    background-attachment: fixed;
    z-index: -1;
}
.page-text {
    color: white;
    z-index: 0;
}
.gradient-text {
    background: linear-gradient(
        45deg,
        #c79960, /* Ranges of gold */
        #f4c17d, 
        #987041, 
        #977f4c  
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.background-container {
    background-image: url("/static/img/david.bccba96d187b.jpg");
    height: 800px;
    background-size: cover;
    position: relative; 
    background-repeat: no-repeat; 
    background-position: center center;
    background-attachment: fixed;
}
.border-gold {
    border-color: #987041 !important;
}
.text-gold {
    color: #f4c17d !important;
}
.zoom-container {
    overflow: hidden;
    display: inline-block;
}
.zoom-container img {
    transition: transform 0.5s ease;
}
.zoom-container:hover img {
    transform: scale(1.2);
}
.img-card {
    height: 500px;
}
.img-longcard {
    height: 500px;
    width: 100%;
    object-fit: cover;
    object-position: center center;
}
@media (max-width: 767px) {
    .fixed-on-sm {
        display: inline-block;
    }
}
.image-container {
    position: relative;
    display: inline-block;
}

.image-container img {
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 0.375rem; /* To match the rounded class */
}
.image-container:hover .overlay {
    opacity: 1;
}
.text-ghn {
    text-align: left;
}
.nav-link:hover {
    color: #f4c17d;
}
.active {
    color: #f4c17d !important;
}

    


