@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

/* WSI MONTREAL REDRESS 
   Colors: 
   Midnight Blue: #12264B
   Legacy Red: #C93936
   WSI Green: #016e31
*/

:root {
    --wsi-blue: #12264B;
    --wsi-red: #C93936;
    --wsi-green: #016e31;
    --wsi-grey: #58595B;
    --wsi-light-bg: #f4f7f9;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--wsi-light-bg);
    color: var(--wsi-blue);
    margin: 0;
}

/* 1. LOGO SECTION REDRESS */
/* Targets the div class="pb-[15vh] pt-[10vh] bg-slate-100" */
.bg-slate-100 {
    background-color: #ffffff !important; /* Force white background */
}

/* Ensure the image container looks clean */
.logo.text-center img {
    max-width: 180px !important; /* Slightly larger for visibility */
    height: auto;
}

/* 2. NAVIGATION / SMALL BUTTONS REDRESS */
/* Targets the <li> and <a> structures provided */
li.bg-black\/30 {
    background-color: var(--wsi-green) !important; /* Base Green */
    border-radius: 4px;
    margin-right: 4px !important;
    transition: background-color 0.3s ease;
}

li.bg-black\/30:hover {
    background-color: var(--wsi-blue) !important; /* Hover Blue */
}

li.bg-black\/30 a {
    color: #ffffff !important; /* Force White Text */
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 6px 15px !important;
    display: block;
    text-decoration: none;
}

/* 3. MAIN CREATE SECRET BUTTON REDRESS */
/* Standardizing the primary action button to WSI Blue */
button, 
.btn-primary, 
input[type="submit"],
button[type="submit"] {
    background-color: var(--wsi-blue) !important;
    color: #ffffff !important;
    border: none;
    padding: 14px 30px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 0px #0a162d; /* Darker blue shadow for depth */
}

button:hover, 
.btn-primary:hover, 
input[type="submit"]:hover {
    background-color: var(--wsi-green) !important; /* Hover Green */
    box-shadow: 0 4px 0px #004d22; /* Darker green shadow */
    transform: translateY(-1px);
}

/* 4. FORM AND CONTENT AREA */
.container, .max-w-4xl {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(18, 38, 75, 0.08);
}

h1, h2, h3 {
    color: var(--wsi-blue);
    font-weight: 800;
}

/* Inputs and Textareas */
input[type="text"], 
input[type="password"], 
textarea {
    border: 2px solid #e2e8f0 !important;
    border-radius: 6px !important;
    transition: border-color 0.2s ease;
}

input:focus, textarea:focus {
    border-color: var(--wsi-blue) !important;
    outline: none;
}

/* Footer elements */
footer, .text-white\/70 {
    color: var(--wsi-grey) !important;
}

/* Mobile Responsiveness for the Green Buttons */
@media (max-width: 640px) {
    li.bg-black\/30 {
        margin-bottom: 5px;
    }
}



/* --- Sleek WSI Branded Scrollbar --- */

/* Width and Height of the scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/* Track (The background of the scrollbar) */
::-webkit-scrollbar-track {
    background: #f1f1f1; 
    border-radius: 10px;
}

/* Thumb (The draggable part) */
::-webkit-scrollbar-thumb {
    background: var(--wsi-blue); /* #12264B */
    border-radius: 10px;
    border: 2px solid #f1f1f1; /* Creates a slight padding effect */
}

/* Thumb Hover state */
::-webkit-scrollbar-thumb:hover {
    background: var(--wsi-green); /* #016e31 */
}

/* Firefox Support */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--wsi-blue) #f1f1f1;
}