/* ================================================================
   EVENTS — Listing & Detail Pages (Luxury Exhibition Style)
   Uses site-wide --secondary-color for gold accent (set dynamically)
   ================================================================ */

:root {
  /* Event-specific tokens referencing site theme */
  --evt-accent: var(--secondary-color, #987e4d);
  --evt-accent-dark: #7a6238;
  --evt-accent-light: rgba(152, 126, 77, 0.18);

  /* Neutral palette */
  --evt-bg: #faf8f3;
  --evt-ink: #2a2520;
  --evt-mid: #6b6155;
  --evt-light: #a49788;
  --evt-border: #ddd7cc;
  --evt-sand: #f4f0e8;
  --evt-white: #ffffff;
  --evt-dark: #1a1512;
  --evt-overlay: rgba(26, 21, 18, 0.65);
  --evt-light-white: #F5F5F5;
  --evt-muted: #b8b8b8;

  /* Typography */
  --evt-font: 'DM Sans', sans-serif;

  /* Spacing */
  --evt-section-padding: 50px;
}

/* AJAX content wrapper */
.event-wrap {
  transition: opacity 0.3s ease;
}

.hero-section {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.hero-section .hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(ellipse at center, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.8) 100%);
  z-index: 1;
}

.hero-section .hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  color: var(--evt-white);
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  color: var(--evt-light-white);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-locations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: clamp(0.75rem, 1.5vw, 0.95rem);
  letter-spacing: 0.2em;
  font-weight: 500;
}

.location-item {
  color: var(--evt-accent);
  transition: all 0.3s ease;
  cursor: pointer;
}

.location-item:hover {
  color: var(--evt-white);
  transform: translateY(-2px);
}

.location-divider {
  color: var(--evt-muted);
  opacity: 0.5;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-indicator i {
  font-size: 1.5rem;
  color: var(--evt-accent);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.intro-section {
  padding: var(--evt-section-padding) 0;
  background: var(--evt-light-white);
}

.intro-text {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.8;
  color: var(--evt-ink);
  font-weight: 300;
  font-style: italic;
}

.intro-text em {
  color: var(--evt-accent);
  font-style: normal;
  font-weight: 500;
}

.decorative-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
  gap: 20px;
}

.divider-line {
  width: 100px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--evt-accent), transparent);
}

.divider-icon {
  color: var(--evt-accent);
  font-size: 1.2rem;
}


/* ================================================================
   LISTING — Section Titles (shared with detail page)
   ================================================================ */
.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  color: var(--evt-ink);
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--evt-accent), transparent);
}

.section-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--evt-ink);
  margin-bottom: 25px;
  font-style: italic;
  opacity: 0.8;
}


/* ================================================================
   LISTING — Featured Exhibition
   ================================================================ */
.featured-exhibition {
  padding: var(--evt-section-padding) 0;
  background: var(--evt-white);
}

.featured-card {
  margin-top: 20px;
  background: var(--evt-white);
  border: 1px solid rgba(152, 126, 77, 0.2);
  overflow: hidden;
  transition: all 0.5s ease;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.featured-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(152, 126, 77, 0.25);
}

.featured-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 400px;
}

.featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-card:hover .featured-image {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.95) 100%);
}

.featured-content {
  padding: 24px;
}

.featured-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  color: var(--evt-ink);
}

.featured-location {
  font-size: 1rem;
  color: var(--evt-accent);
  font-style: italic;
  margin-bottom: 25px;
  font-weight: 300;
}

.featured-description {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.8;
  color: var(--evt-ink);
  margin-bottom: 30px;
}

