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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #3d3d3d;
    background-color: #faf8f5;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 1.2;
    color: #2c2c2c;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 2rem;
    color: #2c2c2c;
}

.section-title.centered {
    text-align: center;
    margin-bottom: 4rem;
}

/* Color Palette */
:root {
    --cream: #faf8f5;
    --warm-cream: #f5f2ed;
    --walnut: #8b4513;
    --walnut-light: #a0623d;
    --cognac: #a0522d;
    --bronze: #cd7f32;
    --bronze-light: #daa55c;
    --charcoal: #2c2c2c;
    --soft-gray: #f0ede8;
    --text-primary: #3d3d3d;
    --text-secondary: #6b6b6b;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--cognac);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--cognac);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-cream) 100%);
    padding-top: 80px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    min-height: 70vh;
}

.hero-text {
    max-width: 600px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.5;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.btn-primary {
    display: inline-block;
    background: var(--cognac);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    align-self: flex-start;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary:hover {
    background: var(--walnut);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(160, 82, 45, 0.3);
}

.scroll-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.scroll-arrow {
    width: 20px;
    height: 1px;
    background: var(--text-secondary);
    position: relative;
    animation: bounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    right: -5px;
    top: -3px;
    width: 7px;
    height: 7px;
    border-right: 1px solid var(--text-secondary);
    border-bottom: 1px solid var(--text-secondary);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(0); }
    40% { transform: translateX(5px); }
    60% { transform: translateX(3px); }
}

.hero-image {
    height: 70vh;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-craftsmanship-new.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.craftsmanship-detail {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.1) 0%, rgba(160, 82, 45, 0.1) 100%);
    opacity: 0.3;
}

/* Section Styles */
section {
    padding: 6rem 0;
    position: relative;
}

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

.section-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.section-text {
    max-width: 600px;
}

.section-body p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
}

.section-visual {
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.material-showcase {
    width: 100%;
    height: 100%;
    position: relative;
}

.walnut-texture {
    background-image: url('../images/about-leather-new.jpg');
    background-size: cover;
    background-position: center;
}

.cognac-leather {
    background-image: url('../images/experience-process-new.jpg');
    background-size: cover;
    background-position: center;
}

/* About Section */
.about {
    background: var(--warm-cream);
}

/* Services Section */
.services {
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 2rem;
}

.cognac-accent {
    background: linear-gradient(135deg, var(--cognac) 0%, #b8633b 100%);
}

.bronze-accent {
    background: linear-gradient(135deg, var(--bronze) 0%, var(--bronze-light) 100%);
}

.walnut-accent {
    background: linear-gradient(135deg, var(--walnut) 0%, var(--walnut-light) 100%);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Experience Section */
.experience {
    background: var(--soft-gray);
}

.lead {
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 3rem;
    font-weight: 400;
}

.experience-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.detail-block h4 {
    color: var(--cognac);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.detail-block p {
    color: var(--text-primary);
    line-height: 1.7;
}

/* Philosophy Section */
.philosophy {
    background: var(--cream);
    text-align: center;
}

.philosophy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.philosophy-quote {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--charcoal);
    font-style: italic;
    margin-bottom: 4rem;
    font-family: 'Crimson Text', serif;
}

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

.value-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.value-title {
    font-weight: 600;
    color: var(--cognac);
    font-size: 1.1rem;
}

.value-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Contact Section */
.contact {
    background: var(--warm-cream);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.contact-intro {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.location {
    color: var(--cognac);
    font-weight: 500;
    font-size: 1.1rem;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cognac);
    box-shadow: 0 0 0 2px rgba(160, 82, 45, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--bronze-light);
}

.footer-tagline {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-location {
    color: var(--bronze);
    font-weight: 400;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content,
    .section-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .section-content.reverse {
        grid-template-columns: 1fr;
    }
    
    .section-content.reverse .section-visual {
        order: -1;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-image {
        height: 50vh;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .philosophy-values {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .nav-container,
    .hero-container {
        padding: 1rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .philosophy-quote {
        font-size: 1.2rem;
    }
}