/* Break Free - Anti-Corporate Site Colors & Typography */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Raleway:wght@400;500;600&display=swap');

/* Color Variables */
:root {
    --lime: #9EF01A;
    --electric-blue: #00E5FF;
    --mystic-violet: #9D4EDD;
    --charcoal: #222222;
    --white: #FFFFFF;
    --muted-bg: #ddf5f8;
    --error-red: #FF4D6D;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    font-size: 1em;
    color: var(--charcoal);
    background-color: var(--white);
    line-height: 1.6;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

h1 {
    font-size: 2.5em;
    color: var(--mystic-violet);
    margin-bottom: 20px;
}

h2 {
    font-size: 1.8em;
    color: var(--mystic-violet);
    margin-bottom: 15px;
}

h3 {
    font-size: 1.3em;
    color: var(--electric-blue);
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
}

/* Header */
header {
    background: linear-gradient(135deg, var(--electric-blue), var(--mystic-violet));
    color: var(--white);
    padding: 40px 20px;
    text-align: center;
}

header h1 {
    color: var(--white);
    text-shadow: 0 0 20px rgba(158,240,26,0.6);
}

/* Navigation */
nav {
    background-color: var(--charcoal);
    padding: 15px 0;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

nav li {
    display: inline;
}

nav a {
    color: var(--lime);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

nav a:hover {
    color: var(--electric-blue);
    text-shadow: 0 0 10px rgba(0,229,255,0.5);
}

/* Main Content */
article {
    max-width: 1200px;
    margin: 30px auto;
    padding: 30px;
    background-color: var(--muted-bg);
    border-radius: 8px;
}

/* Figure & Images */
figure {
    margin: 20px 0;
    text-align: center;
    padding: 20px;
    background-color: var(--white);
    border-radius: 8px;
    border: 2px solid var(--mystic-violet);
}

figcaption {
    margin-top: 15px;
    font-style: italic;
    color: var(--mystic-violet);
    font-weight: 500;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Lists */
ul, ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 10px;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: var(--white);
}

th, td {
    padding: 15px;
    text-align: left;
    border: 1px solid var(--mystic-violet);
}

th {
    background: linear-gradient(135deg, var(--electric-blue), var(--mystic-violet));
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

tr:nth-child(even) {
    background-color: var(--muted-bg);
}

/* Footer */
footer {
    background-color: var(--charcoal);
    color: var(--lime);
    text-align: center;
    padding: 30px 20px;
    margin-top: 50px;
}

footer a {
    color: var(--electric-blue);
    text-decoration: none;
}

footer a:hover {
    color: var(--lime);
}

/* Multi-Column Layout */
.two-col {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 20px 0;
}

.two-col .col {
    flex: 1;
    min-width: 280px;
}

.three-col {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 20px 0;
}

.three-col .col {
    flex: 1;
    min-width: 220px;
    background-color: var(--white);
    border-radius: 8px;
    padding: 20px;
    border-top: 4px solid var(--mystic-violet);
}

/* Descendant Selectors */
article h2 {
    border-left: 5px solid var(--lime);
    padding-left: 15px;
    margin-top: 30px;
}

article h3 {
    margin-top: 20px;
}

article ul li {
    color: var(--charcoal);
    line-height: 1.8;
}

article ol li {
    color: var(--charcoal);
    line-height: 1.8;
}

article p strong {
    color: var(--mystic-violet);
}

footer a:hover {
    text-decoration: underline;
}

nav ul li a {
    padding: 8px 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Blockquote */
blockquote {
    border-left: 5px solid var(--electric-blue);
    background-color: var(--muted-bg);
    margin: 25px 0;
    padding: 20px 25px;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    font-size: 1.1em;
    color: var(--charcoal);
}

blockquote cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-size: 0.85em;
    color: var(--mystic-violet);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* Font Properties */
.stat-callout {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.2em;
    color: var(--error-red);
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
    padding: 20px;
}

.stat-callout span {
    display: block;
    font-size: 0.4em;
    font-weight: 400;
    color: var(--charcoal);
    letter-spacing: 0;
    font-family: 'Raleway', sans-serif;
    margin-top: 8px;
}

/* Danger Badge */
.badge-danger {
    display: inline-block;
    background-color: var(--error-red);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.7em;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 3px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    vertical-align: middle;
    margin-left: 6px;
}

.badge-ok {
    display: inline-block;
    background-color: #27ae60;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.7em;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 3px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    vertical-align: middle;
    margin-left: 6px;
}

/* Card */
.card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 5px solid var(--lime);
}

.card h3 {
    margin-top: 0;
}

/* Accent Elements */
.highlight {
    color: var(--lime);
    font-weight: 600;
}

.cta-button {
    background: linear-gradient(135deg, var(--lime), var(--electric-blue));
    color: var(--charcoal);
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(158,240,26,0.6);
}
