/* ============================================================
   1800 Vine St — Venue Area Page Styles
   ============================================================ */

/* ============================================================
   HERO
   ============================================================ */
.venue-hero {
  position: relative;
  height: 100dvh;
  overflow: hidden;
}

.venue-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.venue-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0) 100%);
}

.venue-hero-content {
  position: absolute;
  bottom: 48px;
  left: 48px;
  z-index: 2;
}

.venue-view-photos {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.85;
}

.venue-camera-icon {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.venue-hero-title {
  font-family: 'Roboto Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
  font-size: 52px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1;
  margin: 0;
}

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.venue-main {
  background: white;
  padding: 0 48px;
}

.venue-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding: 48px 0;
}

.venue-col--full {
  grid-column: 1 / -1;
}

.venue-divider {
  display: none;
}

.venue-label {
  font-family: 'Inter Tight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #000;
  margin-bottom: 12px;
}

.venue-body {
  font-family: 'Inter Tight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  line-height: 1.5;
}

/* ============================================================
   DROPDOWN
   ============================================================ */
.venue-dropdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #000;
  padding: 14px 16px;
  cursor: pointer;
  width: 100%;
}

.venue-dropdown-text {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #000;
}

.venue-chevron {
  width: 16px;
  height: 16px;
  filter: brightness(0);
}

/* ============================================================
   FAQS
   ============================================================ */
.venue-faq-list {
  width: 100%;
}

.venue-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  width: 100%;
}

.venue-faq-col {
  display: flex;
  flex-direction: column;
}

@media (max-width: 480px) {
  .venue-faq-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.venue-faq-item {
  border: none;
}

.venue-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 14px 0;
  cursor: pointer;
  font-family: 'Inter Tight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  text-align: left;
  gap: 16px;
}

.venue-faq-chevron {
  width: 16px;
  height: 16px;
  filter: brightness(0);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.venue-faq-item.is-open .venue-faq-chevron {
  transform: rotate(180deg);
}

.venue-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-in-out, padding 0.35s ease-in-out;
  padding: 0;
}

.venue-faq-item.is-open .venue-faq-answer {
  max-height: 400px;
  padding: 0 0 18px 0;
}

.venue-faq-answer p {
  font-family: 'Inter Tight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #000;
  line-height: 1.5;
}

/* ============================================================
   FOOTER
   ============================================================ */
.venue-footer {
  background: #000;
  padding: 56px 48px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.venue-footer-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.venue-footer-nav a {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: white;
  text-decoration: none;
}

.venue-footer-nav a:hover {
  text-decoration: underline;
}

.venue-footer-logo {
  height: 48px;
  width: auto;
  /* black logo on black bg - invert to white */
  filter: invert(1);
}

.venue-footer-address {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .venue-main {
    padding: 0 24px;
  }

  .venue-row {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px 0;
  }

  .venue-hero-content {
    bottom: 32px;
    left: 24px;
  }

  .venue-hero-title {
    font-size: 36px;
  }

  .venue-footer {
    padding: 40px 24px 32px;
  }
}

@media (max-width: 480px) {
  .venue-hero-title {
    font-size: 32px;
  }

  .venue-footer-nav {
    flex-direction: column;
    gap: 12px;
  }
}

/* ============================================================
   BOTTOM CTA CARDS
   ============================================================ */
.venue-cta-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #000;
}

.venue-cta-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 240px;
  padding: 24px;
  text-decoration: none;
  color: #000;
  background: #fff;
  border-right: 1px solid #000;
  transition: background 0.2s ease, color 0.2s ease;
}

.venue-cta-card:last-child {
  border-right: none;
}

.venue-cta-card:hover {
  background: #000;
  color: #fff;
}

.venue-cta-card:hover .venue-cta-label,
.venue-cta-card:hover .venue-cta-desc {
  color: #fff;
}

/* Default: show black icon, hide white */
.venue-cta-icon--default { display: block; }
.venue-cta-icon--hover   { display: none; }

/* Hover: show white icon, hide black */
.venue-cta-card:hover .venue-cta-icon--default { display: none; }
.venue-cta-card:hover .venue-cta-icon--hover   { display: block; }

