/*
Theme Name: Simple Minimal Theme
Theme URI: https://personalityprompts.com
Description: A minimal, mobile-friendly WordPress theme with centered content
Version: 1.0
Author: Your Name
*/

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

body {
    font-family: Arial, sans-serif;
    color: #000;
    background: #fff;
    background-image: url('https://personalityprompts.com/entrepreneur_grid.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: repeat;
    line-height: 1.6;
    padding: 0;
    margin: 0;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    z-index: -1;
}

a {
    color: #0047ab;
    text-decoration: underline;
    font-weight: bold;
}

a:hover {
    color: #003380;
}

/* Site Wrapper - Creates one continuous white sheet */
.site-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Header */
.site-header {
    text-align: center;
    padding: 20px;
    background: #fff;
}

.site-logo {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Main Content */
.site-content {
    padding: 20px;
    background: #fff;
}

/* Page and Post Titles */
.entry-title {
    text-align: center;
    font-size: 2em;
    margin: 20px 0;
    color: #000;
}

.entry-title a {
    color: #000;
    text-decoration: none;
}

.entry-title a:hover {
    color: #0066cc;
}

/* Post Content */
.entry-content {
    margin: 20px 0;
    font-size: 1.1em;
}

.entry-content p {
    margin-bottom: 15px;
}

/* Post Meta */
.entry-meta {
    text-align: center;
    font-size: 0.9em;
    color: #666;
    margin-bottom: 20px;
}

/* Posts List */
article {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

article:last-child {
    border-bottom: none;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 20px;
    background: #fff;
    font-size: 0.9em;
    color: #666;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .site-logo {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .site-content {
        padding: 15px;
    }
    
    .entry-title {
        font-size: 1.5em;
    }
    
    .entry-content {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .site-header {
        padding: 15px 10px;
    }
    
    .entry-title {
        font-size: 1.3em;
    }
}
