/*
Theme Name: My Custom Theme
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Description: Custom WordPress theme for Digital Ocean deployment
Version: 1.0.0
License: GPL v2 or later
Text Domain: my-custom-theme
*/

:root {
    --primary-color: #0073aa;
    --secondary-color: #005a87;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --border-color: #e0e0e0;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    background: var(--primary-color);
    color: white;
    padding: 20px 0;
}

.site-main {
    padding: 40px 0;
    min-height: 500px;
}

.entry-title {
    font-size: 32px;
    margin-bottom: 20px;
}

.entry-content {
    line-height: 1.8;
}

.site-footer {
    background: var(--text-color);
    color: white;
    padding: 30px 0;
    text-align: center;
}