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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2C2C2C;
    background-color: #FEFEFE;
}

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

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: #555;
}

/* Header */
.header {
    background-color: #FEFEFE;
    padding: 1.5rem 0;
    border-bottom: 1px solid #E5E5E5;
}

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

.logo {
    flex-shrink: 0;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 400;
    color: #2C2C2C;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background-color: #F8F8F8;
}

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

.hero-content h1 {
    color: #2C2C2C;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #666;
}

.cta-button {
    display: inline-block;
    background-color: #8B4513;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #6B3410;
}

.hero-img,
.product-img,
.materials-img,
.care-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.craftsmanship-img {
    width: 100%;
    height: 300px;
    border-radius: 8px;
}

.hero-img {
    height: 400px;
}

/* Placeholder Images */
.placeholder-image {
    background-color: #E5E5E5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    text-align: center;
    padding: 2rem;
    font-style: italic;
}

.placeholder-image.large {
    height: 400px;
}

.placeholder-image.medium {
    height: 300px;
}

.placeholder-image.small {
    height: 200px;
}

/* Section Styling */
.centered-section {
    text-align: center;
}

.centered-section .container > * {
    margin-left: auto;
    margin-right: auto;
}

.centered-section .hero-content,
.centered-section .materials-content,
.centered-section .craftsmanship-content,
.centered-section .care-content {
    text-align: left;
}

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

.section-header h2 {
    color: #2C2C2C;
}

.section-header p {
    font-size: 1.125rem;
    color: #666;
}

/* About Section */
.about {
    padding: 4rem 0;
}

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

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

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

.about-item h3 {
    color: #2C2C2C;
    margin-bottom: 1rem;
}

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

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

.product-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    color: #2C2C2C;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 500;
    color: #8B4513;
    margin-bottom: 1rem;
}

.product-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-btn {
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.contact-btn.primary {
    background-color: #8B4513;
    color: white;
}

.contact-btn.primary:hover {
    background-color: #6B3410;
}

.contact-btn.secondary {
    background-color: transparent;
    color: #8B4513;
    border: 2px solid #8B4513;
}

.contact-btn.secondary:hover {
    background-color: #8B4513;
    color: white;
}

/* Materials Section */
.materials {
    padding: 4rem 0;
}

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

.materials-features {
    list-style: none;
    margin-top: 1.5rem;
}

.materials-features li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

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

/* Craftsmanship Section */
.craftsmanship {
    padding: 4rem 0;
    background-color: #F8F8F8;
}

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

.craftsmanship-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 300;
    color: #8B4513;
}

.stat-label {
    font-size: 0.875rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Customization Section */
.customization {
    padding: 4rem 0;
}

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

.option {
    text-align: center;
    padding: 2rem;
}

.option-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.option h3 {
    color: #2C2C2C;
    margin-bottom: 1rem;
}

/* Process Section */
.process {
    padding: 4rem 0;
    background-color: #F8F8F8;
}

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

.step {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #8B4513;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    margin: 0 auto 1rem;
}

.step h3 {
    color: #2C2C2C;
    margin-bottom: 0.5rem;
}

.step .time {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #8B4513;
    font-weight: 500;
}

/* Care Section */
.care {
    padding: 4rem 0;
}

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

.care-services {
    margin-top: 2rem;
}

.service {
    margin-bottom: 1.5rem;
}

.service h4 {
    color: #2C2C2C;
    margin-bottom: 0.5rem;
}

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

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
}

.contact-icon {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-details h3 {
    color: #2C2C2C;
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: #8B4513;
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

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

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .brand-name {
    color: white;
}

.footer-brand p {
    color: #CCC;
    margin-top: 0.5rem;
}

.footer-contact h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-contact p {
    color: #CCC;
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: #CCC;
    text-decoration: none;
}

.footer-contact a:hover {
    color: white;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 1rem 0;
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #CCC;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
}

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

.footer-bottom p {
    color: #CCC;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .materials-content,
    .craftsmanship-content,
    .care-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .craftsmanship-stats {
        justify-content: center;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .contact-btn {
        flex: none;
    }
}