/* src/css/story.css - THE WEAVING CARDS (Nude Theme Adaptation) */

/* SELECTOR UTAMA ID #story */
#story {
    position: relative;
    z-index: 2;
    
    /* --- THEME CHANGE --- */
    /* Warna Dasar: Putih Gading (Card Color) */
    background-color: var(--card-bg-color) !important; 
    
    /* Hapus background image gelap/gradasi lama */
    background-image: url('../assets/images/bg-story.webp');

    /* Agar gambar memenuhi seluruh area panel kanan dari atas ke bawah */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    border: 1px solid var(--border-color) !important; 
    
    /* Shadow Coklat Lembut */
    box-shadow: 0 15px 40px var(--shadow-color) !important;
    
    /* Padding Container */
    margin-top: 0;
    margin-bottom: 3rem !important;
    border-radius: 20px;
    overflow: hidden;
}

.story-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 1rem 5rem 1rem;
}

/* HEADER */
.story-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.story-title {
    font-family: var(--sacramento);
    font-size: 3rem;
    
    /* --- THEME CHANGE --- */
    color: var(--heading-text-color); /* Coklat Bata */
    
    margin-bottom: 5px;
    text-shadow: 0 2px 10px var(--shadow-color);
}

.story-subtitle {
    font-size: 0.8rem;
    opacity: 0.7;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    color: var(--main-text-color);
}

/* TIMELINE AREA */
.timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 20px 0;
}

/* GARIS TENGAH (SPINE) */
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    
    /* Gradasi Mocca */
    background: linear-gradient(to bottom, 
        transparent, 
        var(--accent-color), 
        var(--accent-color), 
        var(--accent-color), 
        transparent
    );
    transform: translateX(-50%);
    
    /* Shadow garis disesuaikan */
    box-shadow: 0 0 15px rgba(161, 136, 127, 0.4); 
    z-index: 0;
}

/* ITEM WRAPPER */
.story-item {
    position: relative;
    width: 100%;
    display: flex;
    z-index: 1;
}

/* KARTU UTAMA */
.story-card {
    position: relative;
    width: 85%;
    
    /* --- THEME CHANGE --- */
    /* Background kartu putih bersih, bukan transparan gelap */
    background: #FFFFFF; 
    
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 0;
    overflow: hidden; 
    
    /* Shadow lembut */
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* LOGIKA SELANG-SELING */
.story-item:nth-child(odd) { justify-content: flex-start; }
.story-item:nth-child(odd) .story-card {
    border-top-right-radius: 4px; 
    border-bottom-left-radius: 4px;
}

.story-item:nth-child(even) { justify-content: flex-end; }
.story-item:nth-child(even) .story-card {
    border-top-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

/* FOTO */
.card-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center 20%; 
    border-bottom: 1px solid var(--border-color);
    display: block; 
}

/* KONTEN TEKS (AREA BAWAH) */
.card-content {
    /* --- THEME CHANGE --- */
    /* Background Putih/Krem, bukan Biru Gelap */
    background: var(--card-bg-color);
    
    padding: 25px 20px; 
    text-align: left;
    border-top: 1px solid var(--border-color);
}

.story-date {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    
    /* --- THEME CHANGE --- */
    color: var(--card-bg-color); /* Teks Putih Gading */
    background-color: var(--accent-color); /* Background Mocca */
    
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.story-item-title {
    font-family: var(--sacramento);
    font-size: 1.8rem;
    font-weight: 700;
    
    /* --- THEME CHANGE --- */
    color: var(--heading-text-color); /* Coklat Bata Pudar */
    
    margin-bottom: 10px;
    line-height: 1.3;
}

.story-desc {
    font-size: 1rem;
    line-height: 1.6;
    
    /* --- THEME CHANGE --- */
    /* Ubah teks abu-abu terang menjadi Coklat Tua */
    color: var(--main-text-color);
}

/* ANIMASI SCROLL */
.story-item { opacity: 0; transition: all 1s ease; }
.story-item:nth-child(odd) { transform: translateX(-30px); }
.story-item:nth-child(even) { transform: translateX(30px); }

.story-item.reveal { opacity: 1; transform: translateX(0); }