@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
}

body {
    scroll-behavior: smooth;
}

.navbar {
    box-shadow: 5px 3px 15px 5px rgba(0, 0, 1, 0.032);
}

.navbar img {
    width: 30px;
    height: 30px;
    margin-left: 10px;
}


.navbar-toggler {
    border: none;
    outline: none;
    box-shadow: none;
}

.navbar-toggler:focus,
.navbar-toggler:active {
    border: none;
    outline: none;
    box-shadow: none;
}

.icon {
    position: fixed;
    right: 0;
    bottom: 0;
    margin-bottom: 30px;
    margin-right: 25px;
    z-index: 11111;
}

.icon-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.icon-item .item {
    padding: 10px;
    background-color: #000;
    border-radius: 50%;
    cursor: pointer;
}

.icon-item svg {
    width: 25px;
    height: 20px;
    color: white;
}


.navbar-nav li {
    border: none;
}

.navbar-nav li a {
    font-family: "Noto Sans", sans-serif;
    font-size: 13px;
}

.navbar .sign-in {
    font-family: "Noto Sans", sans-serif;
    font-size: 13px;
    font-weight: bold;
}

.navbar .container .custom-offcanvas {
    width: 70% !important;
    /* 50% layar */
    max-width: 70% !important;
    /* pastikan max width juga 50% */
}

.navbar-nav .list-group-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: #000;
    transition: width 0.3s ease-in-out;
}

.navbar-nav .list-group-item:hover::after {
    width: 100%;
}

.navbar-nav .list-group-item:hover::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background-color: #000;
    animation: slideIn 0.3s forwards;
}

@keyframes slideIn {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.navbar-nav ul li a {
    color: black;
    text-decoration: none;
}

.navbar-nav svg {
    color: black;
}

#home {
    width: 100%;
    height: auto;
}

#home .container {
    width: 100%;
}

#home .container .logo-brand {
    aspect-ratio: 20/6;
    width: 50%;
    margin-bottom: 30px;
}

#home .container .img-katalog {
    aspect-ratio: 16/9;
    object-fit: cover;
    width: 100%;
}

#home .container .container-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

#home .container .container-item .title {
    font-size: 50px;
}

#home .container .container-item .title-item {
    font-size: 100px;
    font-weight: bold;
}

#home .container .container-item .btn {
    width: 100px;
}

.line {
    display: none;
}

#content {
    margin-top: 40px;
    height: auto;
}

#content .brand {
    font-size: 70px;
    font-weight: bold;
}

#content .brand-title {
    font-family: "Noto Sans", sans-serif;
    font-weight: 600;
}

#content .container .row {
    position: relative;
}

#content .container .row .slide {
    padding: 10px;
    width: auto;
    border-radius: 8px;
    position: absolute;
    bottom: 100px;
    left: 320px;
    z-index: 111;
    color: #fff;
    background-color: black;
}

.img-event-wrapper {
    position: relative;
}

.img-event-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    gap: 16px;
    padding-bottom: 10px;
}

.img-event-scroll::-webkit-scrollbar {
    display: none;
}

.img-event-slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    position: relative;
    border-radius: 10px;
}

.img-event-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.img-event-slide:hover .img-overlay {
    opacity: 1;
}

.overlay-text {
    font-size: 20px;
    text-align: center;
    padding: 0 10px;
}

.scroll-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.scroll-dots .dot {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.scroll-dots .dot.active {
    background-color: #333;
}


#about {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

#about .header {
    margin-top: 20px;
    text-align: center;
    margin-bottom: 30px;
}

#about .header .brand {
    font-size: 70px;
    font-weight: bold;
}

#about .header .brand-title {
    font-family: "Noto Sans", sans-serif;
    font-weight: 600;
    margin-top: -15px;
}

#about video {
    width: 100%;
    aspect-ratio: 10/6;
    object-fit: cover;
    margin-top: 20px;
    margin-bottom: 20px;
}

#product .header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#product .header .brand {
    font-size: 70px;
    font-weight: bold;
    text-align: center;
}

#product .header .brand-title {
    font-family: "Noto Sans", sans-serif;
    font-weight: 600;
    text-align: center;
    margin-top: -15px;
}

#product .container {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.container-fluid .form-select {
    width: 10%;
}

