@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


body{
    background-image: url('https://res.cloudinary.com/dwg5g7rov/image/upload/v1748589312/azpam7x3omg0ci4pgrus.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    padding: 0.5rem;
}

.container {
    background-image: linear-gradient(90deg, #836119, #ad7f19, #ffde9a, #ad7f19, #836119);
    border: 3px solid #c59420;
    width: 45rem;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 1rem;
    max-width: 100%;
    color: white;
}

.content{
    padding-inline: 1rem;
    text-align: justify;
}

h1{
    color: rgb(255, 255, 0);
    font-size: 1.5rem;
    font-weight: bold;
}

p,ul,ol,li{
        color: rgb(255, 255, 255);
        font-size: .9rem;
        font-weight: 400;
    }
a{
    color: white;
    font-weight: bold;
}

.banner-promo{
    width: 100%;
    border-radius: 0.5rem;
}

.banner{
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.hot-info{
    background-color: black;
    color: white;
    font-weight: 700;
}

.btn-row {
    margin-top: 0rem;
    margin-bottom: 1rem;
}

.btn{
    border: 2px solid #c59420;
    color: #e4b454;
    font-weight: 700;
    width: 100%;
    font-size: 1rem;
    border-radius: 1cm;
    background: linear-gradient(150deg, rgb(0, 0, 0) 21%, rgb(0, 0, 0) 33%, rgb(128, 128, 128) 44%, rgb(0, 0, 0) 60%, rgb(0, 0, 0) 73%, rgb(0, 0, 0) 85%);
    background-size: 400% 400%;
    animation: gradient 10s ease infinite;
    box-shadow: inset 0px 0px 8px black;
    text-shadow: 1px 1px black;
}

.image-promo{
    width: 100%;
    height: 100%;
}

.img-sosmed {
        position: fixed;
        bottom: 25px;
        left: 5px;
        z-index: 99;
        opacity: 0.98;
        border-radius: 40px;
    }

.image-promo:hover {
  border: 1px solid rgb(212, 181, 115);
}

.promo-content{
    border: 1px solid #d4b573;
}

.accordion-item{
    background-image: linear-gradient(90deg, #836119, #ad7f19,#836119);
    color: white;
    box-shadow: inset 0px 0px 25px black;
}

.accordion-body{
    padding: 1.5rem;
}

.footer{
    text-align: center;
    padding: 0.5rem;
    font-weight: 700;
    color: rgb(0, 0, 0);
    font-size: 12px;
    text-transform: uppercase;
}


@media screen and (max-width: 480px) {

    body{
        background-color: black;
        padding: 0.5rem;
    }

    .container {
        background-image: linear-gradient(90deg, #836119, #ad7f19, #ffde9a, #ad7f19, #836119);
        border: 3px solid #c59420;
        width: 45rem;
        height: 100%;
        margin-left: auto;
        margin-right: auto;
        border-radius: 1rem;
        max-width: 100%;
    }

    .content {
       padding-inline: 0.5rem;
       padding-top: 3px;
       text-align: justify;
    }

    h1{
        color: rgb(255, 255, 0);
        font-size: 1.4rem;
        font-weight: bold;
    }

    p,ul,ol,li{
        color: rgb(255, 255, 255);
        font-size: 0.8rem;
        font-weight: 600;
    }

    a{
        color: white;
        font-weight: bold;
    }

    .banner-promo{
        width: 100%;
        height: 15px;
    }

    .banner{
        border-top-left-radius: 1rem;
        border-top-right-radius: 1rem;
    }

    .hot-info{
        background-color: black;
        color: white;
        font-weight: 700;
    }
    
    .btn-row {
        margin-top: 0rem;
        margin-bottom: 1rem;
    }

    .btn {
        background: linear-gradient(150deg, rgb(0, 0, 0) 21%, rgb(0, 0, 0) 33%, rgb(128, 128, 128) 44%, rgb(0, 0, 0) 60%, rgb(0, 0, 0) 73%, rgb(0, 0, 0) 85%);
        border: 2px solid #c59420;
        animation: gradient 10s ease infinite;
        color: #e4b454;
        font-weight: 700;
        width: 100%;
        font-size: 0.8rem;
        border-radius: 1cm;
        text-shadow: 1px 1px black;
        background-size: 400% 400%;
        box-shadow: inset 0px 0px 8px black;
    }
    
    .img-sosmed {
        position: fixed;
        bottom: 25px;
        left: 5px;
        z-index: 99;
        opacity: 0.98;
        border-radius: 40px;
    }

    .image-promo{
        width: auto;
        height: 30px;
    }
    
    .content-image{
        width: 100%;
        height: 100%;
    }
    
    .col-md-4:nth-child(6) {
        display: none;
    }
    
    .image-promo:hover {
      border: 1px solid rgb(212, 181, 115);
    }

    .promo-content{
        border: 1px solid #d4b573;
    }

    .accordion-item{
        background-image: linear-gradient(90deg, #836119, #ad7f19, #836119);
        color: white;
        box-shadow: inset 0px 0px 25px black;
    }

    .accordion-body{
        padding: 1.5rem;
    }

    .footer{
        text-align: center;
        padding: 0.5rem;
        color: rgb(0, 0, 0);
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
    }
}


