/* Bar page: hero, drinks grid, events, Sandy's */

/* ========== BAR PAGE ========== */
.bar-hero {
  background: var(--coral);
  padding: clamp(104px, 12vw, 168px) 24px clamp(72px, 8vw, 120px);
  min-height: clamp(320px, 42vh, 520px);
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.bar-hero::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.bar-hero::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.bar-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.bar-hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.drink-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 40px auto;
}

.drink-card {
  background: var(--white);
  border-radius: var(--radius-max);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  text-align: center;
  transition: transform 0.3s ease;
}

.drink-card:hover {
  transform: translateY(-6px);
}

.drink-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.drink-card-content {
  padding: 28px;
}

.drink-card-content h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.drink-card-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 32px auto;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--coral-light);
  transition: all 0.3s ease;
}

.event-card:hover {
  transform: scale(1.03);
  border-color: var(--coral);
}

.event-card .icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--coral-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.event-card .icon-wrap svg {
  width: 28px;
  height: 28px;
  stroke: var(--coral);
  fill: none;
}

.event-card h4 {
  font-family: var(--font-heading);
  color: var(--coral);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

/* Sandy's Cafe */
.sandys-section {
  background: var(--coral-bg);
  padding: 60px 24px;
}

.sandys-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.sandys-image {
  border-radius: var(--radius-max);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.sandys-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.sandys-content h2 {
  margin-bottom: 8px;
  color: var(--coral);
}

.sandys-badge {
  display: inline-block;
  background: #ffd700;
  color: #333;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.sandys-content p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Bar Menu placeholder */
.menu-placeholder {
  background: var(--white);
  border-radius: var(--radius-max);
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 3px dashed var(--coral-light);
  max-width: 600px;
  margin: 0 auto;
}

.menu-placeholder h3 {
  color: var(--coral);
  margin-bottom: 12px;
}

.menu-placeholder p {
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .bar-hero {
    padding: clamp(92px, 24vw, 132px) 16px 52px;
    min-height: clamp(280px, 52vh, 440px);
  }
  .drink-grid {
    grid-template-columns: 1fr;
  }
  .events-grid {
    grid-template-columns: 1fr;
  }
  .sandys-inner {
    grid-template-columns: 1fr;
  }
}
