@charset "utf-8";
/* ==========================================================
   Water Lilly Pharmacy
   wlp_style.css
   Page layout and page-specific components only
   ========================================================== */
/* ---------- Base Layout ---------- */
html, body {
  max-width: 100vw;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
}
body {
  display: flex;
  flex-direction: column;
}
.content-row {
  padding: 0;
}
/* ---------- Hero Image ---------- */
#hero_image {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
}
#hero_image picture, #hero_image img {
  display: block;
}
/* Button base */
.hero-button {
  display: block;
  width: max-content;
  max-width: calc(100% - 2rem);
  margin: 1rem auto 0 auto;
  padding: 0.55rem 1rem;
  background-color: #347FCA; /* Color SteelBlue */
  border: none;
  color: #F0F8FF; /* Color White */
  font-family: "Source Sans 3", Arial, sans-serif;
  text-decoration: none;
  box-shadow: 0 0.45rem 0.9rem rgba(0, 0, 0, 0.35);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
a.btn.hero-button {
  font-family: "Source Sans 3", Arial, sans-serif;
}
a.btn.hero-button .hero-button-inner, a.btn.hero-button .hero-button-text, a.btn.hero-button .buttontop, a.btn.hero-button .buttonbottom {
  font-family: inherit;
}
.hero-button:hover, .hero-button:focus {
  background-color: #62A07E; /* Color Seagrass */
  color: #F0F8FF; /* Color White */
  text-decoration: none;
  box-shadow: none;
}
/* Button interior */
.hero-button-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-button-icon {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
}
.hero-button-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
}
.buttontop {
  margin: 0;
  padding-bottom: 4px;
  color: #F0F8FF; /* Color White */
  font-size: 1.15rem;
  font-weight: 500;
  text-align: center;
}
.buttonmid {
  margin: 0;
  padding: 0;
  color: #F0F8FF; /* Color White */
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
}
.buttonbottom {
  margin: 0;
  padding-top: 4px;
  color: #EF5BA1; /* Color Deep Pink */
  font-size: 0.75rem;
  font-weight: 400;
  text-align: center;
}
/* Medium screens and larger: button overlays image */
@media (min-width: 768px) {
  .hero-button {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0;
    transform: translate(-100%, -50%);
    z-index: 2;
  }
}
@media (min-width: 992px) {
  .hero-button {
    margin-left: -4rem;
  }
}
/* ---------- Differentiators ---------- */
#differentiators .differentiator-item {
  padding: 1rem;
}
#differentiators .differentiator-icon {
  display: block;
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}
#differentiators .differentiator-item p {
  margin: 0 auto;
}
/* ---------- Map ---------- */
.map {
  width: 100%;
  max-width: 950px;
  height: 480px;
  border: 0;
}
/* ---------- Lists / Icon Bullets ---------- */
.custom-bullets {
  list-style: none;
  padding-left: 0;
}
.custom-bullets > li {
  margin-bottom: 10px;
  padding-left: 30px;
  background-position: 0 5px;
  background-repeat: no-repeat;
}
/* ---------- Contact Components ---------- */

#contact-content {
  margin-bottom: 1.5rem;
}

.left-col {
  padding: 1rem;
}

.right-col {
  padding: 1rem;
}

.contact-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-right: auto;
  margin-left: auto;
}

/* Each real column stacks its own contact items independently */
.contact-column {
  display: block;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-column .contact-item:last-child {
  margin-bottom: 0;
}

.contact-entry {
  display: flex;
  align-items: flex-start;
}

/* Icon div */
.contact-icon-box {
  flex: 0 0 40px;
  width: 40px;
  line-height: 0;
  margin-right: 10px;
}

/* Icon image */
.contact-icon {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin: 0;
}

.contact-copy {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.contact-copy h4 {
  margin: 0 0 0.1rem 0;
  padding: 0;
}

.contact-copy p {
  margin: 0;
  line-height: 1.3rem;
}

.contact-copy p.smalltext,
.contact-copy .smalltext {
  font-size: 0.8rem;
  line-height: 1.15rem;
  letter-spacing: 0.04em;
  text-align: left;
}

.contact-bubble {
  padding: 10px;
  background-color: rgba(52, 127, 202, 0.2);
  border-radius: 10px;
}

.contact-copy .btn {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 1rem auto 0 auto;
  font-size: 12pt;
}
/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .title {
    font-size: 3.5rem;
  }
  .subtitle {
    margin: 20px auto 15px;
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .content-row {
    padding: 0 20px;
  }
  .title {
    font-size: 3rem;
  }
  .subtitle {
    margin: 20px auto 15px;
    font-size: 1.3rem;
  }
  .map {
    height: 420px;
  }
}
@media (max-width: 576px) {
  .titles {
    max-width: 85vw;
  }
  .title {
    font-size: 2.5rem;
  }
  .subtitle {
    margin: 10px auto 15px;
    font-size: 1.2rem;
  }
  .map {
    height: 360px;
  }
  .contact-info1, .contact-info2, .contact-btn {
    margin-left: 0;
  }
}
@media (max-height: 500px) {
  .subtitle, .phonebutton {
    display: none;
  }
}