/* Reset and Base Layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Georgia', serif; /* Gives a more artisanal, crafted feel */
}

body {
    background-color: #fcfbfa; /* Warm, off-white background */
    color: #2b2625; /* Soft charcoal black for readability */
    line-height: 1.7;
    scroll-behavior: smooth;
}

/* Typography Overrides */
h1, h2, h3 {
    font-family: 'Arial', sans-serif;
    letter-spacing: 1px;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(252, 251, 250, 0.95);
    backdrop-filter: blur(5px);
    z-index: 1000;
    border-bottom: 2px solid #e8e5e0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.logo {
    font-weight: 900;
    font-size: 1.3rem;
    color: #8c2f1e; /* Rich mahogany/terracotta theme accent */
    letter-spacing: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #2b2625;
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #8c2f1e;
}

/* Hero Section */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(43, 38, 37, 0.5), rgba(43, 38, 37, 0.7)), 
                url('https://images.unsplash.com/photo-1528459801416-a9e53bbf4e17?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    padding: 0 20px;
    margin-bottom: 40px;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #f7c844; /* Warm gold accent */
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Universal Buttons */
.btn {
    display: inline-block;
    background-color: #8c2f1e;
    color: #ffffff;
    padding: 14px 35px;
    border: none;
    border-radius: 3px;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
}

.btn:hover {
    background-color: #692215;
    transform: translateY(-1px);
}

.full-width-btn {
    width: 100%;
}

/* Standard Section Layouts */
section {
    padding: 80px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: #2b2625;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #8c2f1e;
    margin: 15px auto 0;
}

/* Heritage Layout */
.heritage-container {
    background: #f4f1ea;
    padding: 40px;
    border-radius: 4px;
    border-left: 5px solid #8c2f1e;
}

.heritage-text h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #8c2f1e;
}

.craft-points {
    margin-top: 20px;
    list-style-position: inside;
}

.craft-points li {
    margin-bottom: 10px;
}

/* Collection Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-item {
    background: #ffffff;
    border: 1px solid #e8e5e0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.item-caption {
    padding: 15px;
    text-align: center;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    border-top: 1px solid #e8e5e0;
}

/* Order Form Container */
.form-container {
    max-width: 650px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 4px;
    border: 1px solid #e8e5e0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    font-size: 0.9rem;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #c8c5c0;
    background: #fcfbfa;
    color: #2b2625;
    border-radius: 3px;
    font-size: 1rem;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: #8c2f1e;
    background: #ffffff;
}

/* Footer Section */
footer {
    background: #2b2625;
    color: #e8e5e0;
    text-align: center;
    padding: 40px 20px;
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 10px;
}

.footer-subtext {
    color: #a8a5a0;
    font-size: 0.8rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.3rem; }
    .form-container, .heritage-container { padding: 25px; }
}