/*
Theme Name: Gary Lea Simple
Theme URI: 
Author: Your Name
Author URI: 
Description: A simple, clean personal website theme for Gary Lea
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gary-lea-simple
*/

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.site-header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.site-branding {
    text-align: center;
}

.site-title {
    margin: 0;
    font-size: 2em;
}

.site-description {
    margin: 5px 0 0;
    color: #666;
}

/* Navigation */
.main-navigation {
    margin-top: 20px;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.main-navigation a {
    text-decoration: none;
    color: #333;
}

/* Content */
.site-content {
    padding: 40px 0;
}

/* Footer */
.site-footer {
    background: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}