.featured-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.badge-luxury {
  background: var(--evt-accent);
  color: var(--evt-white);
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.badge-luxury-outline {
  background: transparent;
  color: var(--evt-accent);
  border: 1px solid var(--evt-accent);
  padding: 7px 19px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.btn-view-exhibition {
  display: inline-flex;
  align-items: center;
  padding: 15px 35px;
  background: transparent;
  color: var(--evt-accent);
  border: 2px solid var(--evt-accent);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn-view-exhibition::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--evt-accent);
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-view-exhibition:hover {
  color: var(--evt-white);
  text-decoration: none;
}

.btn-view-exhibition:hover::before {
  left: 0;
}


/* ================================================================
   LISTING — Exhibition Cards Grid
   ================================================================ */
.exhibitions-section {
  padding: var(--evt-section-padding) 0;
  background: var(--evt-light-white);
}

.exhibitions-past {
  background: var(--evt-white);
}

.exhibition-card {
  background: var(--evt-white);
  border: 1px solid rgba(152, 126, 77, 0.2);
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.exhibition-card:hover {
  transform: translateY(-10px);
  border-color: var(--evt-accent);
  box-shadow: 0 15px 40px rgba(152, 126, 77, 0.25);
}

.exhibition-image-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 75%; /* 4:3 */
}

.exhibition-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.exhibition-card:hover .exhibition-image {
  transform: scale(1.15);
}

.exhibition-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(10, 10, 10, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.exhibition-card:hover .exhibition-overlay {
  opacity: 1;
}

.btn-view-small {
  color: var(--evt-accent);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  padding: 10px 25px;
  border: 1px solid var(--evt-accent);
  transition: all 0.3s ease;
}

.btn-view-small:hover {
  background: var(--evt-accent);
  color: var(--evt-white);
  text-decoration: none;
}

.exhibition-info {
  padding: 18px 18px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.exhibition-name {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: var(--evt-ink);
}

.exhibition-location {
  font-size: 0.9rem;
  color: var(--evt-accent);
  font-style: italic;
  margin-bottom: 15px;
}

.exhibition-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--evt-ink);
  margin-bottom: 20px;
  flex-grow: 1;
}

.exhibition-link {
  color: var(--evt-accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.exhibition-link:hover {
  color: var(--evt-ink);
  text-decoration: none;
  transform: translateX(5px);
}


/* ================================================================
   LISTING — Contact / CTA Section
   ================================================================ */
.contact-section {
  padding: var(--evt-section-padding) 0;
  background: var(--evt-ink);
  border-top: 1px solid var(--evt-accent);
  border-bottom: 1px solid var(--evt-accent);
}

.contact-text {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: italic;
  color: var(--evt-white);
  margin-bottom: 30px;
}

.btn-contact {
  display: inline-block;
  padding: 15px 50px;
  background: var(--evt-accent);
  color: var(--evt-white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(152, 126, 77, 0.4);
}

.btn-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(152, 126, 77, 0.6);
  color: var(--evt-white);
  text-decoration: none;
}


/* ================================================================
   LISTING — Skeleton Loader
   ================================================================ */
.event-skeleton-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
  padding: 40px 0;
}

.event-skeleton-container.initial-hide {
  display: none;
}

.event-skeleton-card {
  background: var(--evt-white);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(42, 37, 32, 0.06);
}

.event-skeleton-card .skeleton-img {
  width: 100%;
  padding-top: 75%;
  background: linear-gradient(90deg, var(--evt-sand) 25%, #ebe7df 50%, var(--evt-sand) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
}

.event-skeleton-card .skeleton-body {
  padding: 24px;
}

.event-skeleton-card .skeleton-line {
  height: 12px;
  background: linear-gradient(90deg, var(--evt-sand) 25%, #ebe7df 50%, var(--evt-sand) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
  margin-bottom: 12px;
}

.event-skeleton-card .skeleton-line.short { width: 45%; }
.event-skeleton-card .skeleton-line.medium { width: 75%; }
.event-skeleton-card .skeleton-line.long { width: 100%; }

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}


/* ================================================================
   LISTING — Pagination
   ================================================================ */
.events-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--evt-border);
}

.events-pagination .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(152, 126, 77, 0.2);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--evt-mid);
  background: var(--evt-white);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.events-pagination .page-link:hover {
  border-color: var(--evt-accent);
  color: var(--evt-accent);
}

.events-pagination .page-link.active {
  background: var(--evt-accent);
  border-color: var(--evt-accent);
  color: var(--evt-white);
  font-weight: 600;
}

.events-pagination .page-link.disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* No events message */
.no-events-message {
  text-align: center;
  padding: 40px 24px;
  color: var(--evt-mid);
}

.no-events-message i {
  font-size: 3rem;
  color: var(--evt-border);
  margin-bottom: 16px;
  display: block;
}

.no-events-message p {
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.04em;
}


/* ================================================================
   DETAIL — Hero Section (80vh centered)
   ================================================================ */
.details-hero-section {
  position: relative;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.details-hero-section .hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(ellipse at center, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.8) 100%);
  z-index: 1;
}

.details-hero-section .hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.details-hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 15px;
  color: var(--evt-white);
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.9);
}

.details-hero-location {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 30px;
  color: var(--evt-light-white);
  font-style: italic;
}

