:root{
    color: black;
    color: white;
    color: red;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: none;
    transition: 0.5s linear;
}

a{
    color: black;
    text-decoration: none;
    margin: 10PX;
}

.logo-wrapper {
    padding: 20px 0px;
    display: flex;
    align-items: center;
}

/*search */
/* CSS untuk menempatkan simbol pencarian dan input sejajar */
.input-group {
    position: absolute;
    top: 25px;
    right: 0;
    display: flex;
    align-items: center; /* Mengatur elemen berdampingan secara vertikal */
}

/* Sesuaikan tampilan input sesuai kebutuhan Anda */
.input-group input {
    /* Atur tampilan input sesuai kebutuhan */
    border: none;
    border-radius: 0;
    padding: 5px 10px;
    width: 100%;
}

/* Sesuaikan tampilan simbol pencarian sesuai kebutuhan Anda */
.input-group .btn {
    /* Atur tampilan tombol pencarian sesuai kebutuhan */
    background-color: red; /* Warna latar belakang */
    border: none;
    border-radius: 0;
    padding: 5px 10px;
    color: white; /* Warna teks */
}

/*menu berita*/
.menu {
    background: red;
    border: 2px solid red; /* Menambahkan garis merah sekitar menu */
    padding: 15px;
}

.menu-items {
    list-style: none;
    margin: 0;
    padding: 10;
    display: flex; /* Menggunakan display: flex; untuk menyusun item horizontal */
    justify-content: space-between; /* Membuat spasi di antara item */
}

.menu-items a {
    text-decoration: none;
    color: black;
}

.menu-items a:hover {
    color: white;
}

/* Gaya tautan dropdown */
.dropdown-menu {
    list-style: none;
    padding: 0;
    position: absolute;
    background: red;
    display: none;
    z-index: 1; /* Mengatur urutan tampilan */
}



.menu-items li:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    display: block;
    padding: 10px 15px;
}

.dropdown-menu a {
    color: #333;
    text-decoration: none;
    padding: 20px 15px;
}

.dropdown-menu a:hover {
    color: #fff;
}

/*EVENT*/
.container-event{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.item-container {
    position: relative;
    margin: 24px;
    width: 320px;
    height: 570px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.img-container,
.body-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.img-container img {
    width: 100%;
}

.body-container {
    position: relative;
}

.overlay {
    position: relative;
    width: 100%;
    height: 400px;
    background-color: rgb(237, 148, 148);
    opacity: 0;
    transition: height linear 0.4s, opacity linear 0.2s;
}

.item-container:hover .overlay {
    opacity: 1;
    height: 150px;
}

.event-info {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8px;
}

.title,
.price {
    color: #ce2029;
    font-size: 1.5em;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 12px;
}

.info {
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.separator {
    width: 20%;
    height: 6px;
    background-color: #17537a;
    margin-bottom: 16px;
}

.additional-info {
    border-top: 1px solid #bbb;
    margin-top: 12px;
    padding: 28px;
    padding-bottom: 0;
}

.additional-info .info {
    font-size: 0.9em;
    margin-bottom: 20px;
    text-align: center;
}

.info i {
    color: #18537a;
    font-size: 1.1em;
    margin-right: 4px;
}

.info span {
    color: #18537a;
    font-weight: bolder;
}

.action {
    color: #fff;
    border: 3px solid #fff;
    background-color: transparent;
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    outline: none;
    cursor: pointer;
    padding: 12px;
    text-transform: uppercase;
    font-size: 1.3em;
    font-weight: bold;
    letter-spacing: 2px;
    transition: background-color 0.4s, top 0.4s;
}

.item-container:hover .action {
    top: 50px;
}

.action:hover {
    background-color: rgba(255, 255, 255, 0.2);
}