

    @font-face {
  font-family: 'Roboto-Regular';
  src: url('../fonts/Roboto-Regular.ttf') format('truetype');
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
    font-family: 'Roboto-Regular';
}

/* SECTION */
.hero-section {
  width: 100%;
  background: #000;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.hero-header {
  width: 100%;
  height: 13vh;
  padding: 0 5vw;
     display: flex;
        justify-content: center;
        align-items: center;
}

/* LOGO */
.logo img {
  width: 8vw;
  min-width: 6rem;
}

/* BUTTON */
.shop-btn {
  color: #fff;
    background-color: #32373c;
    border: 4px solid white;
    padding: calc(.167em + 2px) calc(1.333em + 2px);
    text-decoration: none;
    border-radius: 12px;
    font-weight: bolder;
    font-size: 1.6em;
}

.shop-btn:hover {
  background: #fff;
  color: #000;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 90vh;
  background-image: url("../images/liv_ Desktop LP Banner (1).png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* CONTENT CENTER */
.hero-content {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 0 5vw;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: #ffffff;
}

/* TEXT */
.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 2.5rem;
}

.hero-content p {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  margin-bottom: 2rem;
  max-width: 45rem;
}

/* BUTTON */
.hero-btn {
  display: inline-block;
  color: #fff;
    background-color: #32373c;
    border: 4px solid white;
    padding: calc(.167em + 2px) calc(1.333em + 2px);
    text-decoration: none;
    border-radius: 12px;
    font-weight: bolder;
    font-size: 1.6em;
    cursor: pointer;
}



.locations-section {
  width: 100%;
  padding: 5vh 6vw;
  background: #fff;
}

.locations-heading {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 6vh;
  letter-spacing: 0.15em;
}

/* GRID */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4vh 3vw;
}

/* CARD */
.location-card {
  text-align: center;
}

.location-card img {
  width: 100%;
  height: 26vh;
  object-fit: cover;
  border-radius: 0.6rem;
  margin-bottom: 1.5rem;
}

.location-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  letter-spacing: 0.12em;
}

.location-card p {
  font-size: 0.9rem;
  line-height: 1.6em;
  margin-bottom: 0.5rem;
}

/* BUTTONS */
.btn-group {
display: flex;
    justify-content: center;
    gap: 0.5vw;
    align-items: center;
    flex-direction: column;
}

.btn-group a {
  padding: 0.8em 1.6em;
  font-size: 0.8rem;
  text-decoration: none;
  background: #000;
  color: #fff;
  border-radius: 0.2rem;
  transition: 0.3s ease;
   cursor: pointer;
}

.btn-group a:hover {
  opacity: 0.8;
}

.read-more-link {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.95rem;
  color: blue;
  text-decoration: none;
  cursor: pointer;
}

/* WRAPPER FOR POSITIONING */
.read-more-wrapper {
  position: relative;
}

/* INLINE POPUP */
.inline-popup {
  position: absolute;
      bottom: 150%;
  left: 50%;
  transform: translateX(-50%);
  width: 70vw;
  max-width: 23rem;

  background: #fff;
  padding: 1rem;
  border-radius: 0.8rem;
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.15);

  font-size: 0.9rem;
  line-height: 1.5;

  display: none;
  z-index: 10;
}

/* SMALL ARROW */
.inline-popup::before {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0.5rem;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}

.info-list {
  padding-left: 1.2em;
  margin: 1rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.info-list li {
  margin-bottom: 0.5em;
      text-align: left;
}


.site-footer {
  width: 100%;
  padding: 3vh 9vw;
  background: #fff;
  text-align: center;
}

.shop-btn1 {
  padding: 0.8em 2em;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: #fff;
  border: 0.1em solid #fff;
  transition: all 0.3s ease;
  background: #000;
}



/* TOP LINKS */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 4vw;
  margin-bottom: 3vh;
  margin-top: 6vh;
}

.footer-intro {
  max-width: 60rem;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
}


.footer-links a {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-decoration: none;
  color: #1a2b4c;
}

/* BOTTOM TEXT */
.footer-bottom p {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: #1a2b4c;
}

.footer-bottom a {
  color: #1a2b4c;
  text-decoration: none;
}

/* TABLET */
@media (max-width: 992px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-header {
    height: 15vh;
    padding: 0 6vw;
       
  }

  .logo img {
    width: 28vw;
  }

  .shop-btn {
    font-size: 0.8rem;
    padding: 0.7em 1.6em;
  }

 .hero-image {
    height: 85vh;
     background-image: url("../images/image (13).png");
  }

  .hero-content {
    padding: 0 7vw;
  }
  
    .inline-popup {
    width: 85vw;
  }
}

@media (max-width: 600px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }

  .location-card img {
            height: 20vh;
        width: 85%;
  }

  .btn-group {
    gap: 1.2vh;
  }
}

