/* Mysigt - Brutalist Cozy Styles */
/* The content is warm and cozy. The design is cold and brutal. */

/* Global Body Styling */
body {
    font-family: 'Courier New', Courier, monospace;
    line-height: 1.6;
    background-color: #0a0a0a;
    color: #e0e0e0;
}

/* Override the Brutalist Framework colors */
.warm-winter,
.cream,
.honey,
.cappuccino,
.latte,
.mocha {
    background-color: #0a0a0a !important;
}

.campfire {
    background-color: #1a0000 !important;
}

/* Text colors - brutal override */
.cream-t,
.cocoa-t,
.cinnamon-t,
.mocha-t {
    color: #e0e0e0 !important;
}

/* Accent colors */
.cinnamon-t,
h1, h2, h3, h4 {
    color: #ff2020 !important;
}

/* Warm Background Override - now brutal */
.warm-bg {
    background: #0a0a0a !important;
}

/* Navigation - brutal bar */
.sandbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #000 !important;
    border-bottom: 4px solid #ff2020 !important;
    box-shadow: none !important;
}

.sandbar a {
    text-decoration: none;
    transition: none !important;
    color: #fff !important;
}

.sandbar .btn {
    background: #000 !important;
    border: 2px solid #ff2020 !important;
    border-radius: 0 !important;
    color: #ff2020 !important;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.sandbar .btn:hover {
    background: #ff2020 !important;
    color: #000 !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Remove ALL rounded corners */
.rounded,
.pill,
* {
    border-radius: 0 !important;
}

/* Mys Cards - now brutal boxes */
.mys-card {
    width: 200px;
    transition: none !important;
    border: 3px solid #ff2020 !important;
    background: #111 !important;
}

.mys-card:hover {
    transform: none !important;
    box-shadow: 8px 8px 0 #ff2020 !important;
}

/* Box shadow utility - brutal offset shadow */
.box-s {
    box-shadow: 6px 6px 0 #ff2020 !important;
    border: 3px solid #ff2020 !important;
    background: #111 !important;
}

/* Cozy Quote Styling - brutal */
blockquote {
    font-style: normal;
    border-left: 8px solid #ff2020;
    border-right: 8px solid #ff2020;
    padding: 2rem;
    margin: 2rem 0;
    background: #111;
    text-transform: uppercase;
}

/* Section Spacing */
section {
    padding: 4rem 2rem;
    border-bottom: 2px solid #333;
}

/* List Styling - brutal */
ul {
    list-style-type: none;
    padding-left: 0;
}

ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #ff2020;
}

ul li:last-child {
    border-bottom: none;
}

ul li::before {
    content: "► ";
    color: #ff2020;
    font-weight: bold;
}

/* Recipe Cards - brutal */
.recept-card {
    background: #111 !important;
    border: 4px solid #ff2020 !important;
    transition: none !important;
}

.recept-card:hover {
    box-shadow: 10px 10px 0 #ff2020 !important;
}

/* Fika Section - brutal */
.fika-item {
    background: #111 !important;
    border: 3px solid #ff2020 !important;
    overflow: hidden;
    transition: none !important;
}

.fika-item:hover {
    transform: none !important;
    box-shadow: 8px 8px 0 #ff2020 !important;
}

/* Cozy Buttons - now brutal */
.mys-btn,
.nb-btn-big,
.nb-btn {
    background: #000 !important;
    color: #ff2020 !important;
    border: 4px solid #ff2020 !important;
    padding: 1rem 2rem;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: none !important;
}

.mys-btn:hover,
.nb-btn-big:hover,
.nb-btn:hover {
    background: #ff2020 !important;
    color: #000 !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Remove all animations */
@keyframes flicker {
    0%, 100% { opacity: 1; }
}

@keyframes steam {
    0%, 100% { opacity: 0; }
}

.candle,
.steam {
    animation: none !important;
}

/* Typography - brutal */
h1, h2, h3, h4 {
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 900;
}

p {
    max-width: 70ch;
    margin-left: auto;
    margin-right: auto;
}

/* Timeline - brutal */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #ff2020;
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-item::before {
    content: '■';
    position: absolute;
    left: -40px;
    font-size: 1.5rem;
    color: #ff2020;
}

/* Footer - brutal */
footer {
    background: #000 !important;
    border-top: 4px solid #ff2020 !important;
}

footer a {
    text-decoration: none;
    border-bottom: 2px solid #ff2020;
    color: #ff2020 !important;
    transition: none !important;
}

footer a:hover {
    background: #ff2020;
    color: #000 !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .flex.wrap > .third,
    .flex.wrap > .half {
        width: 100%;
        flex: 0 0 100%;
    }

    .sandbar .simple-nav {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .mys-card {
        width: 100%;
        max-width: 300px;
    }
}

/* Gap Utility */
.gap {
    gap: 2rem;
}

/* Center Block Utility */
.center-block {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* No Underline */
.no-underline {
    text-decoration: none !important;
}

/* Ingredient List - brutal */
.ingredienser li::before {
    content: "// ";
    color: #ff2020;
    font-family: monospace;
}

/* Instructions List - brutal */
.instruktioner li {
    counter-increment: step;
    padding-left: 3rem;
    position: relative;
}

.instruktioner li::before {
    content: "[" counter(step) "]";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #ff2020;
    font-family: monospace;
}

.instruktioner {
    counter-reset: step;
}

/* Comfort Classes - brutal spacing */
.comfortable {
    padding: 4rem 2rem;
}

/* Space Between */
.space-between {
    justify-content: space-between;
}

/* Middle Alignment */
.middle {
    align-items: center;
}

/* Override opacity class */
.opacity {
    opacity: 0.7;
}

/* Images - brutal treatment */
img {
    filter: grayscale(30%) contrast(1.1);
    border: 3px solid #ff2020 !important;
}

/* Links in content */
a {
    color: #ff2020;
    text-decoration: none;
    border-bottom: 2px solid transparent;
}

a:hover {
    border-bottom-color: #ff2020;
}

/* Brutal dividers */
.spacer {
    border-bottom: 1px solid #333;
    margin: 1.5rem 0;
}

/* Override padded sections */
.padded {
    padding: 1.5rem;
}

/* Force dark backgrounds on common elements */
div[class*="cream"],
div[class*="honey"],
div[class*="latte"],
section[class*="cream"],
section[class*="honey"] {
    background: #0a0a0a !important;
}

/* Ensure all text is readable on dark bg */
body, p, span, li, td, th {
    color: #d0d0d0;
}

/* Strong emphasis */
strong, b {
    color: #ff2020;
}

/* Form elements if any */
input, textarea, select {
    background: #111 !important;
    border: 2px solid #ff2020 !important;
    color: #e0e0e0 !important;
    padding: 0.75rem;
    font-family: 'Courier New', monospace;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    box-shadow: 4px 4px 0 #ff2020;
}
