/* --- Custom Color Definitions for Tailwind classes --- */
/* These map to the Tailwind classes used throughout the HTML */
:root {
    --color-brand-red: #E31B23; /* Primary Action Color */
    --color-brand-blue: #004d99; /* Primary Branding Color */
}

/* Define custom Tailwind classes not available by default */
/* You would typically use tailwind.config.js for this, but for simple CSS output: */
.text-brand-red { color: var(--color-brand-red); }
.text-brand-blue { color: var(--color-brand-blue); }
.bg-brand-red { background-color: var(--color-brand-red); }
.bg-brand-blue { background-color: var(--color-brand-blue); }

/* --- General Link/Button Styles --- */

/* Navigation Links */
.nav-link {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

/* Button Reset (Ensures consistent button styling across files) */
.btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    text-decoration: none; 
    white-space: nowrap;
    border: none;
}

/* Primary CTA Button Style */
.btn-red {
    background-color: var(--color-brand-red);
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-red:hover {
    background-color: #b3161c; /* Slightly darker red on hover */
    transform: translateY(-1px);
}

/* Secondary/Alternative Button Style */
.btn-primary {
    background-color: var(--color-brand-blue);
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #003366;
    transform: translateY(-1px);
}

/* Tertiary Button Style */
.btn-secondary {
    background-color: white;
    color: var(--color-brand-blue);
    border: 2px solid var(--color-brand-blue);
}

.btn-secondary:hover {
    background-color: var(--color-brand-blue);
    color: white;
}

/* Card Hover Effect */
.info-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Ensure the hero slide transition is smooth */
.hero-slide {
    transition: opacity 500ms ease-in-out;
}
/* --- Mobile Slider Ratio Adjustment --- */

@media (max-width: 640px) {
    /* Targets screens smaller than the Tailwind 'sm' breakpoint */
    #hero {
        /* Sets the height to 75% of the viewport height on mobile devices */
        height: 20vh !important; 
    }
}