@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* typography.css — only font stuff */
.pt-serif-regular {
  font-family: "PT Serif", serif;
  font-weight: 400;
  font-style: normal;
}






.goog-te-banner-frame,
.goog-te-menu-value,
#goog-gt-tt,
.goog-te-balloon-frame,
.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

/* Style your dropdown */
#language-select {
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
  cursor: pointer;
  background: white;
}

div {
  /* margin: 10px; */
  font-size: 18px;
}


* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  color: #222;
  background: #fff;
}

main.page-content {
  flex: 1;
}

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

/* Header + navigation */
.site-header {
  width: 100%;
  background: #fae3c9;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
}

.main-nav {


}

.titlex {  font-size: 9.5rem;
  font-weight: bold;
  justify-content: center;
  display: flex;

}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0px 0;
  min-height: 220px;
  flex-wrap: wrap;
}

.logo {
  height: auto;
  max-height: 280px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links li a {
  padding: 10px 8px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 150ms ease, color 150ms ease;
}

.nav-links li a:hover,
.nav-links li a:focus-visible {
  background: rgba(0, 0, 0, 0.08);
  outline: none;
}


/* ===== TWO ROW NAV FIX ===== */
.nav-links-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.second-row {
  margin-top: 6px;
}

/* Second row icons (uniform size) */
.second-row img {
  width: 32px;     /* adjust size here */
  height: 32px;
  object-fit: contain;
  display: block;
}

/* Center icons nicely */
.second-row li {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Optional: spacing + hover effect */
.second-row a {
  padding: 6px;
  border-radius: 8px;
}

.second-row a:hover img {
  transform: scale(1.2);
  transition: 0.2s ease;
}

/* Side nav (mobile) */
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: width 0.5s;
  padding-top: 60px;
  display: none;
  flex-direction: column;
}

.sidenav.open {
  width: 260px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 18px;
  color: #ddd;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #fff;
}

.closebtn {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 36px;
  background: transparent;
  border: none;
  color: #ddd;
  cursor: pointer;
}

.closebtn:focus {
  outline: 2px solid #fff;
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  padding: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.nav-toggle-line {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px 0;
  background: #333;
  border-radius: 2px;
}

/* Main content */
.page-content {
  /* padding: 20px 20px; */
  max-width: 100%;
  /* margin: 0 auto; */
  color: #1c1c1c;
}

.page-content p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin: 0;
}
/* info cards grid */
    .info-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      margin: 4rem 0 3rem;
    }

    .info-card {
      flex: 1 1 280px;
      background: #ffffffdd;
      backdrop-filter: blur(4px);
      background: linear-gradient(145deg, #fffef9, #fffaf2);
      padding: 2rem 1.8rem;
      border-radius: 36px;
      box-shadow: 0 12px 26px -8px rgba(0,0,0,0.08);
      transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      opacity: 0;
      transform: translateY(28px);
      border: 1px solid #f3e9db;
    }

    .info-card--visible {
      opacity: 1;
      transform: translateY(0);
    }

    .info-card h2 {
      font-family: 'PT Serif', serif;
      font-size: 1.9rem;
      font-weight: 700;
      margin-bottom: 1.2rem;
      color: #4a6b3c;
      letter-spacing: -0.3px;
    }

    .info-card p {
      margin-bottom: 1rem;
      color: #3f3e3a;
      font-weight: 400;
    }

    /* progress section */
    .progress {
      margin: 0rem 0 0rem;
    }

/* .info-card--visible {
  animation: ZoomInOut 0.45s ease-out forwards;
} */

.info-card:hover {
  border-radius: 20px;
  padding: 24px;
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.14);
}

@keyframes ZoomInOut {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  70% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Progress section */
.progress {
  padding: 20px 0;
}

.progress h2 {
  font-size: 2rem;
  text-align: center;
  margin: 0 0 24px;
}

.progress p {
  font-size: 3rem;
  text-align: center;
  margin: 0 0 24px;
}

.progress-container {
  display: flex;
  flex-wrap: wrap; /* keep cards in a single row */
  justify-content: center;
  gap: 20px;
  /* overflow-x: auto; allow horizontal scrolling on smaller screens */
  /* padding: 0 14px; */
  /* -webkit-overflow-scrolling: touch; */
}



/* Hide scrollbar for a cleaner look */
.progress-container::-webkit-scrollbar {
  height: 8px;
}

.progress-container::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 4px;
}
.progress-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.progress-container::-webkit-scrollbar {
  display: none;
}

