
/* About Story Section */
.about-story {
    width: 100%;
    background-color: #f5f5f5;
    padding-bottom: 80px;
}

/* Top Border */
.about-story__border {
    width: 100%;
    height: 4px;
    background-color:  #5c1a2e;
}

/* Header */
.about-story__header {
    text-align: center;
    padding: 60px 20px 80px;
}

.about-story__title {
    font-size: clamp(2.5rem, 5vw, 3. 5rem);
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.about-story__subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: #333;
    font-weight: 500;
}

/* Content Container */
.about-story__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Column - Image */
.about-story__image-wrapper {
    position: relative;
}

.about-story__image {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow:  0 10px 30px rgba(0, 0, 0, 0.15);
    display: block;
    object-fit: cover;
}

/* Right Column - Content */
.about-story__content {
    padding: 20px 0;
}

.about-story__heading {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    letter-spacing:  -0.5px;
}

.about-story__text {
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.8;
    color: #333;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-story__container {
        gap: 60px;
        padding: 0 30px;
    }
}

@media (max-width:  768px) {
    .about-story {
        padding-bottom: 60px;
    }
    
    .about-story__header {
        padding: 50px 20px 60px;
    }
    
    .about-story__container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .about-story__image {
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .about-story {
        padding-bottom: 50px;
    }
    
    .about-story__header {
        padding: 40px 15px 50px;
    }
    
    .about-story__container {
        padding: 0 15px;
        gap: 30px;
    }
    
    .about-story__image {
        border-radius: 15px;
    }
}

/* Optional: Animation on scroll */
.about-story__image-wrapper,
.about-story__content {
    opacity: 0;
    transform:  translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-story__image-wrapper.visible,
.about-story__content.visible {
    opacity: 1;
    transform: translateY(0);
}