/*
Theme Name: PMJ Furniture
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: Minimal corporate theme for commercial reupholstery services. Elementor-ready.
Version: 1.0
License: GPL v2 or later
Text Domain: pmjfurniture
*/

/* === GLOBAL STYLES === */
body {
    margin: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.6;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
h1, h2, h3, h4 {
    font-weight: 300;
    color: #222;
}
a {
    text-decoration: none;
    color: #222;
}
.cta-button {
    display: inline-block;
    background: #222;
    color: #fff;
    padding: 14px 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    border-radius: 30px;
    transition: background 0.3s;
    margin-top: 20px;
}
.cta-button:hover {
    background: #444;
}

/* === HEADER === */
.site-header {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 0;
    margin: 0;
}
.main-navigation a {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}
.main-navigation a:hover {
    border-bottom: 1px solid #222;
}

/* === HERO (front-page) === */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    background: #fafafa;
}
.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero .subheadline {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #555;
}

/* === VALUE PROPOSITIONS (grid) === */
.value-props {
    padding: 80px 0;
}
.props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    text-align: center;
}
.prop-item {
    padding: 20px;
}
.prop-icon {
    font-size: 30px;
    color: #888;
    margin-bottom: 15px;
}
.prop-item h3 {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* === DEFAULT PAGE CONTENT (about, services, etc.) === */
.page-default {
    padding: 80px 0;
}
.page-default h1 {
    font-size: 36px;
    margin-bottom: 30px;
}
.page-default p {
    font-size: 16px;
    color: #555;
    max-width: 800px;
    margin-bottom: 20px;
}

/* Services list */
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}
.service-item h2 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Projects gallery */
.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.project-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    background: #e9e9e9;
}

/* Process steps */
.process-steps {
    list-style: none;
    counter-reset: step-counter;
    padding-left: 0;
    margin-top: 40px;
}
.process-steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 50px;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.5;
}
.process-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: -4px;
    width: 32px;
    height: 32px;
    border: 1px solid #222;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    font-weight: bold;
    font-size: 14px;
}

/* Contact page */
.contact-page a {
    color: #222;
    text-decoration: underline;
}

/* === FOOTER === */
.site-footer {
    background: #fafafa;
    border-top: 1px solid #eee;
    padding: 30px 0;
    font-size: 14px;
    color: #777;
}
.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.footer-info span {
    margin-right: 20px;
    display: inline-block;
}