/*
Theme Name: Light Orange Theme
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: A simple WordPress theme with a light orange background and automatic page navigation
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: light-orange-theme
*/

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #FFE5CC;
    color: #333;
    line-height: 1.6;
}

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

.site-title {
    text-align: center;
    margin-bottom: 15px;
}

.site-title a {
    color: #333;  /* Changed from: white */
    text-decoration: none;
    font-size: 2em;
    font-weight: bold;
}

.site-title a:hover {
    color: #FF6633;  /* Changed from: #FFF3E6 */
}

/* Navigation Menu */
.main-navigation {
    text-align: center;
}

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

.main-navigation li {
    margin: 0;
}

.main-navigation a {
    display: block;
    padding: 10px 20px;
    color: #333;  /* Changed from: white */
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.9);  /* Changed from: rgba(255, 255, 255, 0.1) */
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.main-navigation a:hover,
.main-navigation .current_page_item a {
    background-color: white;  /* Changed from: rgba(255, 255, 255, 0.3) */
    color: #FF6633;  /* Added this line - didn't exist before */
}

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

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

.content-area {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

/* Post/Page Styles */
.entry-header {
    margin-bottom: 20px;
}

.entry-title {
    color: #FF6633;
    margin-bottom: 10px;
}

.entry-content {
    margin-bottom: 20px;
}

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

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Footer */
.site-footer {
    background-color: #FF9966;
    color: #333;  /* Changed from: white */
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

.site-footer a {
    color: #333;  /* Changed from: white */
    text-decoration: underline;
}

.site-footer a:hover {
    color: #FF6633;  /* Added this line - didn't exist before */
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-navigation ul {
        flex-direction: column;
        align-items: center;
    }
    
    .main-navigation a {
        width: 200px;
    }
    
    .site-title a {
        font-size: 1.5em;
    }
}
