/* Custom styles */
html {
    scroll-behavior: smooth;
}

/* Fade-in animation for sections */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1f2937;
}

::-webkit-scrollbar-thumb {
    background: #4b5563;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6b7280;
}

/* Custom selection color */
::selection {
    background: #fbbf24;
    color: #1f2937;
}

/* Smooth transitions for interactive elements */
a, button {
    transition: all 0.3s ease;
}

/* Custom focus styles */
*:focus {
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
}

/* Custom styles for form elements */
input, textarea {
    background-color: #374151;
    border: 1px solid #4b5563;
    border-radius: 0.5rem;
    padding: 0.75rem;
    color: white;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
    border-color: #fbbf24;
}

/* Custom button styles */
.btn-primary {
    background-color: #fbbf24;
    color: #1f2937;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #f59e0b;
    transform: translateY(-2px);
}

/* Gallery image hover effects */
.gallery-item {
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

/* Custom container padding for mobile */
@media (max-width: 640px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
} 