/* Styles for About Page */

/* History Section */
.history {
    padding: 80px 0;
    background-color: #F5F5DC;
}

.history__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.history__content {
    padding-right: 20px;
}

.history__title {
    font-size: 42px;
    margin-bottom: 20px;
    color: #8B4513;
}

.history__text {
    margin-bottom: 20px;
    color: #555555;
}

.history__image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.history__img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.history__image:hover .history__img {
    transform: scale(1.05);
}

/* Craftsmen Section */
.craftsmen {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.craftsmen__title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: #8B4513;
}

.craftsmen__subtitle {
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
    color: #555555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.craftsmen__item {
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.craftsmen__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.craftsmen__image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

.craftsmen__item:hover .craftsmen__img {
    transform: scale(1.1);
}

.craftsmen__info {
    padding: 20px;
}

.craftsmen__name {
    font-size: 20px;
    margin-bottom: 5px;
    color: #333333;
}

.craftsmen__position {
    font-size: 14px;
    color: #8B4513;
    margin-bottom: 15px;
    font-weight: 500;
}

.craftsmen__description {
    font-size: 14px;
    color: #666666;
}

.craftsmen__quote {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: #F5F5DC;
    border-radius: 8px;
    position: relative;
}

.craftsmen__quote blockquote {
    font-size: 24px;
    font-style: italic;
    color: #8B4513;
    margin-bottom: 15px;
    position: relative;
}

.craftsmen__quote blockquote::before,
.craftsmen__quote blockquote::after {
    content: '"';
    font-size: 50px;
    color: rgba(139, 69, 19, 0.2);
    position: absolute;
}

.craftsmen__quote blockquote::before {
    top: -20px;
    left: -15px;
}

.craftsmen__quote blockquote::after {
    bottom: -40px;
    right: -15px;
}

.craftsmen__quote cite {
    font-style: normal;
    font-weight: 500;
    color: #555555;
}

/* Materials Section */
.materials {
    padding: 80px 0;
    background-color: #F5F5DC;
}

.materials__title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: #8B4513;
}

.materials__subtitle {
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
    color: #555555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.materials__item {
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.materials__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.materials__image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

.materials__item:hover .materials__img {
    transform: scale(1.1);
}

.materials__content {
    padding: 20px;
}

.materials__name {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333333;
}

.materials__description {
    font-size: 14px;
    color: #666666;
    margin-bottom: 15px;
}

.materials__features {
    list-style: none;
    margin: 0;
}

.materials__feature {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555555;
}

.materials__feature i {
    color: #008080;
    margin-right: 10px;
}

/* Process Section */
.process {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.process__title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: #8B4513;
}

.process__subtitle {
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
    color: #555555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.process__steps {
    max-width: 900px;
    margin: 0 auto;
}

.process__step {
    display: grid;
    grid-template-columns: 60px 1fr 300px;
    gap: 30px;
    margin-bottom: 50px;
    align-items: center;
}

.process__step:last-child {
    margin-bottom: 0;
}

.process__step-number {
    width: 60px;
    height: 60px;
    background-color: #8B4513;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
}

.process__step-content {
    padding-right: 20px;
}

.process__step-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333333;
}

.process__step-description {
    color: #555555;
}

.process__step-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.process__step-img {
    width: 100%;
    height: auto;
}

/* Sustainability Section */
.sustainability {
    padding: 80px 0;
    background-color: #F5F5DC;
}

.sustainability__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.sustainability__image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sustainability__img {
    width: 100%;
    height: auto;
}

.sustainability__content {
    padding-left: 20px;
}

.sustainability__title {
    font-size: 36px;
    margin-bottom: 20px;
    color: #8B4513;
}

.sustainability__text {
    margin-bottom: 30px;
    color: #555555;
}

.sustainability__practices {
    margin-bottom: 30px;
}

.sustainability__practice {
    display: flex;
    margin-bottom: 20px;
}

.sustainability__practice-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #008080;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin-right: 20px;
}

.sustainability__practice-title {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333333;
}

.sustainability__practice-description {
    font-size: 14px;
    color: #666666;
}

.sustainability__certification {
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sustainability__certification-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-right: 20px;
}

.sustainability__certification-text {
    font-size: 14px;
    color: #555555;
    margin: 0;
}

/* Awards Section */
.awards {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.awards__title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: #8B4513;
}

.awards__subtitle {
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
    color: #555555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.awards__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.awards__item {
    display: flex;
    background-color: #F5F5DC;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.awards__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.awards__icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #8B4513;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-right: 20px;
}

.awards__content {
    flex: 1;
}

.awards__name {
    font-size: 20px;
    margin-bottom: 5px;
    color: #333333;
}

.awards__organization {
    font-size: 14px;
    color: #8B4513;
    margin-bottom: 10px;
    font-weight: 500;
}

.awards__description {
    font-size: 14px;
    color: #666666;
}

.awards__featured {
    text-align: center;
}

.awards__featured-title {
    font-size: 24px;
    margin-bottom: 30px;
    color: #8B4513;
}

.awards__featured-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.awards__featured-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.awards__featured-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .craftsmen__grid,
    .materials__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process__step {
        grid-template-columns: 60px 1fr;
    }
    
    .process__step-image {
        grid-column: 1 / 3;
        grid-row: 2;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .history__container,
    .sustainability__container {
        grid-template-columns: 1fr;
    }
    
    .history__content,
    .sustainability__content {
        padding: 0;
        order: 1;
    }
    
    .history__image,
    .sustainability__image {
        order: 0;
        margin-bottom: 30px;
    }
    
    .awards__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .craftsmen__grid,
    .materials__grid {
        grid-template-columns: 1fr;
    }
    
    .process__step {
        grid-template-columns: 1fr;
    }
    
    .process__step-number {
        margin: 0 auto 20px;
    }
    
    .process__step-content {
        padding: 0;
        text-align: center;
    }
    
    .process__step-image {
        grid-column: 1;
        margin-top: 20px;
    }
    
    .awards__item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .awards__icon {
        margin: 0 0 20px 0;
    }
}
