body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    overflow-x: hidden;
    background-color: white;
  }

.skeleton{
    animation: skeleton-loading 1s linear infinite alternate;
}

.skeleton-text{
    width: 100%;
    height: .5rem;
    margin-bottom: .25rem;
    border-radius: .150rem;
}

.skeleton-text:last-child{
    margin-bottom: 0;
    width: 80%;
}

@keyframes skeleton-loading {
    0%{
        background-color: hsl(200, 20%, 70%);
    }
    100%{
        background-color: hsl(200, 20%, 95%);
    }
}

.color-dark-blue{
    color: #39397F;
}

.logo{
    width: 100px;
    object-fit: cover;
    border-radius: 100%;
}

.nav-item{
    text-align: center;
    font-weight: 600;
}

.nav-item:hover{
    cursor: pointer;
    color: #F9A825;
}

.nav-item2{
    text-align: start;
    font-weight: 600;
}

.nav-item2:hover{
    cursor: pointer;
    color: #F9A825;
}

.button{
    background-color: #1259F3;
    color: white;
    border-radius: 10px;
    padding: 7px 20px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    width: fit-content;
    transition: transform 60ms ease-in;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.button:hover{
    background-color: #F9A825;
}

.button:active {
    background-color: #f8b850;
  }

  .button-white{
    background-color: white;
    color: black;
    border-radius: 10px;
    border: 1px solid  rgb(230, 230, 230);
    padding: 7px 20px;
    font-size: 14px;
    font-weight: 500;
    width: fit-content;
    transition: transform 60ms ease-in;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.button-white:hover{
  background-color: #f7f7f7;
}

.button-white:active {
  background-color: #f0f0f0;
}
  
.banner{
    height: 550px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-button{
    background-color: #F9A825;
    color: white;
    border-radius: 10px;
    padding: 10px 20px;
    border: none;
    font-size: 15px;
    font-weight: 500;
    width: fit-content;
    transition: transform 60ms ease-in;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.banner-button:active {
    background-color: #f8b850;
  }

  .banner-button2{
    background-color: transparent;
    color: black;
    border: 2px solid black; /* Fixed border definition */
    border-radius: 10px;
    padding: 8px 20px;
    font-size: 15px;
    font-weight: 500;
    width: fit-content;
    transition: transform 60ms ease-in;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.line{
    height: 5px;
    background-color: #F9A825;
    width: 100px;
    margin-top: 5px;
    border-radius: 10px;
}

.time-text{
    font-size: 58px;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    color: #F9A825;
    line-height: 30px;
}

.time-title{
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #39397F;
}

.event-card{
    background-color: white;
    border-radius: 15px;
    box-shadow: 0px 0px 10px 0px #ebebeb;
}

.event-banner{
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
}

.homeEvent-banner{
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
}

.evet-cart-font{
    color: #6B7280;
    font-size: 14px;
    font-weight: 400;
}

.footer-icon{
    background-color: #1259F3;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-icon:hover{
    cursor: pointer;
    background-color: #F9A825;
}

.footer-item{
    color: #6B7280;
    font-size: 15px;
    line-height: 30px;
}

.footer-item:hover{
    cursor: pointer;
}

.footer-rights{
    color: #6B7280;
    font-size: 11px;
}

.footer-rights:hover{
    cursor: pointer;
}

.footer-line{
    width: 100%;
    height: 1px;
    background-color: #dcdcdc;
    border-radius: 5px;
    margin-top: 20px;
}

.background-div{
    width: 100vw;
    height: 300px;
    background-color: #031230;
}

.background-div-small{
  width: 100vw;
  background-color: #031230;
}

.single-event-div{
    z-index: 10;
    width: 100%; 
    top: 35%;
}

.single-event-price-div{
    background-color: white;
    padding: 15px 25px;
    box-shadow: 0px 10px 7px 0px rgb(234, 234, 234);
}

  .artist-wave {
    padding: 0 2rem;
  }

  .artist-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 0 auto;
    cursor: pointer;
    padding-left: 5px;
    padding-right: 5px;
  }

  .artist-card:hover {
    transform: translateY(-5px) scale(1.05);
  }

  .artist-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background-size: cover;
    background-position: center;
  }

  .artist-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .headliner .artist-img {
    width: 180px;
    height: 180px;
    border: 6px solid #ffc107;
    box-shadow: 0 6px 16px rgba(255,193,7,0.4);
  }

  .artist-card.selected .artist-img {
    border: 6px solid #0d6efd;
    box-shadow: 0 0 20px rgba(13, 110, 253, 0.6);
    transform: scale(1.1);
  }

  .event-text{
    color: white;
  }
  .event-svg{
    fill: white;
  }

  .event-strok{
    stroke: white;
  }

  .plus-icon {
    background-color: #1259F3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;    /* Or any size you like */
    height: 25px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    border-radius: 100%;
  }

.plus-icon:hover{
    cursor: pointer;
    background-color: #F9A825;
}

.plus-icon:active{
  background-color: #f8b64c;
}

  

/* Horizontal scrolling gallery */


/* tablet */
@media (max-width: 1024px) {
    .banner{
        height: 600px;     /*keep lg size banne for md size too*/
    }

    .single-event-div{
        width: 97%; 
        top: 20%;
    }

    .event-text{
        color: white;
      }

      .event-svg{
        fill: #ffffff;
      }
    
      .event-strok{
        stroke: #ffffff;
      }
}

/* mobile */
@media (max-width: 576px) {
    .banner{
        height: 350px;
    }

    .artist-img {
        width: 100px;
        height: 100px;
      }

      .headliner .artist-img {
        width: 130px;
        height: 130px;
      }

      .gallery img {
        height: 150px; /* smaller height on mobile */
    }

    .single-event-div{
        width: 97%; 
        top: 30%;
    }

    .event-text{
        color: black;
      }

      .event-svg{
        fill: #031230;
      }
    
      .event-strok{
        stroke: #031230;
      }

}