@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Custom button animation */
.btn-hover-animation {
    transition: all 0.3s ease;
    transform: translateY(0);
}

.btn-hover-animation:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Gallery image hover effect */
.gallery-image {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Form input focus style */
.form-input:focus {
    box-shadow: 0 0 0 3px rgba(212, 180, 131, 0.3);
}

/* Section padding for responsive design */
.section-padding {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }
}