* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.beer-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 20px;
}

.beer-card {
  display: flex;
  background: white;
  border-radius: 8px;
  overflow: visible;
  position: relative;
  min-height: 300px;
  margin-left: 20px;
}
.card1{
  background-color: #006D77;
}
.card2{
  background-color: #FFB703;
}
.card3{
  background-color: #9A3324;
}
.card4{
  background-color: #A2B29F;
}


.beer-img {
  width: 90px;
  height: auto;
  object-fit: contain;
  position: absolute;
  left: -35px;
  top: 20px;
  z-index: 1;
}
.img-sachet{
  height: 120px;
  left: -50px;
}


.beer-info {
  padding: 30px 20px 20px 80px;
  position: relative;
  z-index: 0;
}

.beer-card.dark {
  background: #000;
  color: #fff;
  border: 2px solid #00000036;
  box-shadow: -10px 5px 30px 5px #00000078;
}

.beer-card.red {
  background: #ea515a;
  color: #fff;
  border: 2px solid #00000036;
  box-shadow: -10px 5px 30px 5px #00000078;
}

.beer-card.light {
  background: #fdebd2;
  border: 1px solid #ccc;
  color: #333;
  border: 2px solid #00000036;
  box-shadow: -10px 5px 30px 5px #00000078;
}

h2 {
  margin-bottom: 10px;
}

p {
  margin: 5px 0;
}

.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: absolute;
  bottom: 9px;
  right: 0;
}
.light h2{
  color: black!important;
}
.btn.red {
  background: #ea515a;
  color: #fff;
}
.btn.gold{
  background-color: #D4A017;
  color: white;
}
.btn.teal{
  background-color: #006D77;
  color: white;
}

.btn.dark {
  background: #000;
  color: #fff;
}

.btn.light {
  background: #fff;
  color: #000;
}

.btn.outline {
  border: 1px solid #000;
  background: transparent;
  color: #000;
}
.beer-container{
  transition: transform 0.3s;
}
.beer-container:hover {
  transform: translateY(-5px);
}

@media (max-width: 700px) {
  .beer-container{
    grid-template-columns: 1fr;
    padding: 5px;
  }
  .beer-info {
    padding: 30px 20px 20px 60px;
  }
  .beer-img{
    width:80px;
    top:10px;
    left:-35px;
  }

}






.header-hero {
  position: relative;
  height: 100vh;
  width: 100vw;
  background: url('../wp-content/uploads/2024/website_banner_landscape.jpg') no-repeat center center/cover;
  display: flex;
  overflow: hidden;
  color: white;
}
.wh1{
  color: white!important;
  margin: 0.4em 0;
  font-size: 5.5rem;
}

.header-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(0 0 0 / 73%), #00000033);
  z-index: 1;
}

.header-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  max-width: 1400px;
  padding: 0 50px;
  position: relative;
  z-index: 2;
}
.header-hero-top{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2vh;
}
.header-hero-bottom{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end
}
.header_bottom_text{
  display: flex;
  flex-direction: row;
}
.nomargin{
  margin-top: 0;
}
.content_section{
  width: 100%;
}

h1 {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 500;

}

.app-subheading {
  font-weight: 300;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.app-tagline {
  font-size: 0.9rem;
  font-weight: 300;
  margin-top: 20px;
}

.app-scroll {
  font-size: 1rem;
  margin-bottom: 50px;
  display: inline-block;
  color: #fffff2!important;
  width: 50%
}

@media screen and (max-width: 768px) {
  .app-hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .header-hero-content{
    padding: 0;
  }
  .header-hero-top{
    margin-bottom: 5vh;
  }
  .header-hero-bottom{
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .header_bottom_text{
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  .wh1{
  color: white!important;
  margin: 0.4em 0;
  font-size: 4rem;
}

}


