section.venues{
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  color: #fff;
}
.venues h1{
  font-size: 32px;
  margin: 0 0 8px;
}
.venues .intro{
  opacity: .9;
  margin: 0 0 18px;
}

.venues-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 1100px){ .venues-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px){ .venues-grid{ grid-template-columns: 1fr; } }

/* Card frame like Juliet */
.venue-card{
  background: rgba(255,255,255,0.06);        /* glassy panel */
  border: 3px solid rgba(255,255,255,0.20);  /* thick translucent frame */
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .3s ease;         /* smooth purple flash */
}
.venue-card:hover{
  border-color: rgba(158,66,245,0.60);       /* purple highlight */
}

/* Slider */
.venue-card .slider{
  position: relative;
  overflow: hidden;
}
.venue-card .slides{
  display: flex;
  transition: transform .4s ease;
  position: relative;
  z-index: 1; /* slides below arrows */
}
/* SQUARE images like Juliet (no matter source) */
.venue-card .slides img{
  width: 100%;
  aspect-ratio: 1 / 1;   /* keep a perfect square */
  object-fit: cover;     /* fill nicely, crop edges */
  flex: 0 0 100%;
  display: block;
}

/* Arrows */
.venue-card .prev,
.venue-card .next{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0,0,0,.45);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 8px;
  z-index: 2; /* ensure arrows sit above slides */
}
.venue-card .prev{ left: 8px; }
.venue-card .next{ right: 8px; }
.venue-card .prev:hover,
.venue-card .next:hover{
  background: rgba(0,0,0,.65);
}

/* Info */
.venue-card .info{
  padding: 14px 16px 16px;
  background-color: rgb(0 0 0 / 50%);       /* subtle dark panel like Juliet */
  border-top: 1px solid rgba(255,255,255,0.06);
}
.venue-card .info h3{
  margin: 0 0 6px;
  font-size: 20px;
}
.venue-card .info h3 span{
  font-size: 14px;
  opacity: .8;
  margin-left: 6px;
}
.venue-card .info p{
  margin: 0;
  opacity: .95;
}
.venue-card .links{
  margin-top: 10px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.venue-card .links a{
  color: #9e42f5;
  text-decoration: none;
}
.venue-card .links a:hover{
  text-decoration: underline;
}

/* "Find out more" button */
.venue-card .info .more {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background-color: #9e42f5;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.venue-card .info .more:hover {
  background-color: #7d2fd1;
  text-decoration: none;
}

/* Mobile tweak: keep the thicker border visible on small screens */
@media (max-width: 640px){
  .venue-card{
    border: 3px solid rgba(255,255,255,0.20);
  }
}

@media (max-width: 640px){
  section.venues { 
    padding: 28px 14px;  /* was 40px 20px */
  }
}


/* ===== Venue detail styles ===== */
.venue-detail .head .titles .addr a {
  display:inline-block;
  margin-left:6px;
  padding:4px 8px;
  background:#9e42f5;
  color:#fff;
  border-radius:6px;
  text-decoration:none;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s ease;
}
.venue-detail .head .titles .addr a:hover {
  background:#7d2fd1;
}
