/*
Theme Name: Photography3
Theme URI: https://example.com/photography3
Author: Your Name
Author URI: https://example.com
Description: A clean and modern photography theme for WordPress
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: photography1
Tags: photography, portfolio, clean, modern, responsive

*/

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

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

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

/* Header */
.site-header {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.site-title {
    font-size: 2em;
    font-weight: bold;
    text-align: center;
}

.site-title a {
    color: #333;
    text-decoration: none;
}

.site-description {
    text-align: center;
    color: #666;
    margin-top: 10px;
}

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

.main-navigation ul {
    list-style: none;
}

.main-navigation ul li {
    display: inline-block;
    margin: 0 15px;
}

.main-navigation ul li a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.main-navigation ul li a:hover {
    color: #0073aa;
}

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

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

.post-title {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.post-title a {
    color: #333;
    text-decoration: none;
}

.post-title a:hover {
    color: #0073aa;
}

.post-meta {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 20px;
}

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

.post-thumbnail img {
    max-width: 100%;
    height: auto;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .main-navigation ul li {
        display: block;
        margin: 10px 0;
    }
    
    .site-title {
        font-size: 1.5em;
    }
    
    .content-area {
        width: 100%;
    }
    
    .widget-area {
        width: 100%;
        margin-top: 40px;
    }
}

/* Navigation Toggle */
.menu-toggle {
    display: none;
    background: #333;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        margin: 20px auto;
    }
    
    .main-navigation ul {
        display: none;
    }
    
    .main-navigation.toggled ul {
        display: block;
    }
    
    .site-header.toggled {
        padding-bottom: 0;
    }
}

/* Sidebar Layout */
.content-area {
    float: left;
    width: 70%;
    padding-right: 30px;
}

.widget-area {
    float: right;
    width: 30%;
}

.widget {
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #eee;
}

.widget-title {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #333;
}

.widget ul {
    list-style: none;
    padding: 0;
}

.widget ul li {
    margin-bottom: 10px;
}

.widget ul li a {
    color: #666;
    text-decoration: none;
}

.widget ul li a:hover {
    color: #0073aa;
}

/* Footer Widgets */
.footer-widgets {
    display: flex;
    flex-wrap: wrap;
    margin: 40px 0;
    gap: 20px;
}

.footer-widget-area {
    flex: 1;
    min-width: 200px;
}

.footer-widget {
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.footer-widget .widget-title {
    color: #fff;
}

.footer-widget ul li a {
    color: #ccc;
}

.footer-widget ul li a:hover {
    color: #fff;
}

/* Page Header */
.page-header {
    background: #f5f5f5;
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.page-title {
    font-size: 2em;
    margin-bottom: 10px;
}

.archive-description {
    color: #666;
    font-style: italic;
}