/* Gaya Dasar */

html {
    height: 100%;
}

body {
    font-family: "Montserrat", sans-serif;
    background: url("../assets/background.jpg") center/cover;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh; /* Ubah dari height: 100vh ke min-height: 100vh */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 100%;
    height: auto;
    justify-content: center;
    display: flex;
    align-items: center;
    margin-bottom: 5%;
}

.line {
    width: 100%; /* Lebar garis */
    height: 2px; /* Ketebalan garis */
    background-color: #ff5900; /* Warna garis */
    margin: 10px auto; /* Margin atas bawah dan pusatkan horizontal */
}

.container {
    background-color: transparent;
    border: 2px solid #ff5900;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 800px;
    height: 600px;
    display: flex;
}

/* Bagian Kiri (Informasi Umum) */

.left-section {
    background: url("https://images.unsplash.com/photo-1506318137073-c95012260f24?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxzZWFyY2h8Mnx8bWVldGluZyUyMHJvb218ZW58MHx8MHx8&w=1000&q=80")
        center/cover;
    color: #ff5900;
    padding: 30px;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Pusatkan vertikal */
    align-items: center; /* Pusatkan horizontal */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.left-section h1 {
    font-size: 3em;
    margin-bottom: 10px;
    font-weight: bold;
    color: #ff7300;
    text-align: center;
}

.left-section p {
    font-size: 1.4em;
    margin-bottom: 20px;
    text-align: center;
    width: 100%; /* Tambahkan ini */
}

.left-section .time {
    font-size: 6em;
    font-weight: bold;
    text-align: center;
    width: 100%; /* Tambahkan ini */
    color: white;
}

/* Bagian Kanan (Jadwal) */

.right-section {
    background-color: rgba(255, 89, 0, 0.5);
    color: white;
    padding: 5%;
    width: 40%;
    display: flex;
    flex-direction: column;
    height: 90%;
}

.schedule-header {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5em;
    font-weight: bold;
}

.time-slot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    flex: 1;
}

.time-slot.past {
    color: white;
    opacity: 0.5;
}

.time-slot:last-child {
    border-bottom: none;
}

.time {
    font-weight: bold;
}

.event {
    text-align: right;
    font-size: 0.9em;
}

.event strong {
    display: block;
    font-weight: bold;
}

.event span {
    font-size: 0.8em;
}
