/* Color Palette: Inspired by the user's uploaded image */
:root {
    --color-primary-red: #D93633; /* The bold red stripe */
    --color-secondary-yellow: #F7D02C; /* The vibrant yellow stripe */
    --color-accent-green: #3DAA4F; /* The strong green stripe */
    --color-highlight-cyan: #33C4D9; /* The cyan/blue arc */
    --color-background-dark: #0A0A14; /* Deep, dark background */
    --color-text-light: #EEEEEE;
    --color-text-faded: #AAAAAA;
}

/* Global Styles & Font */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--color-background-dark);
    color: var(--color-text-light);
    line-height: 1.6;
    /* --- NEW CODE TO ADD BELOW THIS LINE --- */
    background-image: url('logo-colored.png'); 
    background-repeat: repeat;
    background-size: 500px auto; 
    background-attachment: fixed; 
    /* --- NEW CODE TO ADD ABOVE THIS LINE --- */
}

/* Make sure this separate code block is ALSO at the bottom of style.css */
main, header, footer {
    background-color: rgba(10, 10, 20, 0.95); /* A slightly transparent dark overlay */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5); /* Adds visual separation from the background */
}
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--color-background-dark);
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Header & Navigation */
header {
    background: var(--color-background-dark);
    border-bottom: 3px solid var(--color-primary-red);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-bar {
    text-align: center;
    margin-bottom: 10px;
}

h1 {
    h1 {
    h1 {
    font-family: 'Iceland', monospace; /* NEW: Applies the angular Nordic-style font */
    font-size: 3.8em; /* Slightly larger for visibility */
    color: var(--color-text-light); /* White color */
    letter-spacing: 10px; /* Wider spacing */
    margin: 0;
    /* NEW: BLACK SPECKLE/SPRAY PAINT EFFECT */
    text-shadow: 
        1px 1px 0 #000, 
        2px 2px 0 #000, 
        3px 3px 0 #000, /* Base shadow for definition */
        -1px -1px 0 rgba(0, 0, 0, 0.4), /* Upper-left speckle */
        5px 0px 0 rgba(0, 0, 0, 0.6), /* Right speckle */
        0px 5px 0 rgba(0, 0, 0, 0.5), /* Bottom speckle */
        -2px 5px 0 rgba(0, 0, 0, 0.4); /* Bottom-left speckle */
} /* A slight drop shadow */
}

/* Also, update the h2 font to match the body for contrast */
h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1em;
    color: var(--color-text-faded);
    margin: 5px 0 0 0;
    font-weight: 400;
    letter-spacing: 2px;
}
}

h2 {
    font-size: 1em;
    color: var(--color-text-faded);
    margin: 5px 0 0 0;
    font-weight: 400;
}

nav {
    text-align: center;
    padding: 10px 0;
}

nav a {
    color: var(--color-highlight-cyan);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

nav a:hover {
    background-color: var(--color-primary-red);
    color: var(--color-text-light);
}

/* Main Content Layout */
main {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

.guide-section {
    padding: 40px 0;
    border-bottom: 1px dashed var(--color-text-faded);
    margin-bottom: 20px;
}

.guide-section:last-child {
    border-bottom: none;
}

/* Section Titles - Using the Theme Stripes */
.section-title-red, .section-title-yellow, .section-title-green, .section-title-blue {
    font-size: 2em;
    font-weight: 700;
    padding: 10px 0;
    margin-bottom: 20px;
    border-left: 5px solid; /* The stripe effect */
    padding-left: 15px;
}

.section-title-red { border-color: var(--color-primary-red); color: var(--color-primary-red); }
.section-title-yellow { border-color: var(--color-secondary-yellow); color: var(--color-secondary-yellow); }
.section-title-green { border-color: var(--color-accent-green); color: var(--color-accent-green); }
.section-title-blue { border-color: var(--color-highlight-cyan); color: var(--color-highlight-cyan); }

/* Guide Cards for key information */
.guide-card {
    background-color: #1a1a25;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--color-highlight-cyan);
}

.guide-card h4 {
    color: var(--color-secondary-yellow);
    margin-top: 0;
    font-size: 1.3em;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 0;
    border-top: 3px solid var(--color-accent-green);
    color: var(--color-text-faded);
    font-size: 0.9em;
}

/* Responsive Design (for smaller screens) */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8em;
    }

    nav a {
        display: block;
        margin: 5px 10px;
    }

    .section-title-red, .section-title-yellow, .section-title-green, .section-title-blue {
        font-size: 1.5em;
    }
}/* Custom Adjustment to show background logo: Lowering the opacity of the content overlay */
main, header, footer {
    background-color: rgba(10, 10, 20, 0.8); /* SET TO 0.8 FOR VISIBILITY */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5); 
}