/* EVENT DETAIL PAGE STYLES - Fixed */
.event-detail-page {
  padding: 0 0 60px;
  background: #fff;
}



/* Banner Styles */
.image-banner {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
  background: #000;
  margin-bottom: 40px;
}
.image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}
.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}
.banner-overlay h1 {
  font-weight: 300;
  letter-spacing: 8px;
  margin-top: 80px;
  text-transform: uppercase;
  border: 2px solid #ffffff70;
  padding: 1rem 2rem;
  font-size: 28px;
}

/* Breadcrumb */
.breadcrumb {
  margin-bottom: 30px;
  font-size: 14px;
  color: #666;
}

.breadcrumb a {
  color: #333;
  text-decoration: none;
  margin: 0 3px;
}

.breadcrumb a:hover {
  color: #000;
  text-decoration: underline;
}

.breadcrumb span {
  color: #999;
}

/* Main Detail Container - Fixed */
.detail-container {
  display: flex;
  gap: 40px;
  background: #fff;
  margin-bottom: 60px;
}

/* Gallery Section - Fixed */
.detail-gallery {
  width: 50%;
  position: relative;
}

.main-slider {
  margin-bottom: 15px;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}

.main-slider .slick-list,
.main-slider .slick-track {
  height: 500px;
}

.main-slider .slide {
  width: 100%;
  height: 500px;
  background: #f9f9f9;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
  outline: none;
}

.main-slider .slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Thumbnail Slider - Fixed */
.thumbnail-slider {
  margin: 0 -5px;
  width: 100%;
}

.thumbnail-slider .slick-list {
  margin: 0 -5px;
}

.thumbnail-slider .thumb-slide {
  padding: 0 5px;
  cursor: pointer;
  outline: none;
  height: 80px;
}

.thumbnail-slider .thumb-slide img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.thumbnail-slider .thumb-slide.slick-current img {
  border-color: #000;
}

/* Slider Arrows - Fixed */
.slick-prev, .slick-next {
  background: rgba(255,255,255,0.9) !important;
  width: 35px !important;
  height: 35px !important;
  border-radius: 50% !important;
  z-index: 10 !important;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.slick-prev { 
  left: 10px !important; 
}
.slick-next { 
  right: 10px !important; 
}

.slick-prev:before, .slick-next:before {
  color: #000 !important;
  font-size: 20px !important;
  opacity: 0.8 !important;
}

.slick-prev:hover:before, .slick-next:hover:before {
  opacity: 1 !important;
}

/* Info Section - Compact */
.detail-info {
  width: 50%;
}

.detail-info h1 {
  font-size: 36px;
  font-weight: 500;
  margin: 0 0 10px;
  color: #000;
  letter-spacing: 1px;
}

.event-meta-compact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eaeaea;
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #444;
  background: #f5f5f5;
  padding: 6px 15px;
  border-radius: 30px;
}

.event-meta-item i {
  font-size: 14px;
  color: #333;
}

.event-meta-item span {
  color: #555;
}

.event-collab-detail {
  display: inline-block;
  font-size: 13px;
  color: #666;
  font-style: italic;
  background: #f0f0f0;
  padding: 6px 18px;
  border-radius: 30px;
  margin: 10px 0 15px;
}

.event-collab-detail i {
  margin-right: 5px;
  font-size: 12px;
}

/* Description - Compact */
.event-description-full {
  margin: 15px 0;
}

.event-description-full p {
  line-height: 1.6;
  color: #444;
  font-size: 15px;
  margin-bottom: 15px;
}

/* Highlights - Compact */
.event-highlights {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
}

.event-highlights h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 12px;
  color: #000;
}

.event-highlights ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.event-highlights li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #555;
}

.event-highlights li i {
  color: #333;
  font-size: 12px;
}

/* Tag */
.event-tag-detail {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 1px;
  padding: 4px 12px;
  font-weight: 600;
  background: #111;
  color: white;
  text-transform: uppercase;
  margin-bottom: 15px;
}

