/*
Theme Name: Signal Hill NA
Theme URI: https://signalhillna.com
Author: Signal Hill Neighborhood Association
Author URI: https://signalhillna.com
Description: A custom WordPress theme for Signal Hill Neighborhood Association in Belleville, IL
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: signalhillna
*/

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* Header styles */
.site-header {
    background-color: #5a6b2a;
    color: white;
    padding: 0.5rem 0;
    box-shadow: none;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-logo {
    max-height: 80px;
    margin-right: 1rem;
}

.site-title {
    font-size: 1rem;
    margin: 0;
    font-weight: normal;
}

.site-title a {
    color: white;
    text-decoration: none;
}

.site-description {
    display: none;
}

/* Navigation */
.main-navigation {
    display: flex;
}

.main-navigation ul {
    display: flex;
    list-style: none;
}

.main-navigation li {
    margin-left: 1.5rem;
}

.main-navigation a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: #ffd700;
}

/* Main content */
.site-main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(180deg, #5a6b2a 0%, #7a8b4a 100%);
    padding: 3rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 0 2rem;
}

.hero-image {
    max-width: 200px;
    height: auto;
}

.hero-tagline {
    font-size: 2.5rem;
    font-style: italic;
    font-weight: 300;
    margin: 0;
}

/* Footer */
.site-footer {
    background-color: white;
    color: #333;
    padding: 1.5rem 0;
    border-top: 1px solid #e0e0e0;
}

.footer-widgets {
    display: none;
}

.widget {
    margin-bottom: 1.5rem;
}

.widget-title {
    color: #ffd700;
    margin-bottom: 1rem;
}

.site-info {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.footer-branding {
    color: #5a6b2a;
}

.footer-branding .highlight {
    color: #d4a017;
}

.theme-credit a {
    color: #5a6b2a;
    text-decoration: underline;
}

/* Content Area */
.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: white;
}

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

.entry-content {
    line-height: 1.8;
    font-size: 1rem;
}

.entry-content h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
}

/* Buttons */
.button {
    display: inline-block;
    background-color: #5a6b2a;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #4a5b1a;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }
    
    .site-branding {
        margin-bottom: 1rem;
    }
    
    .main-navigation ul {
        flex-direction: column;
    }
    
    .main-navigation li {
        margin: 0.5rem 0;
    }
    
    .hero-content {
        flex-direction: column;
        padding: 2rem 1rem;
    }
    
    .hero-tagline {
        font-size: 1.8rem;
    }
    
    .hero-image {
        max-width: 150px;
    }
    
    .content-wrapper {
        padding: 2rem 1rem;
    }
    
    .entry-title {
        font-size: 2rem;
    }
    
    .site-info {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Custom colors */
:root {
    --primary-color: #5a6b2a;
    --secondary-color: #d4a017;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --hero-gradient-start: #5a6b2a;
    --hero-gradient-end: #7a8b4a;
}
