/*
Theme Name: Lithic Living
Description: E-commerce theme for Lithic Living - Home goods and lifestyle products
Version: 1.0
Author: Lithic Group
*/

/* Color Palette - Warm, Natural, Earthy */
:root {
    --warm-tan: #c9a27c;
    --light-tan: #e8dcc8;
    --deep-brown: #5d4e37;
    --cream: #faf6f1;
    --sage-green: #8b9a7a;
    --terracotta: #c87753;
    --charcoal: #3a3a3a;
    --soft-white: #ffffff;
}

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

body {
    font-family: 'Libre Baskerville', 'Georgia', serif;
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--light-tan);
    padding: 20px 0 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo img {
    width: 200px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: var(--deep-brown);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--warm-tan);
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: var(--warm-tan);
}

nav ul li a:hover::after {
    width: 100%;
}

.header-icons {
    display: flex;
    gap: 20px;
}

.header-icons a {
    color: var(--deep-brown);
    font-size: 20px;
    transition: color 0.3s ease;
}

.header-icons a:hover {
    color: var(--warm-tan);
}

.company-tag {
    text-align: center;
    padding: 8px 0;
    background: rgba(232, 220, 200, 0.3);
    border-top: 1px solid var(--light-tan);
}

.company-tag p {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: var(--deep-brown);
    letter-spacing: 0.5px;
}

.company-tag a {
    color: var(--warm-tan);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.company-tag a:hover {
    color: var(--deep-brown);
}

/* Hero Section */
.hero {
    min-height: auto;
    padding: 40px 0;
    background: linear-gradient(135deg, var(--light-tan) 0%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 162, 124, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    max-width: 100%;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.hero-text {
    max-width: 500px;
    padding-left: 0;
}

.hero-image-space {
    min-height: 400px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 6vw, 68px);
    font-weight: 700;
    color: var(--deep-brown);
    line-height: 1.1;
    margin-bottom: 30px;
    text-align: left;
}

.hero p {
    font-size: 18px;
    color: var(--charcoal);
    margin-bottom: 35px;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--warm-tan);
    color: var(--soft-white);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--deep-brown);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(93, 78, 55, 0.2);
}

/* Featured Products Section */
.featured-products {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--warm-tan);
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4vw, 48px);
    color: var(--deep-brown);
    font-weight: 700;
}

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

.product-card {
    background: var(--soft-white);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 350px;
    background: var(--light-tan);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 25px;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--deep-brown);
    margin-bottom: 10px;
    font-weight: 600;
}

.product-category {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--warm-tan);
    margin-bottom: 15px;
}

.product-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: var(--charcoal);
    font-weight: 600;
}

/* Categories Section */
.categories {
    padding: 80px 0;
    background: var(--soft-white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    height: 300px;
    background: var(--light-tan);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.category-card:hover::before {
    opacity: 0.7;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-name {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--soft-white);
    z-index: 2;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-tan) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 42px);
    color: var(--deep-brown);
    margin-bottom: 25px;
    font-weight: 700;
}

.about-text p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 20px;
    color: var(--charcoal);
}

.about-image {
    height: 500px;
    background: var(--warm-tan);
    border-radius: 4px;
}

/* Newsletter */
.newsletter {
    padding: 80px 0;
    background: var(--deep-brown);
    text-align: center;
}

.newsletter h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--soft-white);
    margin-bottom: 20px;
}

.newsletter p {
    color: var(--light-tan);
    margin-bottom: 35px;
    font-size: 16px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid var(--warm-tan);
    background: transparent;
    color: var(--soft-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    border-radius: 2px;
}

.newsletter-form input::placeholder {
    color: var(--light-tan);
}

/* Footer */
footer {
    background: var(--charcoal);
    color: var(--light-tan);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-column h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--soft-white);
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--light-tan);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--warm-tan);
}

.footer-bottom {
    border-top: 1px solid rgba(201, 162, 124, 0.2);
    padding-top: 30px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
}

.footer-company-tag {
    margin-top: 10px;
    font-size: 12px;
    color: var(--warm-tan);
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero {
        min-height: auto;
        padding: 80px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        text-align: left;
    }
    
    .hero-image-space {
        min-height: 250px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}
