@font-face {
  font-family: 'Biennale-Regular';
  src: url('../fonts/Biennale-Medium (1).otf') format('opentype');
  font-style: normal;
}

@font-face {
  font-family: 'Biennale-Bold';
  src: url('../fonts/Biennale-Medium (1).otf') format('opentype');
  font-style: normal;
}

/* Announcement Bar */
.announcement-bar {
  color: #fff;
  background: #0c2a2c;
  font-family: 'Biennale-Regular';
  font-size: 17.5px;
  text-align: center;
  text-transform: capitalize;
  padding: 9px 3px;
  margin-bottom: 0;
}

/* Hero Section */
.hero {
  position: relative;
  background-image: url("../../assets/images/hero.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 70%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.hero > * {
  position: relative;
  z-index: 2;
}

/* Nav */
.site-nav {
  text-align: center;
  padding: 10px;
  padding-bottom: 2%;
}

.site-logo {
  width: 20%;
  margin-bottom: 20px;
}

/* Hero Content */
.hero-content {
  text-align: center;
  width: 100%;
}

.hero-heading {
  color: #fff;
  font-family: 'Biennale-Bold';
  font-size: 60px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}

.hero-subtext {
  color: #e3b63b;
  font-family: 'Biennale-Bold';
  font-size: 30px;
  font-weight: 400;
  line-height: 1.5;
  text-transform: capitalize;
}

/* Button */
.btn-outline {
  color: #fff !important;
  background-color: transparent;
  border: 3px solid #fff;
  border-radius: 16px;
  font-family: 'Biennale-Bold';
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
  width: 20%;
  padding: 14px 0;
  text-align: center;
}

/* Footer */
.site-footer {
  font-family: 'Biennale-Regular';
  background-color: #47423e;
  padding: 6px 10px;
  text-align: center;
}

.site-footer a,
.site-footer a:hover {
  font-family: 'Biennale-Regular';
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 0;
}

/* Cards */
.top {
  padding-top: 28px;
}

.card {
  padding: 15px;
}

.card-title {
  color: #000;
  font-family: 'Biennale-Bold';
  font-size: 18px;
  font-weight: 700;
}

.label-bold {
  font-family: 'Biennale-Bold';
  font-size: 14px;
  font-weight: 700;
  color: #000;
}

.label-bold span {
  font-family: 'Biennale-Regular';
  font-size: 14px;
  font-weight: normal;
  color: #000;
}

/* Store Info */
.store-info {
  gap: 7px;
}

.store-info .address {
  font-family: 'Biennale-Regular';
  font-size: 14px;
  font-style: normal;
  line-height: 20px;
  margin-bottom: 0;
}

.store-info .tags {
  gap: 5px;
}

.store-info .tags .tag {
  font-family: 'Biennale-Regular';
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  padding: 4px 8px;
  border-radius: 4px;
}

.store-info .tags .tag[data-delivery-tag="false"] {
  background-color: #000;
  color: #fff;
}

.store-info .tags .tag[data-delivery-tag="true"] {
  background-color: #33e1aa;
  color: #000;
}

/* Responsive — Mobile */
@media screen and (max-width: 767px) {
  .hero {
    background-image: url("../../assets/images/hero.jpg");
    min-height: 100vh;
  }

  .hero-heading {
    font-size: 40px;
    line-height: 1.2;
  }

  .hero-subtext {
    font-size: 23px;
  }

  .site-logo {
    width: 50%;
  }

  .btn-outline {
    width: 60%;
  }
}

/* Responsive — Tablet */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .btn-outline {
    font-size: 12px;
    padding: 7px 0;
    width: 60%;
  }
}

/* Responsive — Large Desktop */
@media screen and (min-width: 1300px) {
  .hero {
    min-height: 100vh;
  }
}