/* General Styling */
.event-detail-hero {
  background-size: cover;
  background-position: center;
  padding: 140px 0;
  position: relative;
  text-align: center;
  padding-top: 160px;
}
.event-detail-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
.event-detail-hero .container {
  position: relative;
  z-index: 2;
}
.event-detail-hero h1 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}
.event-detail-hero p {
  font-size: 18px;
  color: #ddd;
}

.event-content {
  padding: 60px 0;
}

.event-detail-content {
  max-width: 850px;
  margin: 0 auto;
}

/* Back Button */
.back-to-events {
  display: inline-block;
  color: #014AB9;
  font-weight: 600;
  margin-bottom: 30px;
  text-decoration: none;
  font-size: 15px;
}
.back-to-events i {
  margin-right: 8px;
}

/* Share Button */
.event-share h5 {
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.share-icons .share-icon {
  font-size: 18px;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  transition: 0.3s ease-in-out;
}

.share-icons .facebook {
  background-color: #3b5998;
}
.share-icons .twitter {
  background-color: #1da1f2;
}
.share-icons .linkedin {
  background-color: #0077b5;
}
.share-icons .email {
  background-color: #dd4b39;
}

.share-icons .share-icon:hover {
  transform: scale(1.1);
  opacity: 0.85;
}

/* Event Description */
.event-description {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 40px;
}
.event-description img {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
  border-radius: 8px;
}

/* Event Details Box */
.event-details-box {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin: 40px 0;
  margin-top: 0;
}
.event-details-box h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}
.event-details-box ul {
  list-style: none;
  padding: 0;
}
.event-details-box ul li {
  font-size: 16px;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}
.event-details-box ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #014AB9;
  font-size: 16px;
}

/* Prev/Next Navigation */
.event-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.event-nav .prev-event a,
.event-nav .next-event a {
  background-color: #014AB9;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
  display: inline-block;
}
.event-nav a:hover {
  background-color: #012e7d;
}
.event-nav i {
  margin: 0 6px;
}
.event-share {
  margin-bottom: 40px;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .event-detail-hero h1 {
    font-size: 28px;
  }
  .event-detail-hero p {
    font-size: 16px;
  }
  .btn {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  .event-nav {
    flex-direction: column;
    align-items: stretch;
  }
}