/* 
   HandyCraftStudio - Global Stylesheet
   Design System: Linen & Moss (The Tactile Minimalist)
   Tech Stack: Pure CSS3
*/

:root {
    /* Color Palette */
    --color-primary: #4A5D4E; /* Deep Moss Green */
    --color-secondary: #715a3e; /* Earthy Brown */
    --color-bg-light: #fbf9f4; /* Off-white / Linen */
    --color-bg-alt: #f0eee9; /* Soft Beige */
    --color-text-dark: #334537;
    --color-text-muted: rgba(51, 69, 55, 0.7);
    --color-white: #ffffff;
    
    /* Typography */
    --font-heading: 'Noto Serif', serif;
    --font-body: 'Manrope', sans-serif;
    
    /* Spacing & Borders */
    --radius: 8px;
    --container-max: 1200px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .font-serif {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Layout Components */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 5rem 0;
}

/* Navigation */
header {
    background: rgba(251, 249, 244, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--color-secondary);
    border-bottom: 2px solid var(--color-secondary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-text-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--color-primary);
    background: transparent;
    color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-bg-alt);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(74, 93, 78, 0.2);
    border-radius: var(--radius);
    background: var(--color-white);
    font-family: inherit;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(74, 93, 78, 0.1);
}

.upload-zone {
    border: 2px dashed rgba(74, 93, 78, 0.3);
    padding: 3rem;
    text-align: center;
    border-radius: var(--radius);
    background: var(--color-bg-alt);
    cursor: pointer;
    transition: var(--transition);
}

.upload-zone:hover {
    border-color: var(--color-primary);
    background: #ebe9e4;
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(74, 93, 78, 0.1);
    transition: var(--transition);
}

.pricing-card.featured {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Footer */
footer {
    background: var(--color-bg-alt);
    padding: 4rem 0 2rem;
    border-radius: 2rem 2rem 0 0;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Add mobile menu logic in JS if needed */
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
}
