/* ===============================
   FONTS
================================ */

/* Header font: Klomisk */
@font-face {
  font-family: 'Klomisk';
  src: url('fonts/Klomisk.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Klomisk';
  src: url('fonts/Klomisk-Italic.woff2') format('woff2');
  font-weight: normal;
  font-style: italic;
}

/* Body font: Lato Light */
@font-face {
  font-family: 'LatoLight';
  src: url('fonts/lato-light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

/* ===============================
   GLOBAL STYLES
================================ */

body {
  margin: 0;
  font-family: 'LatoLight', sans-serif;
  font-size: 18px;
  background: #fffaf5;
  color: #1b2a41;
}

a {
  text-decoration: none;
  color: inherit;
}

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section h2 {
  font-family: 'Klomisk', serif;
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 50px;
}

/* ===============================
   HEADER
================================ */

.site-header {
  text-align: center;
  padding: 20px 16px;
}

.site-header h1 {
  font-family: 'Klomisk', serif;
  font-size: 3.6rem;
  margin: 0;
  line-height: 1.1;
}

/* ===============================
   BANNER SLIDESHOW
================================ */

.banner {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.banner img {
  position: absolute;
  width: 100%;
  height: 500px;
  object-fit: cover;
  opacity: 0;
  animation: fade 15s infinite;
}

.banner img:nth-child(1) { animation-delay: 0s; }
.banner img:nth-child(2) { animation-delay: 5s; }
.banner img:nth-child(3) { animation-delay: 10s; }

@keyframes fade {
  0% { opacity: 0; }
  10% { opacity: 1; }
  30% { opacity: 1; }
  40% { opacity: 0; }
  100% { opacity: 0; }
}

/* ===============================
   SERVICE BOXES
================================ */

.service-box {
  display: flex;
  align-items: flex-start;
  border: 1px solid #1b2a41;
  border-radius: 36px;
  padding: 28px;
  margin-bottom: 40px;
}

/* Image wrapper becomes the circular frame */
.service-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid #1b2a41;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 20px;
}

/* Image fills the circle */
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Text */
.service-main {
  flex: 1;
}

.service-main h3 {
  font-family: 'Klomisk', serif;
  font-size: 1.5rem;
  margin: 0 0 6px 0;
}

.service-main p {
  margin: 0 0 12px 0;
}

/* ===============================
   REFILL SUB-BOX
================================ */

.refill-box {
  border: 1px solid #1b2a41;
  border-radius: 24px;
  padding: 16px;
  margin-top: 14px;
  margin-left: 140px;
  font-size: 0.95rem;
}

/* ===============================
   POLICIES
================================ */

.policy-box {
  border: 1px solid #1b2a41;
  border-radius: 36px;
  padding: 32px;
  line-height: 1.6;
}

/* ===============================
   CTA SECTION
================================ */

.cta-section {
  max-width: 700px;
  margin: 60px auto;
  padding: 24px 20px;
  border: 1px solid #1b2a41;
  border-radius: 40px;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 10px;
}

.cta-section p {
  margin-bottom: 16px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  background: #1b2a41;
  color: #ffffff;
  font-size: 18px;
  font-family: 'LatoLight', sans-serif;
}

/* ===============================
   FOOTER
================================ */

footer {
  text-align: center;
  padding: 40px 20px;
  font-size: 0.9rem;
}

/* ===============================
   MOBILE RESPONSIVE
================================ */

@media (max-width: 768px) {

  .site-header h1 {
    font-size: 2.8rem;
  }

  .section {
    padding: 60px 16px;
  }

  .service-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  @media (max-width: 768px) {

  .service-image {
    width: 110px;
    height: 110px;
    margin: 0 0 14px 0;
  }


  .service-main {
    padding-left: 0;
  }

  .refill-box {
    margin-left: 0;
    text-align: center;
  }

  .cta-section {
    margin: 40px 16px;
    padding: 20px 16px;
  }
}

