/* marquee */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background: var(--red-color)
}

.marquee {
    width: 100%;
}

marquee {
    font-size: 30px;
    color: white;
    font-style: italic;
    font-weight: bold;
}

/* RAGAMBACA SECTION */
.judul-bacaan {
    color: var(--red-color);
    font-family: var(--font-secondary);
    font-size: 100px;
    text-align: center;
    margin-top: 20px;
    font-weight: normal;
}

.carousel-container {
    position: relative;
    max-width: 1100px;
    margin: auto;
}

.carousel-inner {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 16px;
}

.carousel-inner::-webkit-scrollbar {
    display: none;
}

.book-div {
    background-color: var(--white-color);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 16px;
    width: 240px;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.2s;
}

.book-div:hover {
    transform: translateY(-4px);
}

.book-card img {
    width: 100%;
    border-radius: 12px;
}

.btn-read-now {
    background-color: var(--yellow-color);
    color: var(--white-color);
    border: none;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 14px;
}

.arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -10px;
    background-color: var(--white-color);
    border: 1px solid #ccc;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.explore-more {
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: bold;
    color: #0d6efd;
    font-size: 18px;
    display: flex;
    flex-direction: column;
}

.explore-more span {
    font-size: 32px;
}

.modal-body img {
    width: 150px;
    height: auto;
    margin-bottom: 16px;
}

.like-icon {
    font-size: 24px;
    color: #ccc;
    cursor: pointer;
    transition: color 0.3s;
}

.like-icon.liked {
    color: #a92620;
}

.btn-baca {
    background-color: var(--yellow-color);
    color: var(--primary-color);
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    width: 100%;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.btn-baca:hover {
    background-color: #e0b72f;
}

.modal-content {
  max-width: 400px;
  /* max-height: 500px; */
  margin: auto;
  border-radius: 16px;
}

.modal-img {
  width: 140px;
  border-radius: 12px;
  display: block;
  margin: 0 auto 10px auto;
}
