/* ============================
   HOME PAGE STYLING
   ============================ */

/* Gold button */
.btn-gold {
  background-color: #d4a373;
  color: #000;
  padding: 12px 28px;
  border: none;
  font-weight: 600;
}

.btn-gold:hover {
  background-color: #c08f5f;
}

/* Section spacing */
.section-padding {
  padding: 80px 0;
}

/* Light grey sections */
.beers-section,
.gallery-section {
  background: #f5f5f5;
}

/* Cards */
.card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* Footer */
.footer-cta {
  background: #000;
  color: #fff;
  padding: 60px 0;
}
/* hero section */
.hero {
  height: 90vh;
  background: url("assets/background5.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
}

/* Dark overlay for readability */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* Make text appear above overlay */
.hero .container {
  position: relative;
  z-index: 2;
}
