/* Custom styles can be added here */
/* These will be loaded after Tailwind's base styles */

/* Custom animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

.bg-p-blue {
    background-color: #211F5D !important;
}
.bg-s-blue {
    background-color: #263772 !important;
}
.bg-d-orange {
    background-color: #610E06 !important;
}
.bg-l-orange {
    background-color: #D76E29 !important;
}
.bg-tan {
    background-color: #EEE5E9 !important;
}

.text-p-blue {
    color: #211F5D !important;
}
.text-s-blue {
    color: #263772 !important;
}
.text-d-orange {
    color: #610E06 !important;
}
.text-l-orange {
    color: #D76E29 !important;
}
.text-tan {
    color: #EEE5E9 !important;
}

/* Custom utility classes */
.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #263772;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 4rem;
    height: 0.25rem;
    background-color: #610E06;
    margin-top: 0.5rem;
}

/* Custom component styles */
.product-card {
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }
}
