:root {
    --wood: #3f2a1e;
    --light: #f8f5f0;
    --accent: #8c5a2b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--light);
    color: #333;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* ==================== NAVIGATION ==================== */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: #333;
}

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        transform: translateY(-100%);
        transition: transform 0.4s ease-in-out;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding-top: 80px;
    }

    .nav-links.active {
        transform: translateY(0);
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), 
              /*  url('../images/Selection.jpg') center/cover no-repeat;*/
                url('../images/home-bug.png') center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    position: relative;
    color: white;
}

.hero-content {
    padding: 0 2% 2% 8%;
    max-width: 620px;
}

.hero h1 {
    font-size: 3.8rem;
    line-height: 1.05;
    margin-bottom: 1rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.75);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
}







/* ==================== GENERAL PAGE STYLES ==================== */
section {
    padding: 100px 5% 80px;
}

h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.8rem;
}

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


.piece {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s;
}

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

.piece img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: block;
}

.piece-info {
    margin-top: 1rem;
    text-align: center;
}

.piece-info h3 {
    font-size: 1.3rem;
}

.btn {
    display: inline-block;
    padding: 14px 40px;
    background: white;
    color: var(--wood);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

footer {
    background: var(--wood);
    color: #ddd;
    text-align: center;
    padding: 60px 20px;
}

/* Large screen adjustments */
@media (min-width: 1024px) {
    .wisdom-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/*=============pieces page files====================*/

<style>
        :root {
            --wood: #3f2a1e;
            --light: #f8f5f0;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Inter', system-ui, sans-serif;
            background: var(--light);
            color: #333;
            line-height: 1.7;
        }

        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(248, 245, 240, 0.98);
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            z-index: 1000;
            border-bottom: 1px solid #ddd;
        }

        .logo { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--wood); text-decoration: none; }

        .nav-links a { margin-left: 2rem; text-decoration: none; color: #333; font-weight: 500; }

        .hero-image {
            width: 100%;
            height: 70vh;
            object-fit: cover;
        }

        .content {
            max-width: 900px;
            margin: 0 auto;
            padding: 80px 5% 100px;
        }

        .quotation {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-style: italic;
            text-align: center;
            margin: 2.5rem 0;
            color: var(--wood);
            line-height: 1.4;
        }

        .details {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 3rem 0;
            font-size: 1.1rem;
        }

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

        .additional-images img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        h1 { font-family: 'Playfair Display', serif; font-size: 2.8rem; margin-bottom: 1rem; }

        @media (max-width: 768px) {
            .details { grid-template-columns: 1fr; }
        }
    </style>


