/*
Theme Name: Stagehand
Description: Custom WordPress theme for Stagehand.pro
Author: Stagehand Team
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: stagehand
Requires at least: 5.0
Requires PHP: 7.4
*/

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

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

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

.site-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.site-title:hover {
    color: #666;
}

/* Navigation */
.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

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

.main-navigation a:hover {
    color: #666;
}

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

.menu-toggle:hover {
    background: #555;
}

/* Dropdown Menus */
.main-navigation ul ul {
    position: absolute;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: none;
    flex-direction: column;
    min-width: 200px;
    gap: 0;
}

.main-navigation ul ul a {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}

.main-navigation li:hover > ul,
.main-navigation li.focus > ul {
    display: flex;
}

/* Main Content */
.site-main {
    padding: 2rem 0;
    min-height: 60vh;
}

.post {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

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

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

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

.entry-content {
    line-height: 1.8;
}

.entry-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Footer */
.site-footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .main-navigation ul {
        display: none;
        flex-direction: column;
        gap: 0;
        width: 100%;
        background: #fff;
        border: 1px solid #eee;
        margin-top: 10px;
    }
    
    .main-navigation.toggled ul {
        display: flex;
    }
    
    .main-navigation a {
        padding: 15px;
        border-bottom: 1px solid #eee;
        display: block;
    }
    
    .main-navigation ul ul {
        position: static;
        box-shadow: none;
        border: none;
        background: #f9f9f9;
        margin-left: 20px;
    }
    
    .site-title {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
}