/*
Theme Name: Mulholland Theme
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: A minimal WordPress theme for plugin development
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mulholland-theme
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #fafafa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Header */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color 0.2s ease;
}

.logo:hover {
    color: #0066cc;
}

/* Navigation */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 32px;
    align-items: center;
    margin: 0;
}

.nav-menu a {
    color: #525252;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #0066cc;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0066cc;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Content */
main {
    flex: 1;
    padding: 60px 0;
}

main .site-container {
    max-width: 1200px;
}

main p {
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Footer */
.site-footer {
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
    padding: 32px 0;
    margin-top: auto;
}

.site-footer p {
    color: #737373;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
}

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

    .header-content {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .nav-menu {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        width: 100%;
    }
}
