/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #CBA360;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b99929;
}
/* Gallery hover effect */
.gallery-item img {
    transition: transform 0.5s ease;
}

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

/* Lightbox styles */
.slide {
    display: none;
    text-align: center;
}

.slide img {
    max-width: 100%;
    max-height: 80vh;
    margin: 0 auto;
}

#lightbox {
    transition: opacity 0.3s ease;
}

#lightbox a {
    user-select: none;
    -webkit-user-select: none;
    text-decoration: none;
    cursor: pointer;
}
/* Instagram hover effect */
.instagram-item {
    position: relative;
    overflow: hidden;
}

.instagram-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.instagram-item:hover::before {
    opacity: 1;
}

.instagram-item::after {
    content: '\f16d';
    font-family: 'feather';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.instagram-item:hover::after {
    opacity: 1;
}

/* Form input focus */
input:focus, textarea:focus {
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

/* Mobile menu animation */
#mobile-menu {
    transition: all 0.3s ease;
}

/* Hero section text shadow */
#home h1, #home p {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Service card hover effect */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}