/* ========================================
   STORY SECTION - EXPERIENCE
   ======================================== */

.story-section {
    padding: 100px 0;
    background-image: url('../../image/bg/wall.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: #0f0f0f;
    position: relative;
}

/* .story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
} */

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.story-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-primary);
    width: fit-content;
}

.story-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.story-description {
    font-size: 1.05rem;
    color: var(--text-light-soft);
    line-height: 1.8;
    font-weight: 400;
}

/* Timeline */
.story-timeline {
    border-left: 2px solid var(--accent-primary);
    padding-left: 25px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 10px;
}

.timeline-item {
    position: relative;
    transition: transform 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(5px);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -31px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary) 0%, #f59e0b 100%);
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
}

.timeline-year {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    display: block;
    margin-bottom: 4px;
}

.timeline-description {
    font-size: 0.95rem;
    color: var(--text-light-soft);
    line-height: 1.6;
}

/* Story Image */
.story-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-image-frame {
    border: 3px solid rgba(245, 158, 11, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.story-image-frame:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.story-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.story-image-frame:hover .story-image {
    transform: scale(1.05);
}

/* ========================================
   RESPONSIVE STORY SECTION
   ======================================== */

@media (max-width: 1024px) {
    .story-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .story-content {
        text-align: center;
        align-items: center;
    }

    .story-image-wrapper {
        order: -1;
    }

    .story-title {
        font-size: clamp(1.8rem, 4vw, 2.8rem);
    }
}

@media (max-width: 768px) {
    .story-section {
        padding: 60px 0;
    }

    .story-container {
        gap: 40px;
    }

    .story-title {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
    }

    .story-description {
        font-size: 1rem;
    }

    .story-timeline {
        padding-left: 20px;
    }

    .timeline-item::before {
        left: -26px;
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .story-section {
        padding: 40px 0;
    }

    .story-container {
        padding: 0 4%;
        gap: 30px;
    }

    .story-title {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
    }

    .story-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .timeline-item:hover {
        transform: none;
    }
}
