/* GLOBAL STYLE */
body {
  background: #0b0b0b;
  color: #fff;
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}
/* Remove bullets from bar and cocktail lists */
#barItems,
#barItems li,
#cocktailItems,
#cocktailItems li {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

/* HERO SECTION */
.barcocktail-hero {
  position: relative;
  height: 55vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.barcocktail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.barcocktail-hero-overlay {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 20px;
}

.barcocktail-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: gold;
  margin-bottom: 0.5rem;
}

.barcocktail-hero p {
  color: #ddd;
  font-size: 1.2rem;
}

/* MAIN SECTION */
.barcocktail-section {
  padding: 80px 20px;
}

.barcocktail-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

/* COLUMN STYLES */
.bar-menu, .cocktail-menu {
  background: #111;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.08);
}

/* HEADER SECTIONS */
.bar-header, .cocktail-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 10px;
}

.bar-header h2, .cocktail-header h2 {
  font-size: 1.8rem;
  color: gold;
  font-weight: 700;
  margin: 0;
}

.bar-header input,
.cocktail-header input {
  flex: 1;
  max-width: 220px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #444;
  background-color: #1a1a1a;
  color: #f5f5f5;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
}

.bar-header input:focus,
.cocktail-header input:focus {
  border-color: gold;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* COLUMN LIST HEADERS */
.bar-header-row, .cocktail-header-row {
  display: flex;
  justify-content: space-between;
  background: #1a1a1a;
  border-bottom: 2px solid gold;
  padding: 12px 20px;
  border-radius: 8px 8px 0 0;
  font-weight: 600;
  color: gold;
  margin-bottom: 10px;
}

/* ITEMS */
.bar-item, .cocktail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1a1a1a;
  padding: 14px 20px;
  margin-bottom: 8px;
  border-left: 4px solid gold;
  border-radius: 6px;
  transition: 0.3s;
}

.bar-item:hover, .cocktail-item:hover {
  background: #222;
  transform: translateX(4px);
}

.item-name {
  flex: 1;
  color: #f5f5f5;
  font-size: 1rem;
}

.item-price {
  color: gold;
  font-weight: 600;
  width: 80px;
  text-align: right;
}

.bar-item.empty, .cocktail-item.empty {
  text-align: center;
  color: #777;
  border-left: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .barcocktail-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bar-header, .cocktail-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .bar-header input, .cocktail-header input {
    width: 100%;
    max-width: 100%;
  }
}
