/*
 * Modern Dark Theme Food Review Stylesheet for Pandoc Markdown
 * Designed for readability and a clean aesthetic with purple accents.
 */

/* --- Base Styles (Dark Theme) --- */
body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #eee; /* Light grey for text on dark background */
    background-color: #181818; /* Dark background */
}

#body {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* More pronounced shadow for dark theme */
    border-radius: 8px;
}

.title {
    text-align: center;
}

/* --- Typography (Dark Theme with Purple Accents) --- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    color: #ddd; /* Slightly lighter for headings */
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    line-height: 1.2;
}

h1 {
    font-size: 2.7em; /* Slightly larger for more emphasis */
    border-bottom: 3px solid #a879ff; /* Purple accent line */
    padding-bottom: 0.4em;
    margin-bottom: 1.2em;
    color: #fff; /* White for main header */
}

h2 {
    font-size: 2.2em;
    color: #cbaeff; /* Lighter purple for sub-headers */
}

h3 {
    font-size: 1.7em;
    color: #b39ddb; /* Another shade of purple */
}

p {
    margin-bottom: 1em;
}

/* --- Links (Purple Accents) --- */
a {
    color: #a879ff; /* Purple for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #d4bfff; /* Lighter purple on hover */
    text-decoration: underline;
}

/* --- Images (Dark Theme) --- */
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5); /* More pronounced shadow for dark theme */
}

/* --- Horizontal Rule (Dark Theme) --- */
hr {
    border: 0;
    height: 1px;
    background: #444;
    margin: 40px 0;
}

/* --- Responsive Adjustments (Dark Theme) --- */
@media (max-width: 768px) {
    body {
        margin: 20px auto;
        padding: 15px;
    }

    h1 {
        font-size: 2.2em;
    }

    h2 {
        font-size: 1.9em;
    }

    h3 {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    body {
        margin: 10px auto;
        padding: 10px;
        box-shadow: none;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.7em;
    }
}

