.hero-section {
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
    height: 80vh;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Ubah angka terakhir untuk mengatur transparansi */
    z-index: 1;
}


.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Overlay gelap */
}

.top-bar {
    background-color: #d35400 !important; /* Orange gelap dengan !important */
}

.top-bar {
    font-size: 0.9rem;
}

    /* public/css/style.css */
.event-details {
    background-color: #f9f9f9;
}

.event-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.event-icon {
    color: #e74c3c;
}

    /* public/css/style.css */
.image-box {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.image-box img {
    border-radius: 8px;
    width: 100%;
    height: auto;
}

.image-box h5 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

.image-box p {
    font-size: 0.9rem;
    color: #666;
}

.box-container {
    border: 1px solid #ccc; /* Warna border */
    padding: 20px; /* Jarak dalam kotak */
    margin: 10px; /* Jarak antar kotak */
    text-align: center; /* Pusatkan teks */
    border-radius: 5px; /* Membuat sudut border sedikit melengkung */
}


    /* Gaya untuk judul dan tata letak */
.container h2 {
    margin-bottom: 20px;
    font-size: 2em;
    font-weight: bold;
}

/* Gaya untuk pembicara */
.speaker {
    text-align: center;
    margin-bottom: 20px;
}

/* Gaya untuk gambar pembicara dalam lingkaran */
.speaker-img {
    width: 150px; /* Atur lebar gambar seragam */
    height: 150px; /* Atur tinggi gambar seragam */
    margin: 0 auto; /* Pusatkan gambar */
    overflow: hidden; /* Sembunyikan bagian gambar yang keluar dari area */
    border-radius: 50%; /* Membuat gambar berbentuk lingkaran */
    border: 3px solid #ccc; /* Tambahkan border */
}

.speaker-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Memastikan gambar sesuai dengan kotak, dengan proporsi yang benar */
}


/* Gaya untuk nama dan deskripsi pembicara */
.speaker h4 {
    margin-top: 10px;
    font-size: 1.25em;
    font-weight: bold;
}

.speaker p {
    font-size: 0.9em;
    color: #666;
}


    /* Gaya untuk judul dan tata letak umum */
.container h2 {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Gaya untuk daftar jadwal */
.schedule-list {
    list-style-type: none;
    padding: 0;
}

/* Gaya untuk setiap item jadwal */
.schedule-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #ddd; /* Garis bawah untuk memisahkan setiap item */
}

.schedule-item h4 {
    margin: 0;
    font-size: 1.25em;
    font-weight: bold;
    width: 150px; /* Atur lebar waktu untuk perataan */
}

.schedule-item p {
    margin: 0;
    padding-left: 20px;
    font-size: 1em;
    color: #666;
}

/* Gaya tambahan untuk memberi jeda antar item */
.schedule-item:not(:last-child) {
    margin-bottom: 10px;
}
