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

body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

/* Navbar animation */
.custom-navbar {
    transition: all 0.3s ease;
}

.scrolled {
    background-color: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Section spacing */
section {
    scroll-margin-top: 80px;
}

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

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Custom button */
.btn-primary {
    background-color: #F59E0B;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #D97706;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 3rem;
    }
}