/* NATURE THEME - LOSTINNATURE.IN */
:root {
    --bg: #fdfbf7;           /* Warm creamy white - matches global site */
    --accent-bg: #f5f5f0;    /* Slightly darker cream */
    --text: #2c3e50;         /* Dark slate for readability */
    --text-light: #586e75;   /* Muted text */
    --accent: #2e8b57;       /* SeaGreen - nature theme */
    --border: #d2e4d2;       /* Light green border */
    --code: #f0f0f0;
    --preformatted: #333;
}

body {
    background-color: var(--bg);
    color: var(--text);
    grid-template-columns: 1fr min(45rem, 90%) 1fr;
    font-family: 'Georgia', 'Times New Roman', serif;
    margin: 0;
}

nav {
    background-color: #2e8b57;
    color: white;
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav a:visited, nav a:active {
    color: white;
}

nav a:hover {
    text-decoration: underline;
    color: #e8f5e9;
}

header {
    background: linear-gradient(135deg, #1f5f3f 0%, #2e8b57 100%);
    color: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    margin-top: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

header h1 {
    margin-top: 0;
    color: white;
}

header p {
    color: #e8f5e9;
    font-size: 1.1rem;
    margin-bottom: 0;
    opacity: 0.95;
}

.badge {
    display: inline-block;
    background: #e8f5e9;
    color: #2e8b57;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rating-box, .score-box {
    background: #fff3cd;
    color: #856404;
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: bold;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.card {
    border: 1px solid var(--border);
    padding: 1rem;
    border-radius: 5px;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.card strong {
    display: block;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.image-button {
    display: inline-block;
    background: #2e8b57;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    font-weight: bold;
    transition: background 0.2s;
}

.image-button:visited, .image-button:active {
    color: white;
    text-decoration: none;
}

.image-button:hover {
    background: #247046;
    color: white;
}

footer {
    margin-top: 4rem;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    padding-bottom: 2rem;
}

blockquote {
    background: var(--accent-bg);
    border-left: 4px solid var(--accent);
    padding: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text);
}

a {
    color: #2e8b57;
}

a:visited {
    color: #1f5f3f;
}

a:hover {
    color: #247046;
}

p, li, td, th {
    color: var(--text);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text);
}
