/* IngaNeedleWork - Main Stylesheet */

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #faf8f5;
}

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

/* Header */
header {
    background-color: #fff;
    border-bottom: 3px solid #8b4049;
    padding: 30px 0;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

header .logo {
    width: 120px;
    height: auto;
    flex-shrink: 0;
}

header h1 {
    font-size: 2.5em;
    color: #8b4049;
    margin-bottom: 5px;
    font-weight: 400;
    letter-spacing: 1px;
}

.tagline {
    font-size: 1.1em;
    color: #556b2f;
    font-style: italic;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f0ea 0%, #e8dfd5 100%);
    padding: 60px 0;
    border-bottom: 1px solid #d4c4b0;
}

.hero h2 {
    font-size: 2.2em;
    color: #8b4049;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 400;
}

.intro {
    font-size: 1.15em;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    color: #3a3a3a;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.indicator {
    text-align: center;
}

.indicator strong {
    display: block;
    font-size: 1.4em;
    color: #8b4049;
    margin-bottom: 5px;
}

.indicator span {
    font-size: 0.95em;
    color: #666;
}

/* Services Section */
.services {
    padding: 70px 0;
    background-color: #fff;
}

.services h2 {
    font-size: 2em;
    color: #8b4049;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 400;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.05em;
    color: #555;
}

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

.service-card {
    background-color: #faf8f5;
    padding: 30px;
    border-left: 4px solid #8b4049;
    border-radius: 2px;
}

.service-card h3 {
    font-size: 1.4em;
    color: #556b2f;
    margin-bottom: 15px;
    font-weight: 400;
}

.service-card p {
    color: #555;
    line-height: 1.7;
}

/* Process Section */
.process {
    padding: 70px 0;
    background: linear-gradient(135deg, #f5f0ea 0%, #e8dfd5 100%);
}

.process h2 {
    font-size: 2em;
    color: #8b4049;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400;
}

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

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #8b4049;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.3em;
    color: #556b2f;
    margin-bottom: 15px;
    font-weight: 400;
}

.step p {
    color: #555;
    line-height: 1.7;
}

/* Why Choose Section */
.why-choose {
    padding: 70px 0;
    background-color: #fff;
}

.why-choose h2 {
    font-size: 2em;
    color: #8b4049;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400;
}

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

.benefit h3 {
    font-size: 1.3em;
    color: #556b2f;
    margin-bottom: 15px;
    font-weight: 400;
}

.benefit p {
    color: #555;
    line-height: 1.7;
}

/* Expectations Section */
.expectations {
    padding: 70px 0;
    background: linear-gradient(135deg, #f5f0ea 0%, #e8dfd5 100%);
}

.expectations h2 {
    font-size: 2em;
    color: #8b4049;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 400;
}

.expectation-box {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 25px;
    border-left: 4px solid #556b2f;
    border-radius: 2px;
}

.expectation-box h3 {
    font-size: 1.4em;
    color: #8b4049;
    margin-bottom: 15px;
    font-weight: 400;
}

.expectation-box p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.expectation-box p:last-child {
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    padding: 70px 0;
    background-color: #fff;
}

.contact-section h2 {
    font-size: 2em;
    color: #8b4049;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 400;
}

.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.05em;
    color: #555;
}

#contactForm {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #556b2f;
    font-weight: 600;
    font-size: 1em;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #d4c4b0;
    border-radius: 3px;
    font-size: 1em;
    font-family: 'Georgia', serif;
    background-color: #faf8f5;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    outline: none;
    border-color: #8b4049;
}

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

.submit-btn {
    background-color: #8b4049;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 3px;
    font-size: 1.1em;
    font-family: 'Georgia', serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    margin: 30px auto 0;
}

.submit-btn:hover {
    background-color: #6d323a;
}

/* Footer */
footer {
    background-color: #2c2c2c;
    color: #d4c4b0;
    padding: 30px 0;
    text-align: center;
}

footer p {
    margin-bottom: 10px;
    font-size: 0.95em;
}

.footer-note {
    font-style: italic;
    color: #a89a89;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }
    
    header h1 {
        font-size: 2em;
    }
    
    .hero h2 {
        font-size: 1.8em;
    }
    
    .intro {
        font-size: 1.05em;
    }
    
    .trust-indicators {
        gap: 30px;
    }
    
    .service-grid,
    .process-steps,
    .benefits {
        grid-template-columns: 1fr;
    }
    
    .submit-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }
    
    header .logo {
        width: 90px;
    }
    
    header h1 {
        font-size: 1.6em;
    }
    
    .tagline {
        font-size: 1em;
    }
}
