/* src/css/time.css (VERSI ZIG-ZAG FINAL) */
.time {
    padding: 4rem 1rem 10rem; 
    max-width: 900px;
    margin: 4rem auto;

    background-image: url('../assets/images/ariefazizah/bg-time.png');
    background-size: cover;
    background-position: center;
    color: var(--main-text-color);
    position: relative;
    overflow: hidden;
    border-radius: 20px; /* Sudut melengkung */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1); /* Efek bayangan */
}
.time-header-card {
    text-align: center;
    margin-bottom: 2.5rem;
}
.time-header-card h2 {
    font-family: var(--sacramento);
    font-size: var(--fontSize-heading-base);
    font-weight: 400;
    color: var(--main-text-color);
}
.time-header-card p {
    padding: 0 1rem;
    margin-top: 1rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--main-text-color);
}
.time-ticket-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.ticket-card {
    width: 100%;
    max-width: 550px;
    height: 220px;
    margin: 0 auto;
    display: flex;
    background-color: var(--card-bg-color);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    border-radius: 12px;
    overflow: hidden;
}
.ticket-info {
    width: 70%;
    padding: 1.5rem;
    color: var(--main-text-color);
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.ticket-lottie {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4e1010;
    position: relative;
    border-left: 2px dashed rgba(255, 255, 255, 0.3);
}
.ticket-lottie::before,
.ticket-lottie::after {
    content: '';
    position: absolute;
    left: -12px;
    width: 24px;
    height: 24px;
    background-color: var(--main-bg-color);
    border-radius: 50%;
}
.ticket-lottie::before { top: -12px; }
.ticket-lottie::after { bottom: -12px; }

/* --- ATURAN KUNCI UNTUK ZIG-ZAG --- */
.ticket-card.reversed {
    flex-direction: row-reverse; 
}
.ticket-card.reversed .ticket-lottie {
    border-left: none;
    border-right: 2px dashed rgba(255, 255, 255, 0.3);
}
.ticket-card.reversed .ticket-lottie::before,
.ticket-card.reversed .ticket-lottie::after {
    left: auto;
    right: -12px;
}
/* --- Akhir Aturan Zig-Zag --- */

.event-title { font-size: 1.1rem; font-weight: 700; }
.event-date, .event-time, .event-address {
    font-size: 0.8rem;
    line-height: 1.5;
    margin-top: 0.5rem;
    opacity: 0.8;
}
.map-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: #4e1010;
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease;
}
.map-button:hover { transform: scale(1.05); }

.ticket-card.reversed .ticket-info {
    align-items: flex-end;
    text-align: right;
}

.time::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 250px; /* Sesuaikan ukuran ornamen */
    height: 250px; /* Sesuaikan ukuran ornamen */
    background-image: url('../assets/images/ariefazizah/ornamen-top-time.png'); /* <-- GANTI DENGAN PATH GAMBAR ANDA */
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
    z-index: 0;
}

.time::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background-image: url('../assets/images/ariefazizah/ornamen-bot-time.png');
    background-size: contain;
    background-position: bottom center;
    background-repeat: no-repeat;
    will-change: transform;
    z-index: -1;
}