.image-with-text {
    position: relative;
    display: inline-block;
    overflow: hidden;
    margin-top: 30px;
    /* Menyembunyikan teks saat tidak di-hover */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(61, 55, 32, 0.5);
    /* Ubah ke transparansi yang diinginkan */
    color: white;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    /* Menengahkan horizontal */
    align-items: center;
    /* Menengahkan vertical */
    transform: translateX(-100%);
    /* Mulai dari luar layar kiri */
    transition: transform 0.3s;
    /* Transisi perubahan transformasi */
    margin-bottom: 30px;
}

.image-with-text:hover .overlay {
    transform: translateX(0);
    /* Geser ke posisi tengah */
}

.image-with-text img {
    width: 350px;
    height: 400px;
}


.image-with-text .text .brand {
    font-size: 50px;
}

.event .header {
    display: flex;
    flex-direction: column;
    align-items: end;
    margin-bottom: 30px;
    margin-top: 10px;
}

.event .container .img-event {
    aspect-ratio: 10/5;
    object-fit: cover;
    width: 100%;
}

#about2 .container {
    margin-bottom: 40px;
}

#about2 .container .about-img {
    width: 50%;
}

#about2 .container .text-about {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

#about2 .container .text-about .brand {
    font-size: 60px;
    font-weight: bold;
}

#about2 .container .text-about img {
    margin-bottom: 20px;
    aspect-ratio: 16/9;
    object-fit: cover;
    width: 100%;
}

#about2 .container .text-about .title-text {
    text-align: center;
    font-family: "Noto Sans", sans-serif;
    font-weight: 600;
    margin-bottom: 50px;
    margin-top: -15px;
}

.footer {
    width: 100%;
    height: auto;
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    padding-bottom: 20px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.footer .container {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.footer .footer-item p {
    opacity: 0.5;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: "Noto Sans", sans-serif;
}

.footer .container a {
    color: #000;
    text-decoration: none;
}

.container-fluid {
    width: 100%;
    gap: 10px;
    display: flex;
    justify-content: end;
}

#container-produk {
    width: 100%;
    padding: 10px;
    height: auto;
    display: flex;
    justify-content: center;
}

#container-produk .article {
    width: 100%;
}

#container-produk .image-with-text {
    position: relative;
    display: inline-block;
    overflow: hidden;
    margin-top: 30px;
    /* Menyembunyikan teks saat tidak di-hover */
}

#container-produk .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(61, 55, 32, 0.5);
    /* Ubah ke transparansi yang diinginkan */
    color: white;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    /* Menengahkan horizontal */
    align-items: center;
    /* Menengahkan vertical */
    transform: translateX(-100%);
    /* Mulai dari luar layar kiri */
    transition: transform 0.3s;
    /* Transisi perubahan transformasi */
    margin-bottom: 30px;
}

#container-produk .image-with-text:hover .overlay {
    transform: translateX(0);
    /* Geser ke posisi tengah */
}

#container-produk .image-with-text img {
    width: 300px;
    height: 300px;
}


#container-produk .image-with-text .text .brand {
    font-size: 50px;
}

.image-with-text .text .brand-title {
    font-family: "Noto Sans", sans-serif;
}

#co {
    width: 100%;
    height: auto;
}


#co .container {
    padding: 30px;
    display: flex;
    justify-content: center;
    gap: 80px;
}

#co .left {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-direction: column;
}

#co .left .detail {
    display: flex;
    gap: 10px;
}



#co .right h1 {
    font-size: 30px;
}


#co .right .brand-item {
    margin-bottom: 30px;
}

#co .right .size {
    font-size: 20px;
    font-weight: bold;
    margin-top: 30px;
}

#co .right .size-item {
    display: flex;
    gap: 10px;
}

#co .right {
    width: 100%;
}

#co .right .size-item p {
    padding-left: 10px;
    padding-right: 10px;
    background-color: #ababab;
    border-radius: 4px;
    font-weight: 500;
}

#co .right .price {
    width: 100%;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.rating {
    unicode-bidi: bidi-override;
    direction: rtl;
    text-align: left;
}

.rating .star {
    display: inline-block;
    padding: 5px;
    cursor: pointer;
    color: gray;
    /* Warna default */
}

.rating .star:hover,
.rating .star.clicked {
    color: gold;
    /* Warna saat dihover atau diclick */
}