.details-hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.hero-badge {
  background: var(--evt-accent);
  color: var(--evt-white);
  padding: 10px 30px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-badge-outline {
  background: transparent;
  color: var(--evt-white);
  border: 2px solid var(--evt-white);
  padding: 8px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}


/* ================================================================
   DETAIL — Description Section
   ================================================================ */
.exhibition-description {
  padding: 40px 0;
  background: var(--evt-white);
}

.description-text {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.9;
  color: var(--evt-ink);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 40px;
}

.description-text em {
  color: var(--evt-accent);
  font-style: normal;
  font-weight: 600;
}


/* ================================================================
   DETAIL — Gallery Section
   ================================================================ */
.exhibition-gallery-section {
  padding: var(--evt-section-padding) 0;
  background: var(--evt-light-white);
}

.gallery-grid {
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(152, 126, 77, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.gallery-overlay i {
  font-size: 2.5rem;
  color: var(--evt-white);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(152, 126, 77, 0.3);
}


/* ================================================================
   DETAIL — Notable Visitors Section
   ================================================================ */
.notable-visitors-section {
  padding: var(--evt-section-padding) 0;
  background: var(--evt-white);
}

.visitor-card {
  background: var(--evt-white);
  border: 1px solid rgba(152, 126, 77, 0.2);
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.visitor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(152, 126, 77, 0.25);
  border-color: var(--evt-accent);
}

.visitor-image-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 100%; /* 1:1 square */
}

.visitor-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.visitor-card:hover .visitor-image {
  transform: scale(1.1);
}

.visitor-info {
  padding: 25px 20px;
}

.visitor-name {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: var(--evt-ink);
}

.visitor-title {
  font-size: 0.95rem;
  color: var(--evt-accent);
  font-style: italic;
  margin-bottom: 0;
}


/* ================================================================
   DETAIL — Event Details Section (3 Column)
   ================================================================ */
.event-details-section {
  padding: 40px 0;
  background: var(--evt-light-white);
  position: relative;
  overflow: hidden;
}

.event-details-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(152, 126, 77, 0.03) 0%, transparent 50%, rgba(152, 126, 77, 0.03) 100%);
  pointer-events: none;
}

.event-details-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  gap: 20px;
}

.event-details-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.05em;
  color: var(--evt-ink);
  margin: 0;
}

.detail-ornament-left,
.detail-ornament-right {
  width: 100px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--evt-accent), transparent);
}

.event-details-row {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 10px 0;
}

.detail-column {
  flex: 1;
  text-align: center;
  padding: 10px 30px;
  position: relative;
}

.detail-column:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  width: 1px;
  height: 80%;
  background: linear-gradient(to bottom, transparent, var(--evt-accent), transparent);
  opacity: 0.4;
}

.vertical-divider {
  display: none;
}

.column-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--evt-ink);
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.6;
}

.column-content {
  margin-top: 20px;
}

.location-large {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--evt-ink);
  margin-bottom: 5px;
  line-height: 1.2;
}

.location-subtitle {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--evt-ink);
  text-transform: uppercase;
  margin-bottom: 0;
}

.venue-text {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--evt-ink);
  margin-bottom: 5px;
  line-height: 1.6;
}

.date-text {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--evt-ink);
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Bottom Ornamental Divider */
.bottom-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.ornament-line {
  width: 150px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--evt-accent), transparent);
}

.ornament-center {
  color: var(--evt-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ornament-center svg {
  width: 60px;
  height: 30px;
}


/* ================================================================
   DETAIL — CTA Section
   ================================================================ */
.cta-section {
  padding: var(--evt-section-padding) 0;
  background: var(--evt-ink);
  border-top: 2px solid var(--evt-accent);
  border-bottom: 2px solid var(--evt-accent);
}

.cta-text {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-style: italic;
  color: var(--evt-white);
  margin-bottom: 35px;
}

.btn-cta {
  display: inline-block;
  padding: 18px 60px;
  background: var(--evt-accent);
  color: var(--evt-white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(152, 126, 77, 0.4);
  border: 2px solid var(--evt-accent);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(152, 126, 77, 0.6);
  background: transparent;
  color: var(--evt-accent);
  text-decoration: none;
}


/* ================================================================
   DETAIL — Back Section
   ================================================================ */
.back-section {
  padding: 30px 0;
  background: var(--evt-white);
}

.btn-back {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  background: transparent;
  color: var(--evt-accent);
  border: 2px solid var(--evt-accent);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s ease;
}

.btn-back:hover {
  background: var(--evt-accent);
  color: var(--evt-white);
  text-decoration: none;
  transform: translateX(-5px);
}


/* ================================================================
   DETAIL — Lightbox
   ================================================================ */
.evt-lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.evt-lightbox-overlay.active {
  display: flex;
  opacity: 1;
}

.evt-lightbox-overlay .lb-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none; border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s;
  line-height: 1;
}

.evt-lightbox-overlay .lb-close:hover {
  color: var(--evt-accent);
}

.evt-lightbox-overlay .lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 1.1rem;
  z-index: 10;
}

.evt-lightbox-overlay .lb-nav:hover {
  background: var(--evt-accent);
  border-color: var(--evt-accent);
  color: var(--evt-dark);
}

.evt-lightbox-overlay .lb-prev { left: 24px; }
.evt-lightbox-overlay .lb-next { right: 24px; }

.evt-lightbox-overlay .lb-img-wrap {
  max-width: 85vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.evt-lightbox-overlay .lb-img-wrap img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
}

.evt-lightbox-overlay .lb-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}


