
/* About Us Page Custom Styles */

.about-us-container {
    padding-top: 40px;
    padding-bottom: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.about-section h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #b68530; /* Golden/Wood tone based on logo/theme */
}

.about-section p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-image-wrapper {
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.03);
}

/* Brand Story Highlight Block */
.brand-story-block {
    background-color: #f9f6f1;
    padding: 40px;
    border-left: 5px solid #b68530;
    margin: 50px 0;
    border-radius: 0 8px 8px 0;
}

.brand-story-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #b68530;
}

/* CTA Section */
.about-cta-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #333;
    color: #fff;
    border-radius: 8px;
    margin-top: 40px;
}

.about-cta-section h2 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    margin-bottom: 30px;
}

.about-cta-section h2:after {
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
}

.btn-cta {
    background-color: #b68530;
    color: #fff !important;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.btn-cta:hover {
    background-color: #a0742a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-section h2 {
        font-size: 2rem;
    }
    .brand-story-block {
        padding: 25px;
    }
    .about-cta-section {
        padding: 40px 15px;
    }
}