#co .bi-star {
    color: gold;
}

#co .bi-star-fill {
    color: gold;
}

#co .review {
    margin-bottom: 40px;
}

#co .review .header {
    display: flex;
    align-items: center;
    gap: 10px;
}

#co .review .header p {
    padding-top: 15px;
}

#co .review .header img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

#co .right .price h5 {
    font-size: 20px;
}


#co .pindah {
    display: flex;
    gap: 30px;
}

#co .button {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    gap: 10px;
}

#co .button-size {
    display: flex;
    gap: 10px;
}

#co .size-button {
    border: none;
    background-color: white;
    outline: #000 1px solid;
}

.accordion {
    width: 100%;
}

#co .accordion-body form .btn {
    width: 100px;
}

.image-with-text {
    position: relative;
    display: inline-block;
    /* Untuk memastikan bahwa container hanya menempati ruang yang diperlukan oleh gambar */
}

.image-container {
    position: relative;
    /* agar posisi teks sold out bisa diatur relatif terhadap gambar */
}

.sold-out {
    position: absolute;
    top: 50%;
    /* atur posisi vertikal ke tengah */
    left: 50%;
    /* atur posisi horizontal ke tengah */
    transform: translate(-50%, -50%);
    /* atur ulang posisi ke tengah */
    background-color: rgba(61, 55, 32, 0.5);
    /* warna latar belakang */
    color: #fff;
    /* warna teks */
    padding: 5px 10px;
    /* padding teks */
    font-weight: bold;
}

.born-img {
    display: none;
}

.top-ten th {
    font-family: 'Noto Sans', sans-serif;
    font-weight: bold;
}

.top-ten td {
    font-family: 'Noto Sans', sans-serif;
    font-size: 12px;
}

@media screen and (max-width: 430px) {

    #myVideo,
    #soundButton {
        display: none;
    }

    .born-img {
        display: block;
        aspect-ratio: 9/16;
        object-fit: cover;
        width: 100%;
        margin-bottom: 20px;
    }

    .icon {
        margin-top: 500px;
        margin-right: -1px;
        margin-right: 10px;
    }

    .navbar .container p {
        padding-left: 210px;
    }

    .navbar .container form {
        padding-left: 120px;
        padding-bottom: 20px;
    }

    .navbar img {
        width: 20px;
        height: 27px;
    }

    .navbar .sign-in {
        margin-left: 10px;
        margin-top: 20px;
    }

    .link {
        justify-content: center;
        align-items: center;
        padding-left: 0;
    }

    #home .container .container-item {
        width: 100%;
    }

    #home .container .container-item .title {
        font-size: 20px;
    }

    #home .container .container-item .title-item {
        font-size: 35px;
    }

    #home .container .container-item .btn {
        width: 80px;
    }

    #content .container .row .slide {
        display: none;
    }

    #about .header .brand {
        font-size: 80px;
        font-weight: bold;
    }

    #about .header .brand-title {
        font-size: 10px;
    }

    #about video {
        width: 100%;
        aspect-ratio: 16/10;
        object-fit: cover;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    #product .header .brand-title {
        font-size: 10px;
    }

    .image-with-text img {
        width: 100%;
        height: auto;
    }

    .event .header {
        margin-right: 5px;
    }

    .event .header .brand-title {
        font-size: 10px;
        text-align: end;
        width: 90%;
    }

    .event .container img {
        aspect-ratio: 14/9;
    }

    #about2 .container {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    #about2 .container .text-about .title-text {
        font-size: 10px;
        width: 90%;
    }

    #about2 .container .about-img {
        width: 100%;
    }

    #container-produk .image-with-text {
        margin-left: 0;
    }

    #container-produk .image-with-text img {
        width: 270px;
        height: 270px;
    }

    #container-produk .image-with-text .text .brand-title {
        font-size: 10px;
    }

    #container-produk .image-with-text .text p {
        font-size: 8px;
    }

    #container-produk .image-with-text .text .brand {
        font-size: 20px;
    }

    #co .container {
        flex-direction: column;
    }

    #co .left {
        flex-direction: column;
    }

    #co .left .detail {
        flex-direction: row;
    }

    #co .container #main-photo {
        width: 100%;
    }

    #co .left .detail img {
        width: 60px;
    }
}
