/*
Theme Name: New Project Theme
Description: Simple WordPress theme with welcome message
Version: 1.0.0
Author: Developer
Text Domain: new-project-theme
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

/* Simple Box */
.simple-box {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem 0;
}

.simple-text {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 2rem;
    background: #fff;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
}

.welcome-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.welcome-message {
    font-size: 1.2rem;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .welcome-card {
        padding: 2rem;
    }

    .welcome-title {
        font-size: 2rem;
    }
}
