/* Custom Styles for SuccCaudexCare */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Unique card hover effects */
article {
    transition: all 0.3s ease;
}

article:hover {
    transform: translateY(-8px);
}

/* Custom gradient backgrounds */
.gradient-plant {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
}

/* Text selection color */
::selection {
    background-color: #10b981;
    color: white;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid #10b981;
    outline-offset: 2px;
}

/* Custom typography */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
}

/* Page transitions */
.page-content {
    opacity: 0;
    animation: fadeInUp 0.5s ease-out forwards;
}

/* Mobile menu animation */
#mobileMenu {
    transition: all 0.3s ease;
}

#mobileMenu.hidden {
    max-height: 0;
    overflow: hidden;
}

#mobileMenu:not(.hidden) {
    max-height: 500px;
}
