/* 
   Organic Luxury - Stylesheet
   Palette:
   - Primary (Deep Forest Green): #2D463E
   - Secondary (Soft Sand): #E1D8C1
   - Details (Muted Terracotta): #B68D74
   - Base (Off-White): #F9F7F2
   - Text (Organic Charcoal Grey): #333333
*/

:root {
    --color-primary: #2D463E;
    --color-secondary: #E1D8C1;
    --color-details: #B68D74;
    --color-base: #F9F7F2;
    --color-text: #333333;
    --color-white: #ffffff;

    --font-heading: 'Lora', serif;
    --font-body: 'Montserrat', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-base);
    color: var(--color-text);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-weight: 600;
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 1.3;
}

h3 {
    font-weight: 400;
    font-style: italic;
    font-size: 1.75rem;
}

p {
    margin-bottom: var(--spacing-sm);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-primary);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Layout Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section {
    padding: var(--spacing-xl) 0;
}

.text-center {
    text-align: center;
}

.grid {
    display: grid;
    gap: var(--spacing-md);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Header */
header {
    background-color: rgba(249, 247, 242, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--color-primary);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: var(--spacing-md);
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-details);
}

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    /* Simulate a loaded image */
    background: linear-gradient(rgba(45, 70, 62, 0.4), rgba(45, 70, 62, 0.4)), url('https://images.unsplash.com/photo-1616683693504-3ea7e9ad6fec?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
}

.hero-content {
    background-color: rgba(255, 255, 255, 0.9);
    padding: var(--spacing-lg);
    max-width: 600px;
    margin-left: 5%;
    /* Slight offset */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-buttons {
    margin-top: var(--spacing-md);
    display: flex;
    gap: var(--spacing-sm);
}

/* Commitment Section */
.commitment {
    background-color: var(--color-secondary);
}

.commitment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--spacing-lg);
}

.commitment-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Differentiators */
.diff-card {
    text-align: center;
    padding: var(--spacing-md);
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.diff-card:hover {
    transform: translateY(-5px);
}

.diff-icon {
    font-size: 2.5rem;
    color: var(--color-details);
    margin-bottom: var(--spacing-sm);
}

/* Stores / Locations */
.stores {
    background-color: var(--color-base);
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    margin-top: var(--spacing-md);
    font-style: italic;
}

/* Team */
.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 300px;
    /* Consistent height */
    object-fit: cover;
    margin-bottom: var(--spacing-sm);
    filter: grayscale(20%);
    /* Artistic touch */
    transition: filter 0.3s;
}

.team-member:hover img {
    filter: grayscale(0%);
}

.team-name {
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.2rem;
}

.team-role {
    font-size: 0.9rem;
    color: var(--color-details);
    font-style: italic;
}

/* Blog */
.blog-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.blog-content {
    padding: var(--spacing-md);
}

.blog-date {
    font-size: 0.8rem;
    color: var(--color-details);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-xs);
    display: block;
}

.blog-title {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    margin-bottom: var(--spacing-sm);
}

/* Contact */
.contact {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.contact h2,
.contact p {
    color: var(--color-white);
}

.contact-form {
    background: var(--color-white);
    padding: var(--spacing-lg);
    max-width: 700px;
    margin: 0 auto;
    color: var(--color-text);
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: #fcfcfc;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-details);
    background-color: #fff;
}

/* Footer */
footer {
    background-color: #1a2a25;
    /* Darker than primary */
    color: rgba(255, 255, 255, 0.7);
    padding: var(--spacing-lg) 0;
    font-size: 0.9rem;
}

footer h4 {
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

footer ul {
    list-style: none;
}

footer li {
    margin-bottom: 0.5rem;
}

footer a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: var(--color-details);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    text-align: center;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 900px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .commitment-content {
        grid-template-columns: 1fr;
    }

    .hero-content {
        margin: 0 var(--spacing-sm);
        padding: var(--spacing-md);
    }

    .nav-links {
        display: none;
        /* simple hide for mobile for this MVP */
    }
}