/* Shared CSS Variables and Common Styles */
:root {
    --primary-green: #28A745;
    --secondary-teal: #20C997;
    --accent-terracotta: #D2691E;
    --neutral-cream: #F5F5DC;
    --neutral-charcoal: #36454F;
    --neutral-light: #FAFAFA;
}

/* Base Typography */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--neutral-charcoal);
    background-color: var(--neutral-light);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-green);
    font-weight: 600;
}

/* Navigation */
.navbar {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    color: var(--primary-green) !important;
    font-weight: 700;
    font-size: 1.5rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(40,167,69,0.75) 0%, rgba(32,201,151,0.75) 100%), url('../img/walk_in_the_park.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.hero-section h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-section .lead {
    font-size: 1.2rem;
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--accent-terracotta);
    border-color: var(--accent-terracotta);
    color: white;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #B8571B;
    border-color: #B8571B;
    transform: scale(1.05);
}

/* Contact Section */
.contact-section {
    background-color: white;
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

/* Footer */
footer {
    background-color: var(--neutral-charcoal);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* Category Badges */
.category-badge {
    display: inline-block;
    background-color: var(--secondary-teal);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Article Navigation */
.nav-articles a {
    text-decoration: none;
}

/* Content Section (for article pages) */
.content-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.08);
}

/* Article Meta */
.article-meta {
    color: #e9ecef;
    opacity: 0.9;
    margin-top: 0.5rem;
}
