
@import url("./_core.css");
:root {
    --background-body: #1373A9;
    --content-background-color: #fff;
    --font-family: Verdana, Arial, Helvetica, sans-serif;
    --header-color: #00486B; 
    --text-main: #333; 
    --text-secondary: #333; 
    --primary-color: #FFD966; 
    --secondary-color: #ffffff; 
    --secondary-color-light: #fffbe8;
    --border: #00486B;
}



/*
  Contains Styles for the following elements:
  1. Image
  2. Button
  3. headers 
  4. body
  5. Address
  */

html {
    scrollbar-color: var(--scrollbar-thumb) var(--background-body);
    scrollbar-width: thin;
    line-height: 1.5;
    font-size: 16px; 
}

body {
    background: #1373A9;
    color: var(--text-secondary);
}

.page_content {
    max-width: 80vw;
    margin: 2em auto;
    padding: 2em;
    font-family: var(--font-family);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background-image: linear-gradient( 90deg, #fff 12px, 0, #00486B 15px, 0, #1373A9 20px, 0, #fff 100% ), radial-gradient( circle closest-side, rgba(255,255,255,0) 88%, #fff 100% ), radial-gradient( circle at 22px 8px, #1373A9 40%, #00486B 40%, #00486B 100% );
    background-size: 32px 8px, 32px 16px, 32px 16px;
    background-repeat: space no-repeat;
    background-position: center top, center 6px, center 6px;
}


h1 {
    margin-top: 0;
    font-size: 2.2em;
}

h1,
h2,
h3,
h4,
h5,
h6, legend {
    margin-bottom: 12px;
    margin-top: 24px;
    color: var(--header-color); /* Bold red */ /* Comic-style outline */
    text-transform: uppercase;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}


footer p {
    font-family: var(--font-family);
    margin: 0.5em 0;
    font-size: 0.95em;
    opacity: 0.7;
    text-align: center;
}


button {
    background-color: var(--primary-color);
    font-family: inherit;
    border: 2px solid var(--border);
    border-radius: 8px; /* slightly rounded */
    padding: 10px 20px;
    font-weight: bold;
    box-shadow: 2px 2px 0 var(--border)v; /* thick shadow for comic effect */
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    cursor: pointer;
}

    button:hover {
        transform: translate(-2px, -2px);
        box-shadow: 4px 4px 0 var(--border);
    }


img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 2em auto;
    border-radius: 8px;
}

/* Wrap images in figure for captions */
figure {
    margin: 2em 0;
    text-align: center;
}

figcaption {
    font-size: 0.9em;
    color: var(--text-secondary);
    margin-top: 0.5em;
    font-style: italic;
    opacity: 0.85;
}



/* Style for the header and navigation */
header {
    max-width: 80vh;
    margin: 1em auto;
    font-family: var(--font-family);
    text-align: center;
    /* Style for navigation container */
    
nav ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center; /* Center the menu */
    gap: 1.5em; /* Space between menu items */
}

nav ul li::before {
    content: none;
    padding-right: 0.5em;
}

nav ul li {
    background-color: var(--secondary-color);
    font-family: inherit;
    border: 2px solid var(--border);
    border-radius: 8px; /* slightly rounded */
    padding: 10px 20px;
    font-weight: bold;
    box-shadow: 2px 2px 0 var(--border); /* thick shadow for comic effect */
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    cursor: pointer;
}

    nav ul li a {
        color: var(--header-color);
        text-decoration: none;
        border-bottom: none;
    }

     nav ul li a:hover {
            text-decoration: none;
            color: var(--header-color);
            border-bottom: 2px dashed var(--header-color);
     }

}

address {
    
    margin-bottom: 2em;
    font-style: normal;
    font-family: var(--font-family);
}

address a {
        display: inline-block;
        font-weight: bold;
        text-decoration: none;
        color: #00486B;
        margin: 0.3em 0;
        transition: color 0.2s ease, border-color 0.2s ease;
        border-bottom: none;
}

address a:hover {
            color: #ff6f61;
            border-color: #ff6f61;
            border-bottom: none;
}
pre {
    background-color: var(--secondary-color-light);
    padding: 1em 1.5em;
    overflow-x: auto;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: 'Courier New', Courier, monospace;
    color: var(--text-main);
    line-height: 1.6;
    margin: 1.5em 0;
}

pre code {
    background: none;
    padding: 0;
    color: inherit;
    font-size: 0.95em;
}

code {
    background-color: var(--secondary-color-light);
    padding: 0.2em 0.4em;
    border-radius: 4px;
    font-family: inherit;
    color: var(--text-main);
}

