* {
  margin: 0;
  padding: 0;
  /* overflow-x: hidden; */
}

body {
  background-image: url("./images/banner.jpg");

  /* background: ; */
  background-repeat: no-repeat;
  background-size: cover;
  /* font-family: 'arial , '; */
  font-family: Arial, Helvetica, sans-serif;
}


.color-layer {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.main-container {
  height: 100svh;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.card-container-outer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  position: relative;
}

.page-title {
  margin-bottom: 4rem;
  margin-top: 4rem;
  font-size: 3rem;
  color: white;
  /* color: rgb(159, 84, 12); */
  font-weight: 300;

}

.cards-container-inner {

  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 50px;
  margin-top: 50px;
}

.card {
  width: 450px;
  background-color: #f7f0f09f;
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  box-shadow: 0 25px 50px -12px rgba(12, 12, 12, 0.678);
  border-radius: 10px;
}

/* 1212129e */
.card-logo {
  /* background-color: rgb(255, 249, 249); */
  /* background-color: #f7f0f04f; */
  /* background-color: #f7f0f0a8; */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.card-logo-mobile {
  display: none;
  /* background-color: #f7f0f0a8; */
  /* display: flex; */
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.card:hover .logo {
  scale: 1.1;
}

.mobile-logo {
  display: none;
}

.desktop-logo {
  width: 180px;
  transition: scale 500ms ease;
}

.shop-info-container {
  color: black;
  /* color: white; */
  font-size: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.shop-title {
  text-align: center;
  color: rgb(159, 84, 12);
  cursor: pointer;
  text-transform: capitalize;

  /* text-shadow: 1px 1px 1px #141313; */
}

.shop-info-container {
  /* background-color: rgb(255, 249, 249); */
  /* background-color: rgb(255, 249, 249); */
  /* background-color: black; */
}

.shop-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
}

.shop-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  /* color: white; */
}

.btn {
  padding: 10px;
  border-radius: 5px;
  outline: none;
  border: 1px solid rgb(159, 84, 12);
  color: white;
  /* color: white; */
  background-color: rgb(159, 84, 12);
  cursor: pointer;
  font-size: 1.2rem;
  margin-top: 30px;
  text-align: center;
  text-decoration: none;
  /* letter-spacing: 2px; */
  transition: background-color 500ms ease;
  display: flex;
  width: 95%;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.btn:active {
  text-decoration: none;
}

.btn:hover {
  background-color: transparent;
  color: black;
}

.btn:hover img {
  filter: invert(0);
}

.btn img {
  filter: invert(1);
}

.shop-map {
  /* background-color: rgb(248, 245, 245); */
  /* background-color: black; */
  padding: 6px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}


@media only screen and (max-width: 768px) {

  * {
    overflow-x: hidden;
  }


  body {
    background-image: url("./images/banner-mobile-two.jpg");
    /* background-image: url("./images/banner-mobile.jpg") ; */
  }

  .shop-title{
    font-size: 1.3rem;
  }

  .cards-container-inner {
    flex-direction: column;
    padding: 10px;
    padding: 0 10px 0 10px;
  }

  .card {
    width: 90%;
    max-width: 450px;

  }

  .desktop-logo {
    display: none;
  }

  .mobile-logo {
    display: block;
    width: 60px;
  }


  .card-logo-mobile {
    display: flex;
  }

  .card-logo {
    display: none;
  }


  .card-header {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  /* .logo{
      width: 50px;
    } */


  .page-title {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 10px;
  }

  .card-container-outer {
    height: 100%;
  }

  .cards-container-inner {
    gap: 1rem;
    margin-top: 25px;
  }

  .shop-info-container {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  .shop-info{
    gap: 1px;
  }

  .btn {
    margin-top: 10px;
  }
}