/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Crimson Text', serif;
    line-height: 1.6;
    color: #2C1810;
    background-color: #FAF9F7;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

a {
    color: #8B4513;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

a:hover {
    border-bottom-color: #8B4513;
}

/* Header */
.header {
    background-color: #FFF;
    padding: 2rem 0;
    border-bottom: 2px solid #E8E5E0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    filter: drop-shadow(2px 2px 4px rgba(139, 69, 19, 0.1));
}

.brand-text {
    text-align: left;
}

.brand-name {
    font-size: 2rem;
    color: #2C1810;
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

.tagline {
    font-size: 0.9rem;
    color: #8B4513;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F5F3F0 0%, #E8E5E0 100%);
    padding: 4rem 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-text {
    text-align: left;
}

.hero-title {
    color: #2C1810;
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #5A4A3A;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #5A4A3A;
    font-size: 1rem;
}

.feature-icon {
    font-size: 1.2rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(139, 69, 19, 0.15);
}

/* Product Images */
.product-image {
    height: 200px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

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

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

/* Artisan Images */
.artisan-image {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.artisan-img {
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(139, 69, 19, 0.15);
}

/* Workshop Images */
.workshop-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.workshop-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.12);
}

/* Provenance Images */
.provenance-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.provenance-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.12);
}

/* About Page Images */
.about-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.12);
}

/* Introduction */
.intro {
    padding: 4rem 0;
    background-color: #FFF;
}

.intro-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.intro h3 {
    color: #2C1810;
    margin-bottom: 2rem;
}

.intro p {
    font-size: 1.2rem;
    color: #5A4A3A;
    margin-bottom: 3rem;
}

.intro-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #5A4A3A;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Traditions */
.traditions {
    padding: 4rem 0;
    background-color: #F5F3F0;
}

.traditions h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2C1810;
}

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

.tradition-card {
    background: #FFF;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.08);
    border: 1px solid #E8E5E0;
}

.tradition-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.tradition-card h4 {
    color: #2C1810;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.tradition-card p {
    color: #5A4A3A;
    line-height: 1.6;
}

/* Services */
.services {
    padding: 4rem 0;
    background-color: #FFF;
}

.services h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2C1810;
}

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

.service-item {
    text-align: center;
    padding: 2rem 1rem;
}

.service-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.service-item h4 {
    color: #2C1810;
    margin-bottom: 1rem;
}

.service-item p {
    color: #5A4A3A;
    margin: 0;
}

/* Products */
.products {
    padding: 4rem 0;
    background-color: #F5F3F0;
}

.products h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2C1810;
}

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

.product-card {
    background: #FFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.08);
    border: 1px solid #E8E5E0;
}

.product-image-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #CD853F, #8B4513);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.product-info {
    padding: 1.5rem;
}

.product-info h4 {
    color: #2C1810;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.product-info p {
    color: #5A4A3A;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.product-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.firing-date {
    color: #8B4513;
}

.price {
    font-weight: 600;
    color: #2C1810;
    font-size: 1.1rem;
}

.product-btn {
    display: inline-block;
    background-color: #8B4513;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    width: 100%;
    box-sizing: border-box;
}

.product-btn:hover {
    background-color: #6D3710;
    border-bottom: none;
}

/* Artisans */
.artisans {
    padding: 4rem 0;
    background-color: #FFF;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header h3 {
    color: #2C1810;
    margin-bottom: 1rem;
}

.section-header p {
    color: #5A4A3A;
    font-size: 1.1rem;
}

.artisan-image-placeholder {
    height: 400px;
    background: linear-gradient(45deg, #8B4513, #CD853F);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Workshops */
.workshops {
    padding: 4rem 0;
    background-color: #F5F3F0;
}

.workshops h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2C1810;
}

.workshop-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.workshop-text h4 {
    color: #2C1810;
    margin-bottom: 1.5rem;
}

.workshop-text p {
    color: #5A4A3A;
    margin-bottom: 1.5rem;
}

.workshop-text ul {
    list-style: none;
    padding-left: 0;
}

.workshop-text li {
    color: #5A4A3A;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.workshop-text li::before {
    content: "•";
    color: #8B4513;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
}

.workshop-image-placeholder {
    height: 300px;
    background: linear-gradient(135deg, #CD853F, #8B4513);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Provenance */
.provenance {
    padding: 4rem 0;
    background-color: #FFF;
}

.provenance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.provenance-image-placeholder {
    height: 350px;
    background: linear-gradient(45deg, #8B4513, #CD853F);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.provenance-text h3 {
    color: #2C1810;
    margin-bottom: 1.5rem;
}

.provenance-text p {
    color: #5A4A3A;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.provenance-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #5A4A3A;
}

.feature svg {
    flex-shrink: 0;
}

/* Membership */
.membership {
    padding: 4rem 0;
    background-color: #F5F3F0;
}

.membership h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2C1810;
}

.membership-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.tier {
    background: #FFF;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #E8E5E0;
    position: relative;
}

.tier.featured {
    border-color: #8B4513;
    transform: scale(1.05);
}

.tier h4 {
    color: #2C1810;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.tier-price {
    color: #8B4513;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.tier ul {
    list-style: none;
    padding: 0;
}

.tier li {
    color: #5A4A3A;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.tier li::before {
    content: "✓";
    color: #8B4513;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Contact */
.contact {
    padding: 4rem 0;
    background-color: #FFF;
}

.contact h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2C1810;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background-color: #F5F3F0;
    border-radius: 12px;
}

.contact-icon {
    flex-shrink: 0;
    background: #FFF;
    padding: 1rem;
    border-radius: 50%;
    border: 2px solid #E8E5E0;
}

.contact-details h4 {
    color: #2C1810;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-details p {
    color: #5A4A3A;
    margin: 0;
}

.contact-details a {
    color: #8B4513;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: #2C1810;
    color: #FAF9F7;
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.footer-brand-text {
    text-align: center;
}

.footer-brand-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FAF9F7;
    display: block;
    margin-bottom: 0.25rem;
}

.footer-tagline {
    color: #D4A574;
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    color: #FAF9F7;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #D4A574;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    border-bottom: 1px solid transparent;
}

.footer-section a:hover {
    color: #FAF9F7;
    border-bottom-color: #D4A574;
}

.footer-bottom {
    border-top: 1px solid #5A4A3A;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-copyright p {
    color: #8B7355;
    font-size: 0.9rem;
    margin: 0;
}

/* Remove old footer styles */
.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.footer-links a {
    color: #D4A574;
    font-size: 0.95rem;
    border-bottom: 1px solid transparent;
}

.footer-links a:hover {
    color: #FAF9F7;
    border-bottom-color: #D4A574;
}

/* Placeholder Styles */
.placeholder-text {
    font-style: italic;
    opacity: 0.8;
    text-align: center;
    padding: 1rem;
}

/* Centered Sections */
.centered-section {
    text-align: center;
}

.centered-section .container {
    text-align: center;
}

.centered-section h3 {
    text-align: center;
}

.centered-section p {
    text-align: center;
}

.centered-section .intro-content,
.centered-section .section-header {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-img {
        height: 300px;
    }
    
    .logo-section {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .brand-text {
        text-align: center;
    }
    
    .brand-name {
        font-size: 1.8rem;
    }
    
    .intro-stats {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .traditions-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .workshop-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .provenance-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .membership-tiers {
        grid-template-columns: 1fr;
    }
    
    .tier.featured {
        transform: none;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-img {
        height: 250px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .artisan-img,
    .workshop-img,
    .provenance-img,
    .about-image {
        height: 200px;
    }
    
    .product-img {
        height: 150px;
    }
}