
.venue-gallery-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.gallery-main {
  width: 100%;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--color-border);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.gallery-thumb {
  height: 100px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-base);
}

.gallery-thumb:hover, .gallery-thumb.active {
  border-color: var(--color-primary);
  transform: scale(1.02);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.view-all-photos-btn {
  position: absolute;
  bottom: var(--space-lg);
  right: var(--space-lg);
  background: rgba(13, 17, 23, 0.85);
  border: 1px solid var(--color-border);
  color: var(--color-white);
  backdrop-filter: blur(8px);
}


.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10005;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  max-width: 900px;
  width: 100%;
  position: relative;
  padding: 0 var(--space-xl);
}

.lightbox-img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.lightbox-nav-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.lightbox-prev { left: 0; }
.lightbox-next { right: 0; }

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
}


.venue-details-grid {
  display: grid;
  grid-template-columns: 2.2fr 1.3fr;
  gap: var(--space-2xl);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.venue-header {
  margin-bottom: var(--space-xl);
}

.venue-header h1 {
  margin-bottom: var(--space-sm);
}

.venue-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.venue-address {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-text-muted);
}

.venue-address svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.venue-description {
  margin-bottom: var(--space-2xl);
}

.description-text {
  max-height: 120px;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.description-text.expanded {
  max-height: 1000px;
}

.read-more-btn {
  background: none;
  border: none;
  color: var(--color-primary);
  font-weight: 600;
  cursor: pointer;
  margin-top: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}


.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.spec-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  text-align: center;
}

.spec-icon-wrapper {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.spec-icon-wrapper svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.spec-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.spec-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-white);
  margin-top: var(--space-xs);
}


.accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.accordion-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  background: none;
  border: none;
  color: var(--color-white);
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.accordion-header svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.3s;
}

.accordion-item.active .accordion-header svg {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0 var(--space-lg);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.accordion-item.active .accordion-content {
  padding: 0 var(--space-lg) var(--space-lg);
  max-height: 300px;
}


.pricing-section {
  margin-bottom: var(--space-2xl);
}

.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: var(--color-surface);
  font-size: 0.95rem;
}

.pricing-table th, .pricing-table td {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}

.pricing-table th {
  background: var(--color-surface-2);
  color: var(--color-white);
  font-weight: 600;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}


.booking-widget {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: sticky;
  top: calc(var(--header-height) + var(--space-lg));
  box-shadow: var(--shadow-card);
}

.booking-widget h3 {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}


.calendar-container {
  margin-bottom: var(--space-lg);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
}

.calendar-header span {
  font-weight: 600;
  color: var(--color-white);
}

.calendar-nav-btn {
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
}

.calendar-nav-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: var(--space-xs);
  text-align: center;
}

.calendar-day-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  background: var(--color-surface-2);
  border: 1px solid transparent;
  transition: var(--transition-base);
}

.calendar-day.empty {
  background: none;
  cursor: default;
}

.calendar-day:hover:not(.empty):not(.disabled) {
  border-color: var(--color-primary);
  color: var(--color-white);
}

.calendar-day.disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

.calendar-day.booked {
  background: rgba(255, 69, 58, 0.1);
  color: var(--color-error);
  cursor: not-allowed;
  text-decoration: line-through;
}

.calendar-day.selected {
  background: var(--color-primary);
  color: var(--color-white);
}


.slots-container {
  display: none;
  margin-bottom: var(--space-lg);
}

.slots-container.active {
  display: block;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.slot-btn {
  padding: 10px;
  border-radius: var(--radius-sm);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: var(--transition-base);
}

.slot-btn:hover:not(.booked) {
  border-color: var(--color-primary);
  color: var(--color-white);
}

.slot-btn.booked {
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-text-muted);
  opacity: 0.4;
  cursor: not-allowed;
}

.slot-btn.selected {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

@media (max-width: 1024px) {
  .venue-details-grid {
    grid-template-columns: 1fr;
  }
  .specs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-main {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-main {
    height: 240px;
  }
  .gallery-thumbs {
    gap: var(--space-sm);
  }
  .gallery-thumb {
    height: 60px;
  }
}