/* Left card: right-align text */
.venue-cta-card--left .venue-cta-bottom {
  text-align: right;
}

.venue-cta-arrow {
  position: absolute;
  top: 24px;
}

.venue-cta-arrow--left {
  left: 24px;
}

.venue-cta-arrow--right {
  right: 24px;
}

.venue-cta-icon {
  width: 36px;
  height: 36px;
  display: block;
}

.venue-cta-bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.venue-cta-label {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #000;
  transition: color 0.2s ease;
}

.venue-cta-desc {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #000;
  line-height: 1.3;
  transition: color 0.2s ease;
}

@media (max-width: 480px) {
  .venue-cta-cards {
    grid-template-columns: 1fr;
  }

  .venue-cta-card {
    border-right: none;
    border-bottom: 1px solid #000;
  }

  .venue-cta-card:last-child {
    border-bottom: none;
  }
}

/* ============================================================
   RATE CARD
   ============================================================ */
.rate-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
  margin-top: 16px;
}

.rate-card {
  border: 1px solid #000;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rate-card-header-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 0 0 20px 0;
}

.rate-card-header {
  font-family: 'Inter Tight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #000;
  margin: 0;
}

.rate-card-min {
  font-family: 'Inter Tight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.rate-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 0;
}

.rate-row-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.rate-time {
  font-family: 'Inter Tight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rate-time-sub {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  letter-spacing: 0;
}

.rate-price {
  font-family: 'Inter Tight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #000;
  white-space: nowrap;
}

.rate-unit {
  font-size: 15px;
  font-weight: 400;
  color: #666;
}

.rate-blocks {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rate-block {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #444;
}

.rate-block strong {
  font-weight: 600;
  color: #000;
}

.rate-block-div {
  width: 1px;
  height: 12px;
  background: #ccc;
  flex-shrink: 0;
}

.rate-divider {
  height: 1px;
  background: #e5e5e5;
  width: 100%;
}

.rate-includes {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  font-style: italic;
  color: #000;
  margin: 6px 0 0 0;
  letter-spacing: 0.01em;
}

@media (max-width: 480px) {
  .rate-card-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PHOTO GALLERY GRID
   ============================================================ */
.venue-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  margin-top: 16px;
}

.venue-photo-item {
  margin: 0;
  padding: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.venue-photo-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: opacity 0.2s ease;
}

.venue-photo-item:hover .venue-photo-thumb {
  opacity: 0.85;
}

.venue-photo-caption {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #666;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .venue-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .venue-photo-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PHOTO MODAL
   ============================================================ */
.photo-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.photo-modal.is-open {
  display: flex;
}

.photo-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  cursor: pointer;
}

.photo-modal-stage {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: calc(100vw - 160px);
  max-height: calc(100vh - 80px);
  overflow: hidden;
}

.photo-modal-img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 80px);
  object-fit: contain;
  user-select: none;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  will-change: transform;
}

.photo-modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 3;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  opacity: 1;
  transition: opacity 0.15s ease;
}

.photo-modal-close:hover {
  opacity: 1;
}

.photo-modal-close img {
  width: 28px;
  height: 28px;
  filter: brightness(0);
}

.photo-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(0, 0, 0, 0.06);
  border: none;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease;
}

.photo-modal-nav:hover {
  background: rgba(0, 0, 0, 0.12);
}

.photo-modal-prev {
  left: 20px;
}

.photo-modal-next {
  right: 20px;
}

.photo-nav-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0);
}

.photo-nav-icon--prev {
  transform: scaleX(-1);
}

.photo-modal-counter {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(0, 0, 0, 0.5);
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  pointer-events: none;
}

@media (max-width: 480px) {
  .photo-modal {
    background: #fff;
    align-items: center;
    justify-content: center;
  }
  .photo-modal-overlay {
    display: none;
  }
  .photo-modal-stage {
    position: relative;
    z-index: 1;
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .photo-modal-img {
    width: 100vw;
    max-width: 100vw;
    max-height: 100vh;
    height: auto;
    object-fit: contain;
  }
  .photo-modal-close {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 10;
  }
  .photo-modal-counter {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }
  .photo-modal-prev,
  .photo-modal-next {
    display: none;
  }
}
