/* Event Page */
.event-page {
  background: #f8f9fa;
  min-height: 100vh;
}

/* Header */
.event-header {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  background-size: cover;
  background-position: center;
  color: white;
  padding: 50px 0;
  margin-bottom: 30px;
}

.event-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.event-breadcrumb a {
  color: white;
  text-decoration: none;
}

.event-breadcrumb a:hover {
  text-decoration: underline;
}

.event-status {
  display: inline-block;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.event-status.past {
  background: rgba(107, 114, 128, 0.8);
}

.event-status.featured {
  background: rgba(255, 255, 255, 0.2);
}

.event-header h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.event-artists-header {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.artist-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 15px;
  border-radius: 25px;
  transition: background 0.3s;
}

.artist-link:hover {
  background: rgba(255, 255, 255, 0.25);
  color: white;
}

.artist-link img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
}

/* Layout */
.event-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 30px;
  margin-bottom: 50px;
}

/* Info Cards */
.event-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.info-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 15px;
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.date-card .info-icon {
  background: #fef3c7;
  color: #d84400;
}

.location-card .info-icon {
  background: #dbeafe;
  color: #3b82f6;
}

.price-card .info-icon {
  background: #d1fae5;
  color: #059669;
}

.info-content h4 {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.info-content .main-info {
  font-weight: 600;
  color: #333;
  margin-bottom: 3px;
}

.info-content .main-info.price {
  font-size: 1.4rem;
  color: #059669;
}

.info-content .sub-info {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.btn-ticket {
  display: inline-block;
  margin-top: 10px;
  background: #d84400;
  color: white;
  padding: 8px 15px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-ticket:hover {
  background: #d97706;
  color: white;
}

/* Sections */
.event-description,
.event-map,
.event-artists-section {
  background: white;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.event-description h2,
.event-map h2,
.event-artists-section h2 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #d84400;
  color: #333;
}

.event-description h2 i,
.event-map h2 i,
.event-artists-section h2 i {
  margin-right: 10px;
  color: #d84400;
}

.description-content {
  line-height: 1.8;
  color: #444;
}

.description-content p {
  margin-bottom: 1rem;
}

.btn-map {
  margin-top: 15px;
  display: inline-block;
}

/* Artists Section */
.artists-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
}

.artist-card {
  text-align: center;
  text-decoration: none;
  padding: 15px;
  border-radius: 12px;
  transition: background 0.3s;
}

.artist-card:hover {
  background: #fef3c7;
}

.artist-photo {
  width: 80px;
  height: 80px;
  margin: 0 auto 10px;
  border-radius: 50%;
  overflow: hidden;
}

.artist-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  color: #ccc;
  font-size: 2rem;
}

.artist-card h4 {
  font-size: 0.95rem;
  color: #333;
}

/* Share */
.event-share {
  display: flex;
  align-items: center;
  gap: 15px;
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.share-label {
  font-weight: 600;
  color: #666;
}

.share-buttons {
  display: flex;
  gap: 10px;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: transform 0.3s, opacity 0.3s;
}

.share-btn:hover {
  transform: scale(1.1);
  opacity: 0.9;
  color: white;
}

.share-btn.facebook {
  background: #3b5998;
}
.share-btn.twitter {
  background: #1da1f2;
}
.share-btn.whatsapp {
  background: #25d366;
}
.share-btn.telegram {
  background: #0088cc;
}

/* Sidebar */
.event-sidebar {
  position: sticky;
  top: 20px;
}

.sidebar-widget {
  background: white;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.cta-widget {
  text-align: center;
  background: linear-gradient(135deg, #d84400 0%, #d97706 100%);
  color: white;
}

.cta-price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-widget .btn-lg {
  padding: 15px 30px;
  font-size: 1.1rem;
  background: white;
  color: #d84400;
  border: none;
}

.cta-widget .btn-lg:hover {
  background: #f8f9fa;
}

.cta-widget small {
  display: block;
  margin-top: 10px;
  opacity: 0.8;
  font-size: 0.75rem;
}

.past-widget {
  text-align: center;
  color: #666;
}

.past-widget i {
  font-size: 2.5rem;
  color: #d84400;
  margin-bottom: 10px;
}

.sidebar-widget h4 {
  font-size: 1rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #d84400;
  color: #333;
}

.sidebar-widget h4 i {
  margin-right: 8px;
  color: #d84400;
}

.sidebar-events {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-event-item {
  display: flex;
  gap: 12px;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

.sidebar-event-item:hover {
  background: #fef3c7;
}

.event-mini-date {
  width: 45px;
  height: 45px;
  background: #d84400;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.event-mini-date .day {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.event-mini-date .month {
  font-size: 0.65rem;
  text-transform: uppercase;
}

.event-mini-info h5 {
  font-size: 0.85rem;
  color: #333;
  margin-bottom: 3px;
  line-height: 1.2;
}

.event-mini-info span {
  font-size: 0.75rem;
  color: #888;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

.btn-outline-primary {
  border: 2px solid #f59e0b;
  color: #d84400;
  background: transparent;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-outline-primary:hover {
  background: #d84400;
  color: white;
}

.btn-outline-secondary {
  border: 2px solid #6b7280;
  color: #6b7280;
  background: transparent;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-outline-secondary:hover {
  background: #6b7280;
  color: white;
}

/* Responsive */
@media (max-width: 992px) {
  .event-layout {
    grid-template-columns: 1fr;
  }

  .event-sidebar {
    position: static;
  }

  .event-info-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .event-header h1 {
    font-size: 1.8rem;
  }

  .event-artists-header {
    flex-direction: column;
  }

  .event-share {
    flex-direction: column;
    align-items: flex-start;
  }
}