/* Related Events */
.related-section {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eaeaea;
}

.related-section h2 {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 25px;
  text-align: center;
  letter-spacing: 2px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.related-card {
  background: #fafafa;
  border: 1px solid #f0f0f0;
  transition: transform 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.related-card:hover {
  transform: translateY(-5px);
  border-color: #999;
}

.related-card-image {
  height: 180px;
  overflow: hidden;
}

.related-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card-content {
  padding: 12px;
}

.related-card-content h4 {
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 5px;
  color: #000;
}

.related-card-content .related-location {
  font-size: 11px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Responsive */
@media (max-width: 992px) {
  .image-banner {
    height: 40vh;
  }
  .banner-overlay h1 {
    font-size: 36px;
    padding: 0.8rem 2rem;
  }
  .detail-container {
    flex-direction: column;
  }
  
  .detail-gallery,
  .detail-info {
    width: 100%;
  }
  
  .main-slider .slide,
  .main-slider .slick-list,
  .main-slider .slick-track {
    height: 400px;
  }
  
  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .image-banner {
    height: 35vh;
  }
  .banner-overlay h1 {
    font-size: 28px;
    letter-spacing: 4px;
  }
  .main-slider .slide,
  .main-slider .slick-list,
  .main-slider .slick-track {
    height: 350px;
  }
  
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .event-highlights ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .image-banner {
    height: 30vh;
  }
  .banner-overlay h1 {
    font-size: 24px;
    letter-spacing: 2px;
    padding: 0.5rem 1rem;
  }
  .main-slider .slide,
  .main-slider .slick-list,
  .main-slider .slick-track {
    height: 300px;
  }
  
  .related-grid {
    grid-template-columns: 1fr;
  }
  
  .thumbnail-slider .thumb-slide {
    height: 60px;
  }
  
  .thumbnail-slider .thumb-slide img {
    height: 60px;
  }
  
  .event-meta-compact {
    flex-direction: column;
    gap: 10px;
  }
}
/* responsive */
        @media screen and (max-width:1400px) {

        }
        @media screen and (min-width:1200px) and   (max-width:1399.98px) {
   
        }
        @media screen and (min-width:992px) and   (max-width:1199.98px) {

        }
        @media screen  and (min-width:768px) and (max-width:991.98px) {
   .image-banner {
  height: 300px;margin-bottom: 20px;
}
.banner-overlay h1 {
  margin-top: 80px;
}
        }
        @media screen and (min-width:576px) and (max-width:767.98px) {
    .image-banner {
  height: 250px;margin-bottom: 20px;
}
.banner-overlay h1 {
  font-size: 12px;
  margin-top: 98px;
}
.breadcrumb {
  margin-bottom: 15px;
}
.detail-info h1 {
  font-size: 22px;
}
.event-description-full p {
  font-size: 12px;
}
.detail-container {
  margin-bottom: 0px;
}
.related-section {
  margin-top: 10px;
  padding-top: 10px;
}

        }
        @media screen  and (min-width:381px) and (max-width:575.98px){
    .image-banner {
  height: 200px;margin-bottom: 20px;
}
.banner-overlay h1 {
  font-size: 12px;
  margin-top: 98px;
}
.breadcrumb {
  margin-bottom: 15px;
}
.detail-info h1 {
  font-size: 18px;
}
.event-description-full p {
  font-size: 12px;
}
.detail-container {
  margin-bottom: 0px;
}
.related-section {
  margin-top: 10px;
  padding-top: 10px;
}
        }
        @media screen and (min-width:320px) and (max-width:380.98px) {
 .image-banner {
  height: 200px;margin-bottom: 20px;
}
.banner-overlay h1 {
  font-size: 12px;
  margin-top: 98px;
}
.breadcrumb {
  margin-bottom: 15px;
}
.detail-info h1 {
  font-size: 18px;
}
.event-description-full p {
  font-size: 12px;
}
.detail-container {
  margin-bottom: 0px;
}
.related-section {
  margin-top: 10px;
  padding-top: 10px;
}
        }