/* About Us Specific Styles & Overrides */

/* Light Section Background Override */
.about-light-section {
    background: #F8F9FA; /* Cream/White background */
    color: var(--text-body);
}

/* 2-Column Split for Our Story */
.story-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 900px) {
    .story-split-grid {
        grid-template-columns: 1fr;
    }
}

/* Image Placeholder styling (ported from abou_us1.html) */
.story-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(0, 230, 118, 0.1), rgba(0, 230, 118, 0.02));
    border: 1px solid rgba(0, 230, 118, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 4rem;
    color: var(--brand-primary);
    position: relative;
    overflow: hidden;
}

.story-image-placeholder span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-primary);
    letter-spacing: 0.05em;
    margin-top: 1rem;
}

/* ========================================= */
/* THE "INVISIBLE CARD" HOVER EFFECT         */
/* ========================================= */

/* Ensure the cards have a solid enough background initially so they aren't fully transparent on the cream background */
.about-light-section .choose-card.glass-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}

/* On hover, the background and border vanish completely, leaving just the text! */
.about-light-section .choose-card.glass-card:hover {
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
    transform: translateY(-5px); /* Keep the slight float effect */
}

/* Gradient Text: Cherry to Primary Green */
.gradient-text-cherry-green {
    background: linear-gradient(135deg, var(--brand-cherry), var(--brand-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
