/*======== welcome area ======= */
.about-hero {
    min-height: 40vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)),
                url("../img/about_ing/about_orgvein.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 120px;
    padding-bottom: 60px;
    position: relative;
    display: flex;
    align-items: center;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero-top h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 700;
    letter-spacing: -1px;
}

.about-hero-bottom {
    max-width: 650px;
    margin: 0;
}

.about-hero-bottom h2 {
    display: none;
}

.about-hero-bottom p {
    color: #e8e8e8;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 0;
    position: relative;
    padding-bottom: 20px;
}

/* Decorative underline */
.about-hero-bottom p::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #fff;
}

/* ======== our story ======= */
.about-story {
    padding: 20px 0;
    background: #f8f9fa;
}

.story-heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0f3d2e;
    margin-bottom: 0;
    line-height: 1.2;
}

.story-card {
    background: linear-gradient(145deg, #fdf8ee, #f5efd8);
    border: 1px solid #e8dcb8;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(212, 200, 154, 0.15);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card {
    background: linear-gradient(145deg, #faf5e9, #f0e8d0);
    border: 2px solid #d4c89a;
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

/* Subtle decorative circle */
.story-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 200, 154, 0.1), transparent);
    border-radius: 50%;
}

.story-card p {
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5a4e35;
    margin-bottom: 20px;
}

.story-card p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 767px) {
    .story-heading {
        font-size: 2.2rem;
        margin-bottom: 30px;
        text-align: center;
    }

    .story-card {
        padding: 30px 25px;
    }

    .about-story {
        padding: 60px 0;
    }
}

/* ======== what orgvein + Mission/Vision Combined ======== */
.about-meaning-mv {
    padding: 20px 0;
    background: #fafbfc;
}

/* Left section - What Orgvein Means */
.meaning-content {
    position: sticky;
    top: 120px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 55%, #d2b77b 100%);
    padding: 40px 30px;
    border-radius: 16px;
    color: #fff;
    box-shadow: 0 8px 30px rgba(15, 61, 46, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.meaning-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(15, 61, 46, 0.2);
}

.meaning-content h2 {
    font-size: 2.2rem;
    margin-bottom: 18px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.meaning-highlight {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: #d2b77b;
    letter-spacing: 0.3px;
}

.meaning-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    flex-shrink: 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.88);
}

/* Right section - Slider */
.mv-slider-container {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 35px;
    height: auto;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
    transition: box-shadow 0.3s ease;
    min-height: 360px; /* optional control */
}

.mv-slider-container:hover {
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

/* Slides */
.mv-slide {
    display: none;
    flex: 1;
    animation: fadeIn 0.6s ease-in-out;
}

.mv-slide.active {
    display: flex;
    flex-direction: column;
}

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

/* Title */
.mv-title {
    font-size: 2rem;
    font-weight: 700;
    color: #c9a661;
    margin-bottom: 20px;
    flex-shrink: 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

/* Text */
.mv-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0;
    flex: 1;
    font-weight: 400;
}

/* Navigation Arrows */
.mv-nav {
    display: flex;
    gap: 12px;
    margin-top: auto;
    padding-top: 20px;
    flex-shrink: 0;
    border-top: 1px solid #f0f0f0;
}

.mv-arrow {
    background: transparent;
    border: 2px solid #c9a661;
    color: #c9a661;
    cursor: pointer;
    padding: 12px 16px;
    transition: all 0.3s ease;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mv-arrow:hover {
    background: #c9a661;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(201, 166, 97, 0.25);
}

.mv-arrow:active {
    transform: scale(0.98);
}

.mv-arrow svg {
    display: block;
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 991px) {
    .about-meaning-mv {
        padding: 80px 0;
    }

    .meaning-content {
        padding: 50px 40px;
    }

    .mv-slider-container {
        padding: 50px 40px;
        height: 450px;
    }
}

@media (max-width: 767px) {
    .about-meaning-mv {
        padding: 60px 0;
    }

    .meaning-content {
        position: static;
        margin-bottom: 40px;
        padding: 40px 30px;
    }

    .meaning-content h2 {
        font-size: 2.2rem;
    }

    .meaning-highlight {
        font-size: 1.1rem;
    }

    .mv-slider-container {
        padding: 40px 30px;
        height: auto;
        min-height: 400px;
    }

    .mv-title {
        font-size: 2rem;
    }

    .mv-text {
        font-size: 1rem;
    }

    .mv-nav {
        padding-top: 25px;
    }
}

/* ======= philosophy ======= */
.about-philosophy {
    position: relative;
    padding: 100px 0;
    color: #1a1a1a;

    /* Background image + soft overlay */
    background:
        linear-gradient(to right, rgba(255,255,255,0.95) 40%, rgba(255,255,255,0.6) 70%, rgba(255,255,255,0.2) 100%),
        url("../img/about_ing/Philosophy.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Content alignment */
.philosophy-content {
    max-width: 600px;
}

/* Heading style (gold tone like image 1) */
.about-philosophy h2 {
    font-size: 42px;
    font-weight: 600;
    color: #c9a646;
    margin-bottom: 20px;
}

/* Intro */
.philosophy-intro {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Paragraph */
.about-philosophy p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #333;
}

/* Summary */
.philosophy-summary {
    margin-top: 20px;
}

/* Optional decorative curve (bottom-left) */
.about-philosophy::after {
    content: "";
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    border-right-color: transparent;
    border-top-color: transparent;
}

/* ======== about-different ========== */

.about-different {
    background: #f8f9fa;
}

.about-different h2 {
    margin-bottom: 15px;
    color: #0f3d2e;
}

.different-highlight {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #145c43;
}

.about-different p {
    margin: 0 auto 10px;
    line-height: 1.8;
    color: #555;
}

/* ====== about-values ======== */
.about-values {
    padding: 80px 0;
    background: #ffffff;
}

.about-values h2 {
    margin-bottom: 15px;
    color: #0f3d2e;
}

.values-intro {
    margin-bottom: 30px;
    color: #555;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 15px;
}

.values-list span {
    background: #f1f5f4;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 0.95rem;
    color: #d2b77b;
}

/* ======== about-approach ===============*/

.about-approach {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-approach h2 {
    margin-bottom: 15px;
    color: #0f3d2e;
}

.approach-highlight {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #145c43;
}

.about-approach p {
    max-width: 700px;
    margin: 0 auto 10px;
    line-height: 1.8;
    color: #555;
}

/* ============ founder =============*/
.about-founders {
    background: linear-gradient(145deg, #fdf8ee, #f0e6c8);
}

.about-founders .container {
    max-width: 1200px;
    margin: 0 auto;
}

.founder-header {
    text-align: left;
    max-width: 100%;
    margin-bottom: 20px;
}

.founder-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.founder-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1;
}

.founder-grid {
    display: grid;
    gap: 10px;
}

.founder-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 50px;
    align-items: start;
}

.founder-img {
    position: relative;
}

.founder-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    transition: filter 0.3s ease;
}

.founder-item:hover .founder-img img {
    filter: grayscale(0%);
}

.founder-text {
    padding-top: 8px;
}

.founder-quote {
    font-size: 1.3rem;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.5;
    margin-bottom: 16px;
    font-style: italic;
}

.founder-text > p:last-of-type {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.founder-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .about-founders {
        padding: 60px 20px;
    }

    .founder-header h2 {
        font-size: 2rem;
    }

    .founder-header {
        margin-bottom: 40px;
    }

    .founder-item {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .founder-img img {
        height: 220px;
    }

    .founder-quote {
        font-size: 1.1rem;
    }
}
