/*
Theme Name: Photography6
Theme URI: https://example.com/photography1
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

*/

/* ==================== SCROLL ANIMATIONS ==================== */
/* Animation Base Classes */
[data-animate] {
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-fadeUp {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fadeIn {
    animation: fadeIn 0.8s ease-out;
}

.animate-slideLeft {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slideRight {
    animation: slideInRight 0.8s ease-out;
}

.animate-scaleIn {
    animation: scaleIn 0.8s ease-out;
}

/* Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Stagger animation delays */
[data-stagger-item] {
    transition-delay: 0s;
}

[data-stagger-item]:nth-child(1) { transition-delay: 0.1s; }
[data-stagger-item]:nth-child(2) { transition-delay: 0.2s; }
[data-stagger-item]:nth-child(3) { transition-delay: 0.3s; }
[data-stagger-item]:nth-child(4) { transition-delay: 0.4s; }
[data-stagger-item]:nth-child(5) { transition-delay: 0.5s; }
[data-stagger-item]:nth-child(6) { transition-delay: 0.6s; }

/* 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: #fafafa;
}

/* 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;
}