/* --- Oak Studio Wood Styling --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Playfair+Display:wght@700&display=swap');

:root {
    --bg-cream: #faf7f2;
    --bg-card: #ffffff;
    --primary-wood: #854d0e; /* Wood brown */
    --hover-wood: #713f12;
    --text-dark: #2c2724;
    --text-muted: #6b6661;
    --border-color: #eaddd3;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
}

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

.brand {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-wood);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

header {
    background: rgba(250, 247, 242, 0.95);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav a:hover, nav a.active {
    color: var(--primary-wood);
}

/* Hero */
.hero {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(rgba(250, 247, 242, 0.8), rgba(250, 247, 242, 0.9)), url('https://images.unsplash.com/photo-1524758631624-e2822e304c36?auto=format&fit=crop&w=1200');
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--border-color);
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 30px;
}

.btn-wood {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-wood);
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.btn-wood:hover {
    background: var(--hover-wood);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(133, 77, 14, 0.3);
}

/* Products */
.products-section {
    padding: 80px 0;
}

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

.furniture-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.furniture-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(133, 77, 14, 0.05);
    border-color: var(--primary-wood);
}

.furniture-img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.furniture-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.furniture-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.furniture-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.furniture-price {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-wood);
    border-top: 1px dashed var(--border-color);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer {
    background: #27221f;
    color: #a89f98;
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
}