.progress-card {
  width: 260px;
  height: 220px;
  background: linear-gradient(
    to bottom,
    #a84300 0%,     /* deep orange-brown */
    #8f3600 40%,    /* darker mid tone */
    #7a2d00 65%,    /* rich brown */
    #c97b5c 100%    /* soft faded peach bottom */
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  text-align: center;
}

@media (max-width: 768px) {
.progress-card {

  background: linear-gradient(
    to bottom,
    #a84300 0%,     /* deep orange-brown */
    #8f3600 40%,    /* darker mid tone */
    #7a2d00 65%,    /* rich brown */
    #c97b5c 100%    /* soft faded peach bottom */
  );
  display: flex;
  /* flex-direction: column; */
  width: calc(50% - 20px); /* 2 per row */
  height: auto;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  text-align: center;
}

}

.progress-pic {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  margin-bottom: 14px;
}

.progress-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.progress-icon svg {
  width: 72px;
  height: 72px;
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 6;
  fill: rgba(255, 255, 255, 0.15);
}

.progress-icon svg path {
  stroke-linejoin: round;
  stroke-linecap: round;
}

.progress-text {
  font-size: 20px;
  color: #ffffff;
  line-height: 1.2;
}


/* final animation */
@keyframes zoomSpark {
  0% {
    transform: scale(1);
    text-shadow: none;
  }
  30% {
    transform: scale(1.4);
    text-shadow: 0 0 10px #fff, 0 0 20px #6bbf2b, 0 0 30px #6bbf2b;
  }
  60% {
    transform: scale(1.2);
    text-shadow: 0 0 8px #fff, 0 0 18px #6bbf2b;
  }
  100% {
    transform: scale(1.1);
    text-shadow: 0 0 6px #6bbf2b;
  }
}

.final-effect {
  animation: zoomSpark 1s ease-in-out infinite alternate;
  font-weight: 800;
}

/* stop animation after 7s */
.final-stop {
  animation: none;
  transform: scale(1.1);
  font-weight: 800;
}


/* hidden before scroll */
.progress-card {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: all 0.6s ease;
}

/* when visible */
.progress-card.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* number pop effect */
@keyframes pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.25); }
  100% { transform: scale(1); }
}

.counter-animate {
  animation: pop 0.3s ease;
}


.info-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.14);
}

.info-card h2 {
  margin-top: 0;
  font-size: 1.35rem;
  color: #1b1b1b;
}

.info-card p {
  margin: 0 0 12px;
  line-height: 1.6;
  color: #333;
}

/* Gallery (carousel) */
.slider {
  position: relative;
  width: 100%;
  height: 120;
  overflow: hidden;
}

.gallery {
  display: flex;
  /* width: 100%;
  height: 150%; */
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

/* Default = Mobile */
.gallery img {
  flex: 0 0 100%;
  width: 100%;
  height: 60vh;
  border-radius: 10px;
  object-fit: cover;
  scroll-snap-align: center;
}

/* Desktop */
@media (min-width: 768px) {
  .gallery img {
    width: 90%;
    height: 80vh;
  }
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  z-index: 10;
}

.prev {
  left: 12px;
}

.next {
  right: 12px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  /* transition: background 150ms ease; */
}

.dot.active {
  background: rgba(0, 0, 0, 0.7);
}

.count-zoom {
  display: inline-block;
  animation: countZoom 2s ease-in-out;
}

@keyframes countZoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}

/* Hide scrollbar */
.gallery::-webkit-scrollbar {
  display: none;
}

.gallery {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Hide scrollbar */
.gallery::-webkit-scrollbar {
  display: none;
}

.gallery {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Hide scrollbar in WebKit browsers (optional, for cleaner look) */
.gallery::-webkit-scrollbar {
  height: 8px;
}

.gallery::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}



/* Responsive behavior */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .sidenav {
    display: flex;
  }

  .bottom-nav {
    display: flex;
  }

  .page-content {
    padding-bottom: 100px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    padding: 24px 0;
  }

  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 250ms ease;
    z-index: 18;
  }

  .nav-overlay.visible {
    opacity: 1;
    pointer-events: auto;
  }
}







.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame {
  display: none !important;
  height: 0 !important;
}
body {
  top: 0 !important;
  position: static !important;
}

    /* ── Language Switcher ── */
    .lang-switcher {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding: 10px 24px 0;
    }

    .lang-select {
  font-family: 'PT Serif', serif;
  font-size: 0.85rem;
  padding: 5px 36px 5px 12px; /* extra right padding for icon */
  border: 1.5px solid #b5804a;
  border-radius: 6px;
  background-color: #fffdf8;
  color: #3a2a15;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;

  /* ADD THIS */
  background-image: url("data:image/svg+xml;utf8,<svg fill='%233a2a15' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
}

    .lang-select:hover,
    .lang-select:focus {
      border-color: #8a5c2a;
      box-shadow: 0 0 0 3px rgba(181,128,74,0.15);
      outline: none;
    }