:root {
    --primary-color: #6C584C;
    --primary-dark: #4A3B32;
    --accent-sage: #A3B18A;
    --accent-terracotta: #DDA15E;
    --bg-cream: #FAFBFA;
    --bg-sand: #F0ECE1;
    --text-dark: #2C2825;
    --text-muted: #66605B;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

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

.navbar {
    background-color: rgba(250, 251, 250, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(108, 88, 76, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}
.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    letter-spacing: -0.5px;
}
.navbar-brand span {
    color: var(--accent-terracotta);
}
.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.2s ease;
}
.nav-link:hover {
    color: var(--accent-terracotta) !important;
}

.btn-atelier-primary {
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 30px;
    padding: 0.75rem 2rem;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
}
.btn-atelier-primary:hover {
    background-color: var(--primary-dark);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 88, 76, 0.25);
}
.btn-atelier-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    padding: 0.7rem 1.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}
.btn-atelier-outline:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
}

.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    color: #ffffff;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    overflow: hidden;
    margin-bottom: 4rem;
}
.hero-content {
    max-width: 680px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.feature-box {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(108, 88, 76, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(108, 88, 76, 0.12);
}
.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-sand);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
}

.product-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(108, 88, 76, 0.08);
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    height: 100%;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(108, 88, 76, 0.15);
}
.product-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 320px;
}
.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrapper img {
    transform: scale(1.05);
}
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
}
.product-body {
    padding: 1.8rem;
}

.craft-section {
    background-color: var(--bg-sand);
    border-radius: 30px;
    padding: 5rem 2rem;
    margin: 5rem 0;
}
.craft-img {
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 380px;
}

.workshop-card {
    background: #ffffff;
    border-left: 5px solid var(--accent-terracotta);
    border-radius: 12px;
    padding: 1.8rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.03);
    margin-bottom: 1.5rem;
}

footer {
    background-color: var(--primary-dark);
    color: #E8E2DB;
    padding: 4rem 0 2rem 0;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    margin-top: 5rem;
}
footer a {
    color: #D3C9BE;
    text-decoration: none;
    transition: color 0.2s;
}
footer a:hover {
    color: var(--accent-terracotta);
}
.footer-heading {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}
