/* Custom styles that extend Tailwind */
@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;
}

/* Hero section background */
section.relative.bg-black::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('http://static.photos/outdoor/1200x630/2');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: 0;
}

/* Form focus styles */
input:focus, textarea:focus, select:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.5);
}

/* Mobile menu animation */
.mobile-menu {
    transition: all 0.3s ease;
}

/* Service card hover effect */
.service-card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}