/* ===== Global Styles for hardings.us (recipes-style background) ===== */

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

/* CSS variables for easy theming */
:root {
    --bg-dark-1: #0d0d0d;
    --bg-dark-2: #1a1a1a;
    --accent: #00e0ff;
    --accent-2: #ff00ff;
    --text: #ffffff;
    --card-bg: rgba(0, 0, 0, 0.5);
    --glow: rgba(0, 224, 255, 0.25);
}

/* Global background + text (matches recipes vibe) */
html, body {
    height: 100%;
}
body {
    min-height: 100vh;
    background:
      radial-gradient(circle at 50% 18%, var(--glow) 0%, rgba(0,0,0,0) 45%),
      linear-gradient(135deg, var(--bg-dark-1) 0%, var(--bg-dark-2) 100%);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Links */
a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.25s ease;
}
a:hover, a:focus {
    color: var(--accent-2);
    outline: none;
}

/* Headings */
h1, h2, h3 {
    text-align: center;
    margin: 16px 0;
    color: var(--text);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.35);
}

/* Buttons (e.g., "Recipes") */
button, .btn, .button {
    background: #111;
    color: #fff;
    border: 2px solid var(--accent);
    padding: 12px 24px;
    margin: 20px auto;
    font-size: 1.1rem;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent) inset;
    transition: transform 0.15s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
    display: inline-block;
}
button:hover, .btn:hover, .button:hover {
    background: var(--accent);
    color: #111;
    box-shadow: 0 0 18px var(--accent), 0 0 36px var(--accent) inset;
    transform: translateY(-1px);
}

/* Content containers */
.container, .card, .panel {
    width: 100%;
    max-width: 960px;
    background: var(--card-bg);
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 224, 255, 0.22);
    margin-top: 24px;
}

/* Simple list styling (for recipe hubs) */
ul {
    list-style: none;
    margin-top: 12px;
    width: 100%;
}
ul li {
    padding: 10px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer spacing helper */
.footer-space {
    height: 40px;
}

/* Utility */
.center {
    text-align: center;
}
.hidden {
    display: none !important;
}

/* Responsive tweaks */
@media (max-width: 640px) {
    body {
        padding: 14px;
    }
    .container, .card, .panel {
        padding: 16px;
    }
    button, .btn, .button {
        width: 100%;
    }
}