@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

.grid_list {
  column-count: 4;
  margin: 0;
}
.grid_list_2 {
  column-count: 2;
  margin: 0;
}
.grid-item {
  position: relative;
  display: inline-block;
  background-color: #cecece;
  padding: 0.5em;
  border-radius: 0.5em;
}

.grid-item img {
  width: 100%;
  height: auto;
  display: block;
}

.grid-item .title {
  margin-top: 0.5em;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Overlay that appears on hover */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.grid-item:hover .overlay {
  opacity: 1;
}

.grid-item .overlay .fa-eye {
  font-size: 2em;
}

@media only screen and (max-width: 768px) {
  .grid_list {
    column-count: 3;
  }
  .grid_list_2{
    column-count: 2;
  }
}

@media only screen and (max-width: 450px) {
  .grid_list {
    column-count: 2;
  }

  .grid_list_2{
    column-count: 2;
  }
}

.video_wrapper {
  position: relative;

  padding-bottom: 56.25%;

  height: 0;
}

.video_wrapper iframe {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 83vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  transition: all 0.8s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide.active {
  transform: translateX(0);
}

.slide.prev {
  transform: translateX(-100%);
}

/* Desktop backgrounds */
.slide:nth-child(1) {
  background-image: url("/client_assets/image/sliders/1108x609-Slide 3.jpg");
  background-size: cover;
  background-position: center;
}

.slide:nth-child(2) {
  background-image: url("/client_assets/image/sliders/1108x609-Slide 2.jpg");
  background-size: cover;
  background-position: center;
}

.slide:nth-child(3) {
  background-image: url("/client_assets/image/sliders/1108x609-Slide 1.jpg");
  background-size: cover;
  background-position: center;
}

/* .slide:nth-child(4) {
  background-image: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
} */

/* Overlay for better text readability */
.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.slide-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
  font-size: 1.2rem;
  max-width: 600px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Navigation buttons */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 2rem;
  padding: 15px 20px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

/* Social buttons container */
.social-buttons {
  /* position: absolute; */
  /* z-index: 10; */
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: space-around;
}
.social-button{
  width: min-content;
}
.social-button img{
  width: 2em;
}
/* Desktop and tablet positioning (right side) */
@media (min-width: 769px) {
  .social-buttons {

    flex-direction: row;
  }
}

/* Mobile positioning (bottom) */
@media (max-width: 768px) {
  .social-buttons {

    flex-direction: row;
    justify-content: center;
  }
}

.social-btn {
  background: rgb(199, 199, 199);
  border: none;
  color: black;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 15px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 120px;
  justify-content: center;
   background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-btn.subscribe {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  border-color: rgba(255, 255, 255, 0.3);
}

.social-btn.follow {
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  border-color: rgba(255, 255, 255, 0.3);
}

.social-btn.like {
  background: linear-gradient(135deg, #fa709a, #fee140);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Dots indicator */
.dots-container {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: white;
  transform: scale(1.2);
}

/* Tablet specific styles */
@media (max-width: 1024px) and (min-width: 769px) {
  .slide:nth-child(1) {
    background-image: url("/client_assets/image/sliders/820x1145-Slide 3.jpg");
  }

  .slide:nth-child(2) {
    background-image: url("/client_assets/image/sliders/820x1145-Slide 1.jpg");
  }

  .slide:nth-child(3) {
    background-image: url("/client_assets/image/sliders/820x1145-Slide 2.jpg");
  }

  /* .slide:nth-child(4) {
    background-image: url("/client_assets/image/img2.jpg");
  } */

  .slide-content h2 {
    font-size: 2.5rem;
  }

  .social-buttons {
    right: 30px;
  }
  .slider-container {
    position: relative;
    width: 100%;
    height: 97vh;
    overflow: hidden;
  }
}

/* Mobile specific styles */
@media (max-width: 768px) {
  .slide:nth-child(1) {
    background-image: url("/client_assets/image/sliders/375x621-Slide 3a.jpg");
  }

  .slide:nth-child(2) {
    background-image: url("/client_assets/image/sliders/375x621-Slide 2.jpg");
  }

  .slide:nth-child(3) {
    background-image: url("/client_assets/image/sliders/375x621-Slide 1.jpg");
  }

  /* .slide:nth-child(4) {
    background-image: url("/client_assets/image/slider/820x1145-Slide 3.jpg");
  } */

  .slide-content h2 {
    font-size: 2rem;
  }

  .slide-content p {
    font-size: 1rem;
    padding: 0 20px;
  }

  .nav-btn {
    font-size: 1.5rem;
    padding: 10px 15px;
  }

  .prev {
    left: 10px;
  }

  .next {
    right: 10px;
  }

  .social-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
    min-width: 100px;
  }

  .dots-container {
    bottom: 80px;
  }
  .slider-container {
    position: relative;
    width: 100%;
    height: 93vh;
    overflow: hidden;
  }
}

/* Animation effects */
@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-content > div {
  animation: slideInFromRight 0.8s ease-out 0.3s both;
}

.concert-card {
  margin-bottom: 1em;
  border-radius: 1em;
  background-color: #e2e1e7;
  padding-left: 0.8em;
  padding-right: 0.8em;
  padding-top: 2em;
  padding-bottom: 2em;
}
.concert-card .date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1em;
  border: 2px solid grey;
  margin-right: 0.8em;
  font-weight: bold;
}

.concert-card p {
  margin: 0 !important;
  padding: 0 !important;
}

.concert-card a {
  color: #161616;
  font-weight: 700;
}

.concert-card .title {
  font-weight: bold;
  color: #353434;
}

.concert-card .description {
  font-weight: bold;
  color: #424242;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news_card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
  padding: 1em;
  background-color: #d8d6d6;
  border-radius: 0.5em;
}

.news_card img {
  width: 5em;
  height: 5em;
  margin-right: 1em;
  object-fit: cover;
}

.news_card .news_content {
  width: 100%;
}
.news_card .news_content .news_heading {
  font-size: 1.2em;
  font-weight: bold;
  margin: 0% !important;
}

.news_card .news_content .news_description {
  margin: 0% !important;
  padding: 0% !important;
  font-size: 1em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.video_card {
  padding: 1em;
  border-radius: 0.5em;
  background-color: #ecebeb;
}

.video_card p {
  margin: 0%;
  padding: 0%;
  font-family: "Montserrat", sans-serif;
}

.video_card .title {
  font-size: 1em;
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.video_card .description {
  margin-top: 0.5em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