kbd {
    background-color: var(--secondary-color-light);
    color: var(--text-main);
    padding: 4px 6px;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-family: monospace;
    font-size: 0.85em;
}
:root {
    --primary-color: #FFD966; /* bright sticker yellow */
    --secondary-color: #ffffff; /* light paper-like background */
    --header-color: #3a4a57; /* heading text */
    --text-main: #333; /* normal text */
}

button,
select,
input[type='submit'],
input[type='reset'],
input[type='button'],
input[type='checkbox'],
input[type='range'],
input[type='radio'] {
    cursor: pointer;
}

input,
select {
    display: block;
}

/* aligns checkbox and radio in same line with the label */
[type='checkbox'],
[type='radio'] {
    display: initial;
}

input[type="submit"]:hover,
input[type="reset"]:hover {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--border);
}

input[type="submit"],
input[type="reset"] {
    background-color: #FFD966;
    font-family: inherit;
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 10px 20px;
    box-shadow: 2px 2px 0 var(--border);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    cursor: pointer;
    display: initial;
}

input,
textarea,
select {
    color: var(--text-main);
    background-color: #fffbe8;
    font-family: inherit;
    font-size: inherit;
    margin-right: 6px;
    margin-bottom: 6px;
    padding: 10px 15px;
    border: none;
    border-radius: 6px;
    outline: none;
    resize: vertical;
    box-sizing: border-box;
    box-shadow: inset 1px 1px 3px rgba(0,0,0,0.05);
}

    input:-webkit-autofill {
        -webkit-box-shadow: 0 0 0 1000px var(--secondary-color) inset !important;
        -webkit-text-fill-color: var(--text-main) !important;
    }

textarea {
    width: 100%;
    min-height: 200px;
}

fieldset {
    border: 3px dashed var(--header-color);
    border-radius: 12px;
    padding: 1.5em;
    margin: 1.5em 0;
    font-family: inherit;
}

legend {
    padding: 0 0.5em;
    font-weight: bold;
    border: 2px solid #2a2a2a;
    border-radius: 8px;
    font-family: inherit;
}

label {
    margin-bottom: 0.5em;
    display: block;
}
ul {
    list-style: none;
    padding-left: 1.2em;
}

ul li::before {
    content: "✏️";
    padding-right: 0.5em;
}

details {
    background-color: var(--secondary-color-light);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 1em;
    margin: 1.5em 0;
    font-family: inherit;
    color: var(--text-main);
}

summary {
    font-weight: bold;
    color: var(--header-color);
    cursor: pointer;
    outline: none;
    list-style: none;
    position: relative;
    padding-left: 1.2em;
}

summary::before {
    content: "➤";
    position: absolute;
    left: 0;
    transform: rotate(0deg);
    transition: transform 0.2s ease;
}

details[open] summary::before {
    transform: rotate(90deg); /* point down when open */
}
table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--secondary-color);
    font-family: var(--font-family);
    color: var(--text-main);
    margin-bottom: 2em;
    border: 2px solid var(--border); /* bold comic-like outer border */
    table-layout: fixed;
    overflow-x: auto;
}

th,
td {
    padding: 0.75em 1em;
    border: 1px solid var(--border); /* comic-style grid lines */
    max-width: 250px;
    padding: 6px;
    text-align: left;
    vertical-align: top;
    word-wrap: break-word;
}

th {
    background-color: var(--primary-color);
    color: var(--header-color);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

tr:hover {
    background-color: var(--secondary-color-light);
}
a[href^='mailto\:']::before {
    content: '📧 ';
}

a[href^='tel\:']::before {
    content: '📞 ';
}

a[href^='sms\:']::before {
    content: '💬 ';
}


strong, b {
    font-weight: bold;
    color: var(--header-color); /* tie bold to your header tone */
}

em, i {
    color: var(--text-main);
    font-style: italic;
}

a {
    color: #4cafff; /* comic-style blue */
    text-decoration: none;
    border-bottom: 2px dashed #4cafff;
    font-weight: bold;
    transition: color 0.2s ease, border-color 0.2s ease;
}

a:hover {
    color: #ff6f61; /* soft comic red on hover */
    border-bottom: 2px dashed #ff6f61;
}

mark {
    background-color: var(--primary-color);
    color: var(--text-main);
    padding: 0 4px;
    border-radius: 2px;
}

small {
    font-size: 0.85em;
    color: var(--text-secondary);
    opacity: 0.8;
}
