/* Custom Tailwind Configuration - Matching brand blue theme */
:root {
    --brand-primary: #3B82F6; /* Vibrant Blue */
    --brand-dark: #2563EB; /* Darker Blue */
    --background-dark: #172554; /* Dark Blue for background */
    --card-bg: #1E3A8A; /* Slightly lighter dark blue for cards */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-dark);
}

/* Nav Dropdown Hover Styles */
.nav-dropdown-link:hover {
    background-color: var(--brand-dark);
}

.section-hidden {
    display: none;
}

/* Contact Info Transition */
#contact-info {
    transition: all 0.3s ease-in-out;
    padding-top: 0;
    padding-bottom: 0;
    height: 0; /* Use height control in JS for smooth animation */
    overflow: hidden;
}

/* NEW: Image Fade Transition for Slideshow */
.modal-slide {
    display: none;
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
}
.modal-slide.active {
    display: block;
    opacity: 1;
}
/* NEW: Styles for badges */
.sale-tag {
    background-color: #EF4444; /* Red */
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}
.reduced-tag {
    background-color: #10B981; /* Green */
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}
