/* Custom styles to complement Tailwind CSS */
.form-input {
    border: 1px solid #e2e8f0;
    padding: 0.5rem;
    border-radius: 0.375rem;
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

/* Additional responsive adjustments */
@media (max-width: 640px) {
    .header-content {
        padding: 2rem 1rem;
    }
}

/* Animation for hover effects */
.hover-transform {
    transition: transform 0.2s ease-in-out;
}

.hover-transform:hover {
    transform: translateY(-2px);
}

/* Custom form styling */
input, textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Styles pour la navigation */
#mobile-menu {
    transition: all 0.3s ease-in-out;
}

#mobile-menu.hidden {
    display: none;
}

/* Ajustement du contenu principal pour la barre de navigation fixe */
body {
    margin: 0;
    padding: 0;
}

header {
    padding-top: 4rem;
}

.relative {
    position: relative;
}

@media (max-width: 768px) {
    #mobile-menu {
        background-color: white;
        border-bottom: 1px solid #e5e7eb;
    }
}
