/* about.css */

/* Styles for the about-intro section */
.about-intro {
    display: flex; /* KEY: Use Flexbox for layout */
    align-items: flex-start; /* Aligns items to the top */
    gap: 30px; /* Space between the image and the text */
    margin-bottom: 40px;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.about-image {
    width: 300px; /* Fixed width for the image */
    height: auto; /* Maintain aspect ratio */
    border: 1px solid #C4B9A7; /* Add a subtle border like in the gallery */
    border-radius: 3px; /* Match other traditional elements */
    object-fit: cover; /* Ensures image covers its space if dimensions are strict */
    flex-shrink: 0; /* Prevents the image from shrinking on smaller screens */
}

.about-text-content {
    flex-grow: 1; /* Allows the text content to take up remaining space */
    text-align: left; /* Ensures text remains left-justified */
}

.about-intro h2 {
    color: #6D4C41;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    font-weight: normal;
}

.about-intro p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Styles for the bespoke-products section */
.bespoke-products {
    padding: 20px;
    background-color: #f8f5ef;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.bespoke-products h2 {
    color: #6D4C41;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    font-weight: normal;
}

.product-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
}

.product-item {
    width: 200px;
    height: 200px;
    border: 1px solid #d7cdbe;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    background-color: #fff;
}

.product-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

