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

/* Custom styles */
section {
    scroll-margin-top: 80px;
}

/* Hero section height adjustment */
@media (max-height: 700px) {
    .hero-section {
        height: auto;
        padding: 100px 0;
    }
}

/* Image hover effects */
.gallery-img {
    transition: transform 0.3s ease;
}

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

/* Form input focus styles */
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #d97706;
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.3);
}

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

::-webkit-scrollbar-track {
    background: #1e1e1e;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #b45309;
}