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

:root {
    --wood-dark: #4a3728;
    --wood-medium: #8b6f47;
    --wood-light: #d4a574;
    --warm-white: #f5f1e8;
    --accent: #a85532;
    --text-dark: #2c2416;
    --text-medium: #5a4a3a;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--warm-white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Palatino', 'Palatino Linotype', 'Georgia', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--wood-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.service-tagline {
    font-size: 1.2rem;
    color: var(--accent);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.service-note {
    background-color: var(--warm-white);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--accent);
    margin-top: 2rem;
    font-size: 0.95rem;
}

.service-area-note {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-style: italic;
    margin-top: 1rem;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--wood-dark);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    background-color: var(--wood-dark);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--warm-white);
    letter-spacing: 0.5px;
}

.logo:hover {
    color: var(--wood-light);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--warm-white);
    font-size: 1.05rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--wood-light);
    border-bottom-color: var(--accent);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(74, 55, 40, 0.7), rgba(74, 55, 40, 0.7)),
                url('images/hero-background.jpg') center/cover;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--warm-white);
    padding: 4rem 2rem;
}

.hero-content h1 {
    color: var(--warm-white);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.subtitle {
    font-size: 1.5rem;
    color: var(--wood-light);
    margin-bottom: 2rem;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--accent);
    color: var(--warm-white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 4px;
    border: 2px solid var(--accent);
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    background-color: transparent;
    border-color: var(--warm-white);
    color: var(--warm-white);
}

.secondary-button {
    display: inline-block;
    background-color: transparent;
    color: var(--wood-dark);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 4px;
    border: 2px solid var(--wood-medium);
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background-color: var(--wood-dark);
    color: var(--warm-white);
}

.center-button {
    text-align: center;
    margin-top: 3rem;
}

/* Page Sections */
.intro, .featured-work, .philosophy, .cta-section, .services-preview, .philosophy-preview {
    padding: 5rem 0;
}

.intro {
    text-align: center;
    background-color: #fff;
}

.intro h2 {
    margin-bottom: 1.5rem;
}

.intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
}

/* Services Preview */
.services-preview {
    background-color: var(--warm-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.service-card h3 {
    color: var(--wood-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card p {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Philosophy Preview */
.philosophy-preview {
    background-color: #fff;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.philosophy-item {
    text-align: center;
}

.philosophy-item h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.philosophy-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Work Grid */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.work-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.work-item:hover {
    transform: translateY(-8px);
}

.work-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.work-item h3 {
    margin-top: 1rem;
    font-size: 1.3rem;
}

/* Large Work Grid with Overlays */
.work-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.work-item-large {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-item-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.work-item-large img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.work-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(74, 55, 40, 0.95), rgba(74, 55, 40, 0.7));
    padding: 2rem;
    color: var(--warm-white);
}

.work-overlay h3 {
    color: var(--warm-white);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.work-overlay p {
    color: var(--wood-light);
    font-size: 1rem;
    margin: 0;
}

/* Quote Section */
.quote-section {
    background-color: var(--wood-dark);
    color: var(--warm-white);
    text-align: center;
}

.quote-section blockquote {
    font-size: 1.75rem;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--wood-light);
}

/* Gallery Page */
.page-header {
    background-color: var(--wood-dark);
    color: var(--warm-white);
    text-align: center;
    padding: 4rem 2rem;
}

.page-header h1 {
    color: var(--warm-white);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    color: var(--wood-light);
}

.gallery-projects {
    padding: 3rem 0 5rem;
    background-color: #fff;
}

.project-section {
    margin-bottom: 6rem;
    padding-bottom: 4rem;
    border-bottom: 2px solid #e8e1d5;
}

.project-section:last-child {
    border-bottom: none;
}

.project-title {
    font-size: 2rem;
    color: var(--wood-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.project-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-item {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.project-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.project-item.large img {
    height: 450px;
}

.photo-caption {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
    font-style: italic;
    background-color: var(--warm-white);
}

.work-description {
    font-size: 0.95rem;
    color: var(--text-medium);
    padding: 0 0.5rem;
}

/* About Page */
.about-content, .philosophy-content {
    padding: 5rem 0;
    background-color: #fff;
}

.about-text, .philosophy-block {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.about-text h2, .philosophy-block h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.about-text h3, .philosophy-block h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--wood-medium);
    font-size: 1.2rem;
}

.about-text p, .philosophy-block p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text ul, .philosophy-block ul {
    margin: 1rem 0 1.5rem 2rem;
}

.about-text li, .philosophy-block li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.philosophy-block:first-child h2 {
    margin-top: 0;
}

.workshop-image {
    text-align: center;
    margin-top: 4rem;
}

.workshop-image img {
    width: 100%;
    max-width: 900px;
    border-radius: 4px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.caption {
    margin-top: 1rem;
    font-style: italic;
    color: var(--text-medium);
}

/* Services Page */
.services-content {
    padding: 5rem 0;
    background-color: #fff;
}

.service-block {
    max-width: 900px;
    margin: 0 auto 5rem;
    padding-bottom: 4rem;
    border-bottom: 2px solid #e8e1d5;
}

.service-block:last-of-type {
    border-bottom: none;
}

.service-block h2 {
    margin-bottom: 0.5rem;
    font-size: 2.25rem;
}

.service-block h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--wood-medium);
    font-size: 1.3rem;
}

.service-block p, .service-block ul, .service-block ol {
    font-size: 1.1rem;
    line-height: 1.8;
}

.service-block ul, .service-block ol {
    margin: 1rem 0 1.5rem 2rem;
}

.service-block li {
    margin-bottom: 0.75rem;
    color: var(--text-medium);
}

.service-block strong {
    color: var(--wood-dark);
}

.process-overview {
    max-width: 900px;
    margin: 5rem auto 0;
    padding: 3rem;
    background-color: var(--warm-white);
    border-radius: 4px;
}

.process-overview h2 {
    margin-bottom: 2.5rem;
    text-align: center;
}

.process-overview h3 {
    color: var(--accent);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.process-overview p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.process-overview li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

/* Contact Page */
.contact-content {
    padding: 5rem 0;
    background-color: #fff;
}

.contact-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

.contact-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto 4rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--wood-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    resize: vertical;
}

.form-group button {
    width: 100%;
    border: none;
    font-family: inherit;
}

.form-message {
    padding: 1.5rem;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    color: #155724;
    text-align: center;
}

.contact-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info h3 {
    margin-bottom: 1rem;
}

.contact-info a {
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background-color: var(--wood-medium);
    color: var(--warm-white);
    text-align: center;
}

.cta-section h2 {
    color: var(--warm-white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--warm-white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background-color: var(--wood-dark);
    color: var(--warm-white);
    text-align: center;
    padding: 3rem 0;
}

footer p {
    color: var(--warm-white);
    margin-bottom: 0.5rem;
}

footer a {
    color: var(--wood-light);
}

footer a:hover {
    color: var(--warm-white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .work-grid, .services-grid, .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .work-grid-large {
        grid-template-columns: 1fr;
    }

    .work-item-large img {
        height: 300px;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

    .project-item img,
    .project-item.large img {
        height: 300px;
    }

    .quote-section blockquote {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 1rem;
    }

    .project-section {
        margin-bottom: 4rem;
        padding-bottom: 3rem;
    }

    .work-overlay {
        padding: 1.5rem;
    }

    .work-overlay h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 600px) {
    .nav-menu {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
}
