/* ============================================
   NEO BRUTALISM
   Bold borders, raw typography, bright flat colors,
   no rounded corners, offset box shadows
   ============================================ */

:root {
    --font-primary: 'Inter', 'Arial Black', sans-serif;
    --font-secondary: 'Space Grotesk', 'Impact', sans-serif;
    --color-bg: #f0e6d3;
    --color-text: #1a1a1a;
    --color-primary: #ff5733;
    --color-secondary: #3385ff;
    --color-accent: #ffe600;
    --color-surface: #ffffff;
    --color-border: #1a1a1a;
    --color-muted: #4a4a4a;
    --border-width: 3px;
    --border-radius: 0;
    --shadow: 5px 5px 0px #1a1a1a;
}

/* Hero */
.hero {
    background: var(--color-accent);
    border-bottom: 4px solid #1a1a1a;
}

.hero__greeting {
    color: #1a1a1a;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero__name {
    font-size: clamp(3rem, 10vw, 7rem);
    text-transform: uppercase;
    letter-spacing: -0.05em;
    color: #1a1a1a;
    line-height: 0.9;
}

.hero__tagline {
    color: var(--color-primary);
    font-weight: 900;
    text-transform: uppercase;
    border: 3px solid #1a1a1a;
    display: inline-block;
    padding: 0.25rem 1rem;
    background: white;
    box-shadow: 3px 3px 0 #1a1a1a;
}

.hero__intro {
    color: #1a1a1a;
    font-weight: 600;
}

/* Navigation */
.main-nav {
    background: var(--color-secondary);
    border-bottom: 4px solid #1a1a1a;
}

.main-nav__link {
    color: white;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.main-nav__link:hover {
    color: var(--color-accent);
}

/* Section titles */
.section__title {
    text-transform: uppercase;
    letter-spacing: -0.02em;
    font-weight: 900;
    border-bottom: 4px solid #1a1a1a;
    display: inline-block;
    padding-bottom: var(--space-xs);
}

/* Cards */
.skill-card,
.project-card,
.message-item,
.contact__card,
.message-form {
    border: 3px solid #1a1a1a;
    box-shadow: 5px 5px 0 #1a1a1a;
    border-radius: 0;
}

.skill-card:hover,
.project-card:hover,
.contact__card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0 #1a1a1a;
}

/* Alternate card backgrounds */
.skill-card:nth-child(odd) { background: var(--color-accent); }
.skill-card:nth-child(even) { background: #b8f0ff; }
.skill-card:nth-child(3n) { background: #ff9999; }

.project-card__placeholder {
    background: var(--color-primary);
    color: rgba(255,255,255,0.5);
    font-size: 5rem;
}

/* Tags */
.tag {
    background: #1a1a1a;
    color: white;
    border: 2px solid #1a1a1a;
    border-radius: 0;
    font-weight: 900;
    text-transform: uppercase;
}

/* Buttons */
.btn--primary {
    background: var(--color-primary);
    border: 3px solid #1a1a1a;
    box-shadow: 3px 3px 0 #1a1a1a;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0.05em;
    border-radius: 0;
    color: white;
}

.btn--primary:hover {
    transform: translate(-1px, -1px);
    box-shadow: 4px 4px 0 #1a1a1a;
    opacity: 1;
}

.btn--secondary {
    background: white;
    border: 3px solid #1a1a1a;
    box-shadow: 3px 3px 0 #1a1a1a;
    text-transform: uppercase;
    font-weight: 900;
    border-radius: 0;
    color: #1a1a1a;
}

.btn--secondary:hover {
    background: var(--color-accent);
    transform: translate(-1px, -1px);
    box-shadow: 4px 4px 0 #1a1a1a;
    color: #1a1a1a;
}

/* Timeline */
.timeline::before {
    width: 4px;
    background: #1a1a1a;
}

.timeline__marker {
    background: var(--color-primary);
    border: 3px solid #1a1a1a;
    box-shadow: none;
    border-radius: 0;
    width: 16px;
    height: 16px;
}

.timeline__date {
    background: var(--color-accent);
    padding: 2px 8px;
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
    font-weight: 900;
}

/* About photo */
.about__photo-placeholder {
    border: 3px solid #1a1a1a;
    box-shadow: 5px 5px 0 #1a1a1a;
    border-radius: 0;
    background: var(--color-primary);
}

/* Contact */
.contact__card {
    background: white;
}

.contact__card:nth-child(1) { background: #b8f0ff; }
.contact__card:nth-child(2) { background: var(--color-accent); }
.contact__card:nth-child(3) { background: #ff9999; }

/* Form elements */
.message-form__input,
.message-form__textarea {
    border: 3px solid #1a1a1a;
    border-radius: 0;
    background: white;
}

.message-form__input:focus,
.message-form__textarea:focus {
    box-shadow: 3px 3px 0 #1a1a1a;
    border-color: var(--color-primary);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    border-top: 4px solid var(--color-primary);
}

.footer__text,
.footer__style-info {
    color: #ccc;
}

.footer__admin-link {
    color: #666;
}

/* Theme switcher styling */
.theme-switcher__toggle {
    border: 3px solid #1a1a1a;
    box-shadow: 3px 3px 0 #1a1a1a;
    border-radius: 0;
    background: var(--color-accent);
    color: #1a1a1a;
    font-weight: 900;
}

.theme-switcher__panel {
    border: 3px solid #1a1a1a;
    box-shadow: 5px 5px 0 #1a1a1a;
    border-radius: 0;
    background: white;
}

.theme-switcher__btn {
    border: 2px solid #1a1a1a;
    border-radius: 0;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.7rem;
}

.theme-switcher__btn:hover,
.theme-switcher__btn.is-active {
    background: var(--color-primary);
    border-color: #1a1a1a;
}

/* Skill bar colors */
.skill-card__level {
    background: rgba(0,0,0,0.1);
    border: 2px solid #1a1a1a;
    border-radius: 0;
    height: 8px;
}

.skill-card__bar {
    background: #1a1a1a;
    border-radius: 0;
}
