/* --- About Shamba Direct Homepage Section --- */
.about-shamba-section {
    background-color: #ffffff; /* Clean white */
    padding-top: 60px;
    padding-bottom: 70px;
    font-family: 'Inter', 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #1a1a1a;
}

@media (min-width: 768px) {
    .about-shamba-section {
        padding-top: 90px;
        padding-bottom: 100px;
    }
}

@media (min-width: 1024px) {
    .about-shamba-section {
        padding-top: 120px;
        padding-bottom: 130px;
    }
}

.about-shamba-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Area (Eyebrow + Heading + CTA) */
.about-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .about-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 40px;
    }
}

.about-heading-col {
    max-width: 800px;
}

.eyebrow-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #555555;
    border: 1px solid #e0e0e0;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .eyebrow-label {
        font-size: 12px;
        margin-bottom: 24px;
    }
}

.main-heading {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0;
    color: #0d1a12;
}

@media (min-width: 768px) {
    .main-heading {
        font-size: 40px;
    }
}

@media (min-width: 1024px) {
    .main-heading {
        font-size: 54px;
    }
}

.about-cta-col {
    margin-top: 24px;
}

@media (min-width: 768px) {
    .about-cta-col {
        margin-top: 0;
        margin-bottom: 10px; /* Align slightly above bottom of heading */
    }
}

.read-story-btn {
    display: inline-flex;
    align-items: center;
    background-color: #f7f9d8; /* Soft yellow/green accent */
    color: #2b3618;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 40px; /* Pill shape */
    transition: all 0.3s ease;
}

.read-story-btn:hover {
    background-color: #eef2b3;
    transform: translateY(-2px);
    text-decoration: none !important;
}

/* Image Area */
.about-image-wrapper {
    width: 100%;
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: 16px;
}

@media (min-width: 768px) {
    .about-image-wrapper {
        margin-bottom: 60px;
        border-radius: 24px;
    }
}

.about-main-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

@media (min-width: 768px) {
    .about-main-image {
        height: 380px;
    }
}

@media (min-width: 1024px) {
    .about-main-image {
        height: 460px;
    }
}

/* Text Content (2 Columns) */
.about-text-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (min-width: 768px) {
    .about-text-content {
        flex-direction: row;
        gap: 60px;
    }
}

@media (min-width: 1024px) {
    .about-text-content {
        gap: 100px;
    }
}

.about-text-left, .about-text-right {
    flex: 1;
}

.strong-statement {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .strong-statement {
        font-size: 24px;
        margin-bottom: 20px;
    }
}

.about-text-left p, .about-text-right p {
    font-size: 15px;
    line-height: 1.65;
    color: #555555;
    margin-top: 0;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .about-text-left p, .about-text-right p {
        font-size: 16px;
    }
}

.about-text-right p:last-child {
    margin-bottom: 0;
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
    .slide-up-anim {
        opacity: 0;
        transform: translateY(20px);
        animation: slideUpFadeIn 0.8s ease forwards;
    }
    
    .slide-up-anim-delay-1 {
        opacity: 0;
        transform: translateY(20px);
        animation: slideUpFadeIn 0.8s ease 0.15s forwards;
    }

    .slide-up-anim-delay-2 {
        opacity: 0;
        transform: translateY(20px);
        animation: slideUpFadeIn 0.8s ease 0.3s forwards;
    }
    
    .fade-scale-anim-delay-3 {
        opacity: 0;
        transform: scale(1.03);
        animation: fadeScaleIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s forwards;
    }

    .slide-up-anim-delay-4 {
        opacity: 0;
        transform: translateY(20px);
        animation: slideUpFadeIn 0.8s ease 0.5s forwards;
    }

    .slide-up-anim-delay-5 {
        opacity: 0;
        transform: translateY(20px);
        animation: slideUpFadeIn 0.8s ease 0.65s forwards;
    }

    @keyframes slideUpFadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeScaleIn {
        from {
            opacity: 0;
            transform: scale(1.03);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }
}
