/* Custom styles for quebec.localscale.org domain */

/* You can override any styles from the main style.css here */

/* Example customizations - modify as needed for Quebec branding */

/* Primary brand colors for Quebec theme */
:root {
    --quebec-primary: #003f7f;
    --quebec-secondary: #0066cc;
    --quebec-accent: #ffffff;
    --quebec-maple: #d32f2f;
    --quebec-nature: #2e7d32;
    --quebec-snow: #f5f5f5;
    --quebec-frost: #e3f2fd;
}

/* Quebec flag inspired styling */
.quebec-flag-accent {
    background: linear-gradient(90deg, var(--quebec-primary), var(--quebec-accent));
}

/* Header customizations */
.header {
    background: linear-gradient(135deg, var(--quebec-primary), var(--quebec-secondary));
}

/* Button customizations */
.btn-primary {
    background-color: var(--quebec-secondary);
    border-color: var(--quebec-secondary);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--quebec-primary);
    border-color: var(--quebec-primary);
}

/* Maple leaf accent button */
.btn-quebec-maple {
    background-color: var(--quebec-maple);
    border-color: var(--quebec-maple);
    color: white;
}

.btn-quebec-maple:hover {
    background-color: #b71c1c;
    border-color: #b71c1c;
    color: white;
}

/* Link colors */
a {
    color: var(--quebec-secondary);
}

a:hover {
    color: var(--quebec-primary);
}

/* Quebec cultural elements */
.quebec-section {
    background: linear-gradient(180deg, var(--quebec-frost), rgba(255, 255, 255, 0.9));
    border-radius: 8px;
    padding: 25px;
    margin: 20px 0;
    border-left: 4px solid var(--quebec-primary);
}

/* Winter/snow theme elements */
.quebec-winter {
    background: linear-gradient(145deg, var(--quebec-snow), var(--quebec-frost));
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 63, 127, 0.1);
}

/* French Canadian typography emphasis */
.quebec-text-primary {
    color: var(--quebec-primary);
    font-weight: 600;
}

.quebec-text-accent {
    color: var(--quebec-maple);
    font-style: italic;
}

/* Navigation styling for Quebec theme */
.quebec-nav {
    background: rgba(0, 63, 127, 0.95);
    backdrop-filter: blur(10px);
}

/* Card styling with Quebec theme */
.quebec-card {
    background: linear-gradient(145deg, #ffffff, var(--quebec-frost));
    border: 1px solid rgba(0, 63, 127, 0.1);
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 63, 127, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quebec-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 63, 127, 0.15);
}

/* Fleur-de-lis inspired decorative element */
.quebec-divider {
    border-top: 2px solid var(--quebec-primary);
    position: relative;
    margin: 30px 0;
}

.quebec-divider::after {
    content: "⚜";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: var(--quebec-primary);
    font-size: 20px;
    padding: 0 10px;
}

/* Language toggle styling */
.quebec-lang-toggle {
    background: var(--quebec-primary);
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.quebec-lang-toggle:hover {
    background: var(--quebec-secondary);
}

/* Add your custom styles below this line */
