/* Pub on the Patio — tropical accent page */

.patio-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 2rem) 1rem 4rem;
  overflow: hidden;
  text-align: center;
}

.patio-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 20, 12, 0.55) 0%, rgba(8, 8, 8, 0.92) 70%, var(--bg) 100%),
    linear-gradient(135deg, rgba(255, 120, 40, 0.15), rgba(0, 140, 120, 0.12)),
    url("/assets/images/patio/patio-bar.jpg") center / cover no-repeat;
}

.patio-hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.patio-hero__logo {
  width: min(420px, 92vw);
  height: auto;
  margin: 0 auto 1.25rem;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.6));
}

.patio-hero__lead {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 42ch;
  margin: 0 auto 1.75rem;
}

.patio-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn--patio {
  background: linear-gradient(135deg, #ff8c42, #e85d04);
  color: #111;
  box-shadow: 0 8px 28px rgba(232, 93, 4, 0.35);
}

.btn--patio-outline {
  border-color: #2dd4bf;
  color: #2dd4bf;
}

.btn--patio-outline:hover {
  background: rgba(45, 212, 191, 0.12);
  color: #5eead4;
}

.patio-band {
  background: linear-gradient(90deg, rgba(232, 93, 4, 0.18), rgba(45, 212, 191, 0.12), rgba(232, 93, 4, 0.18));
  border-block: 1px solid var(--border);
  padding: 2.5rem 0;
  text-align: center;
}

.patio-band__quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  max-width: 48ch;
  margin: 0 auto;
  line-height: 1.45;
}

.patio-features {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .patio-features { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .patio-features { grid-template-columns: repeat(3, 1fr); }
}

.patio-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}

.patio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 140, 66, 0.45);
}

.patio-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 140, 66, 0.15);
  color: #ff8c42;
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
}

.patio-card h3 {
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.patio-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.patio-events {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .patio-events { grid-template-columns: 1fr 1fr; }
}

.patio-event {
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(30, 81, 40, 0.35), var(--bg-card));
}

.patio-event__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2dd4bf;
  margin-bottom: 0.5rem;
}

.patio-event h3 {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 1.15rem;
}

.patio-gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .patio-gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .patio-gallery { grid-template-columns: repeat(3, 1fr); }
}

.patio-gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
}

.patio-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.patio-gallery__item:hover img {
  transform: scale(1.05);
}

.patio-gallery__item--tall {
  aspect-ratio: 3 / 4;
}

@media (min-width: 960px) {
  .patio-gallery__item--wide {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
  }
}

.patio-cta {
  text-align: center;
  padding: 3rem 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255, 140, 66, 0.12), transparent),
    var(--bg-elevated);
  border-top: 1px solid var(--border);
}
