/* About Page Styles */

/* Hero Section - About Page */
.about-page .hero {
    height: 60vh;
    background-image: url('../images/about-hero.svg');
    background-size: cover;
    background-position: center;
}

/* Brand Story Section */
.brand-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 80px 5%;
    gap: 50px;
    align-items: center;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.story-content h2 {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.story-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

/* Our Values Section */
.our-values {
    background-color: #f9f9f9;
    padding: 80px 5%;
    text-align: center;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: #666;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 36px;
    margin-bottom: 20px;
    color: #000;
}

.value-card h3 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Our Process Section */
.our-process {
    padding: 80px 5%;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background-color: #eee;
    transform: translateX(-50%);
}

.process-step {
    position: relative;
    margin-bottom: 80px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.process-step:last-child {
    margin-bottom: 0;
}

.left-aligned {
    justify-content: flex-start;
    padding-right: 50%;
}

.right-aligned {
    justify-content: flex-end;
    padding-left: 50%;
}

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    width: 40px;
    height: 40px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    transform: translateX(-50%);
    z-index: 2;
    border: 4px solid #fff;
}

.step-content {
    background-color: #fff;
    padding: 30px;
    width: 90%;
    border-radius: 0;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.process-step:hover .step-content {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: #e0e0e0;
}

.left-aligned .step-content {
    margin-right: 40px;
    text-align: right;
}

.right-aligned .step-content {
    margin-left: 40px;
    text-align: left;
}

.step-content h3 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: #000;
}

.step-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* Team Section */
.our-team {
    background-color: #f9f9f9;
    padding: 80px 5%;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 25px;
}

.member-info h3 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.position {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.bio {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Contact Section */
.contact-us {
    padding: 80px 5%;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.info-item i {
    font-size: 24px;
    margin-bottom: 15px;
    color: #000;
}

.info-item h3 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.info-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.contact-form {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 4px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .brand-story {
        grid-template-columns: 1fr;
    }

    .story-image {
        order: 1;
    }

    .story-content {
        order: 2;
    }

    .process-timeline::before {
        left: 20px;
        transform: none;
    }

    .process-step {
        padding-left: 60px;
        padding-right: 0;
        justify-content: flex-start;
        margin-bottom: 50px;
    }

    .step-number {
        left: 20px;
        transform: translateX(-50%);
    }

    .left-aligned,
    .right-aligned {
        padding-left: 60px;
        padding-right: 0;
    }

    .left-aligned .step-content,
    .right-aligned .step-content {
        margin-left: 0;
        margin-right: 0;
        text-align: left;
        width: 100%;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}