/* ================================================================
   DETAIL — Related Events
   ================================================================ */
.related-events-section {
  background: var(--evt-sand);
  padding: 30px 24px;
}

.related-events-section .section-header {
  max-width: 1200px;
  margin: 0 auto 32px;
  text-align: center;
}

.related-events-section .section-header h3 {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--evt-ink);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}

.related-events-section .section-header h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--evt-accent);
  margin: 14px auto 0;
}

.related-events-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.related-event-card {
  background: var(--evt-white);
  border: 1px solid rgba(152, 126, 77, 0.2);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  text-decoration: none;
  display: block;
}

.related-event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(152, 126, 77, 0.25);
  border-color: var(--evt-accent);
  text-decoration: none;
}

.related-event-card__img {
  overflow: hidden;
  padding-top: 62.5%;
  position: relative;
}

.related-event-card__img img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.related-event-card:hover .related-event-card__img img {
  transform: scale(1.1);
}

.related-event-card__body {
  padding: 18px 20px;
}

.related-event-card__body .date {
  font-size: 0.75rem;
  color: var(--evt-accent);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.related-event-card__body .title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--evt-ink);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}


/* ================================================================
   RESPONSIVE — Tablet
   ================================================================ */
@media (max-width: 991px) {
  :root {
    --evt-section-padding: 45px;
  }

  .hero-section {
    height: 60vh;
    min-height: 400px;
  }

  .details-hero-section {
    height: 70vh;
    min-height: 500px;
  }

  .featured-content {
    padding: 30px 20px;
  }

  .featured-image-wrapper {
    min-height: 350px;
  }

  .hero-locations {
    gap: 10px;
  }

  .event-details-section {
    padding: 30px 0;
  }

  .event-details-row {
    flex-direction: column;
  }

  .detail-column {
    padding: 30px 20px;
    border-bottom: 1px solid rgba(152, 126, 77, 0.2);
  }

  .detail-column:last-child {
    border-bottom: none;
  }

  .detail-column:not(:last-child)::after {
    display: none;
  }

  .vertical-divider {
    display: none !important;
  }

  .location-large {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .gallery-item img {
    height: 250px;
  }

  .related-events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ================================================================
   RESPONSIVE — Mobile
   ================================================================ */
@media (max-width: 767px) {
  :root {
    --evt-section-padding: 35px;
  }

  .hero-section {
    height: 60vh;
    min-height: 400px;
  }

  .hero-title {
    letter-spacing: 0.1em;
  }

  .hero-locations {
    flex-direction: column;
    gap: 8px;
  }

  .location-divider {
    display: none;
  }

  .featured-image-wrapper {
    min-height: 300px;
  }

  .featured-content {
    padding: 25px 20px;
  }

  .featured-badges {
    flex-direction: column;
    align-items: flex-start;
  }

  .badge-luxury,
  .badge-luxury-outline {
    display: inline-block;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .exhibition-info {
    padding: 25px 20px;
  }

  .scroll-indicator {
    bottom: 20px;
  }

  .details-hero-section {
    height: 60vh;
    min-height: 450px;
  }

  .details-hero-badges {
    flex-direction: column;
    align-items: center;
  }

  .hero-badge,
  .hero-badge-outline {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .event-details-header {
    flex-direction: column;
    gap: 15px;
  }

  .detail-ornament-left,
  .detail-ornament-right {
    width: 60px;
  }

  .gallery-item img {
    height: 220px;
  }

  .btn-cta {
    width: 100%;
    max-width: 350px;
    text-align: center;
  }

  .back-section {
    padding: 40px 0;
  }
}

@media (max-width: 575px) {
  .intro-section {
    padding: 50px 0;
  }

  .decorative-divider {
    margin-top: 30px;
  }

  .divider-line {
    width: 60px;
  }

  .btn-view-exhibition,
  .btn-contact {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .exhibition-description {
    padding: 30px 0;
  }

  .gallery-item img {
    height: 200px;
  }

  .ornament-line {
    width: 80px;
  }

  .related-events-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .event-skeleton-container {
    grid-template-columns: 1fr;
  }
}


/* ================================================================
   PRINT STYLES
   ================================================================ */
@media print {
  .hero-section,
  .details-hero-section .hero-overlay,
  .evt-lightbox-overlay,
  .events-pagination,
  .scroll-indicator,
  .cta-section,
  .contact-section,
  .back-section { display: none; }

  .exhibition-card { box-shadow: none; border: 1px solid #ddd; }
}
