/* =============================
   Base
   ============================= */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: Arial, Helvetica, sans-serif; color: #111; }

/* =============================
   Header
   ============================= */
.topbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}

.navwrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 18px 28px;
}

.logo-link { display: inline-flex; align-items: center; }
.logo-knot { height: 200px; width: auto; display: block; }

.nav {
  display: flex;
  justify-content: center;
  gap: 26px;
}

/* Larger nav items */
.nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

/* No underline on hover */
.nav a:hover {
  text-decoration: none;
  opacity: 0.9;
}

.phone { white-space: nowrap; }
.phone a {
  display: inline-block;
  padding: 10px 16px;
  background: #2f4f3a; /* dark country green */
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.35);
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.phone a:hover { background: #3b644a; }

/* =============================
   Hero / Slider
   ============================= */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.slider { position: relative; height: 100%; }
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.slide.active { opacity: 1; }
.slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.45), rgba(0,0,0,.25));
  z-index: 1;
}

/* =============================
   Hero Text
   ============================= */
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.hero-content h1 {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(44px, 7vw, 76px);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff;
  text-shadow: 0 4px 18px rgba(0,0,0,0.6);
}

/* =============================
   Intro Section
   ============================= */
.intro {
  background: #fff;
  padding: 64px 20px;
}
.intro-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.intro-inner p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* =============================
   Slider dots
   ============================= */
.dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
}
.dot.active { background: #fff; }

/* =============================
   Contact Strip
   ============================= */
.contact-strip {
  background: #fff;
  padding: 56px 20px;
}
.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.contact-col h2 {
  margin: 0 0 14px 0;
  font-family: "Times New Roman", Times, serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #111;
}
.contact-col p { margin: 0 0 14px 0; line-height: 1.7; }
.contact-link {
  color: #2f4f3a;
  text-decoration: none;
  font-weight: 700;
}
.contact-link:hover { text-decoration: underline; }

/* Social icons */
.social-icons {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
}
.social-icon {
  width: 34px;
  height: auto;
  display: block;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.social-icon:hover {
  opacity: 0.85;
  transform: scale(1.05);
}

.hygiene { margin-top: 16px; }
.hygiene-img {
  margin-top: 10px;
  max-width: 220px;
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

/* =============================
   Footer
   ============================= */
.footer {
  text-align: center;
  padding: 24px 12px;
  font-size: 14px;
}

/* =============================
   Responsive
   ============================= */
@media (max-width: 900px) {
  .navwrap {
    grid-template-columns: auto auto;
    row-gap: 14px;
  }
  .nav {
    grid-column: 1 / -1;
    justify-content: center;
    flex-wrap: wrap;
  }
  .nav a { font-size: 16px; }
  .phone {
    grid-column: 1 / -1;
    text-align: center;
  }
  .contact-inner { grid-template-columns: 1fr; }
}
/* Hero heading refinement */
.hero-content h1 {
  line-height: 1.15;
  text-align: center;
}

/* Mobile tuning */
@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 34px;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 0 16px;
  }
}

/* Prevent header overlapping hero text */
.hero-content {
  padding-top: 120px;
}

@media (max-width: 600px) {
  .hero-content {
    padding-top: 160px;
  }
}
