@font-face {
  font-family: "Candara";
  src: url("/fonts/Candara.ttf") format("truetype");
}

@font-face {
  font-family: "Candara";
  src: url("/fonts/Candara_Bold.ttf") format("truetype");
  font-weight: bold;
}

@font-face {
  font-family: "Bisque";
  src: url("/fonts/Bisque-Regular.otf") format("opentype");
}

:root {
  --cream: #f1ef77;
  --cream2: #f8f79f;
  --blush: #f5e6d8;
  --bg: #ffdf9f;
  --bg-card: #fff3d0;
  --accent: #b5451b;
  --accent2: #d4831a;
  --dark: #2c1a0e;
  --mid: #6b3a1f;
  --light: #fff9ee;
  --border: #e8b96a;
  --pill-bg: #b5451b;
  --pill-txt: #fff9ee;
  --shadow: 0 4px 28px rgba(44, 26, 14, 0.1);
}

body {
  font-family: "Candara", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.asnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  z-index: 999;

  background: transparent;

  padding: 2px 0 0 0px;

  border-bottom: none;
  backdrop-filter: blur(5px);
  transition:
    background 0.4s ease,
    padding 0.4s ease,
    backdrop-filter 0.4s ease,
    box-shadow 0.4s ease;
}

.logo {
  height: 90px;

  transition: all 0.4s ease;
}

.navbar .nav-link {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: sentence-case;

  color: var(--cream);

  transition: all 0.3s ease;
}

.navbar .nav-link:hover {
  color: #e93616;
}

.navbar .nav-link.active {
  color: #000;
}

/* Button */
.nav-pill {
  background: #f8f688;
  color: #333;
  font-family: "Candara", sans-serif;
  border: 1px solid var(--accent);
  padding: 8px 18px;
  min-width: 150px;
  text-align: center;
  border-radius: 50px;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.1em;
  text-decoration: none;

  transition: all 0.3s ease;
}

.nav-pill:hover {
  background: var(--accent);
  color: #fff;
  transform: scale(1.01) translateY(-2px);
  box-shadow: 0 2px 2px 0px #ebfaaa8e;
}

/* ===== Dropdown (Hover Smooth) ===== */
/* ===== DROPDOWN FIX ===== */

.nav-item.dropdown {
  position: relative;
  /* padding-bottom: 12px; invisible hover area */
}

.nav-item.dropdown .dropdown-menu {
  display: block;

  opacity: 0;
  visibility: hidden;

  position: absolute;
  top: 100%;
  left: 0;

  transform: translateY(8px);
  transition: all 0.3s ease;

  min-width: 230px;

  border: none;
  border-radius: 18px;

  background: #fff;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

  pointer-events: none;

  padding: 10px 0;

  margin-top: 0;
}

/* SHOW */
.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;

  transform: translateY(0);

  pointer-events: auto;
}

/* ITEM */
.dropdown-item {
  padding: 12px 22px;

  font-size: 15px;
  font-weight: 600;

  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: var(--cream2);
  color: #000;

  padding-left: 28px;
}

.asnav .nav-link {
  color: #000;

  transition: all 0.3s ease;
}

/* ===== AFTER SCROLL ===== */

.asnav.scrolled {
  background: rgba(253, 248, 240, 0.92);

  backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(0, 0, 0, 0.06);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

  padding: 4px 0;
}

/* SMALL LOGO AFTER SCROLL */

.asnav.scrolled .logo {
  height: 58px;
}

/* TEXT COLOR AFTER SCROLL */

.asnav.scrolled .nav-link {
  color: var(--text-soft);
}

.asnav.scrolled .nav-link:hover {
  color: var(--caramel);
}

.hero-banner-f {
  width: 100%;
  height: 100dvh;
  overflow: hidden;
}

.hero-banner-f img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}

@media (max-width: 768px) {
  .asnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    z-index: 999;

    background: transparent;

    padding: 1px 0 0 0;

    border-bottom: none;
    backdrop-filter: blur(10px);
    transition:
      background 0.4s ease,
      padding 0.4s ease,
      backdrop-filter 0.4s ease,
      box-shadow 0.4s ease;
  }

  .logo {
    height: 50px;

    transition: all 0.4s ease;
  }

  .asnav.scrolled {
    background: rgba(253, 248, 240, 0.92);

    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(0, 0, 0, 0.06);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

    padding: 2px 0;
  }

  .asnav.scrolled .logo {
    height: 45px;
  }

  .hero-banner-f {
    width: 100%;
    height: 50dvh;
    overflow: hidden;
  }

  .dropdown-item {
    padding: 8px 20px;

    font-size: 12px;
    font-weight: 600;

    transition: all 0.2s ease;
  }

  .hero-banner-f img {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% 5%;
  }
}

.hero-section {
  background: linear-gradient(
    135deg,
    #ffdf9fb0 0%,
    #ffe8b2de 50%,
    #ffcf70a2 100%
  );
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(181, 166, 27, 0.07) 0%,
    transparent 70%
  );
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 209, 26, 0.09) 0%,
    transparent 70%
  );
}

/* Heading */
.hero-tagline {
  font-family: "Candara", sans-serif;
  font-size: clamp(2rem, 3.3vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 18px;
}

/* .hero-tagline span {
    color: var(--accent);
} */

/* Paragraph */
.hero-sub {
  font-size: 21px;
  color: #000;
  max-width: 560px;
  text-align: justify;
  margin-bottom: 28px;
  line-height: 1.4;
  font-family: "Candara", sans-serif;
}

/* Buttons */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 3;
}

/* BOTH BUTTON COMMON */
.btn-hero-primary,
.btn-hero-outline {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 70px;

  padding: 10px 20px;

  border-radius: 60px;

  font-family: "Candara", sans-serif;
  font-size: 1rem;
  font-weight: 700;

  text-decoration: none !important;

  cursor: pointer;

  transition: all 0.35s ease;

  overflow: hidden;
}

/* PRIMARY BUTTON */
.btn-hero-primary {
  background: var(--cream);
  color: var(--dark);
  border: 1px solid var(--accent);

  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.btn-hero-primary:hover {
  background: var(--accent) !important;
  color: #fff !important;

  transform: translateY(-4px);

  box-shadow: 0 14px 24px rgba(181, 69, 27, 0.25);
}

/* OUTLINE BUTTON */
.btn-hero-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-hero-outline:hover {
  background: var(--accent);
  color: #fff !important;

  transform: translateY(-4px);

  box-shadow: 0 14px 24px rgba(181, 69, 27, 0.2);
}

/* Right Side Image */
.hero-image-box {
  width: 100%;
  position: relative;
}

.hero-img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  display: block;
}

.hero-image-box {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.carousel-fade .carousel-item {
  transition: opacity 3.2s ease-in-out;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-section {
    padding: 50px 0;
  }

  .hero-tagline {
    text-align: center;
  }

  .hero-sub {
    text-align: center;
    max-width: 100%;
  }

  .hero-cta-group {
    justify-content: center;
  }
}

/* IMPACT SECTION */

.impact-section {
  position: relative;

  padding: 50px 0;

  overflow: hidden;

  background: linear-gradient(135deg, #fff9db, #fff2b8, #ffe89a);
}

/* ANIMATED LINES */

.impact-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.impact-lines::before,
.impact-lines::after {
  content: "";

  position: absolute;

  width: 200%;
  height: 2px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(211, 176, 111, 0.4),
    transparent
  );

  animation: moveLine 8s linear infinite;
}

.impact-lines::before {
  top: 30%;
}

.impact-lines::after {
  bottom: 25%;
  animation-duration: 12s;
}

@keyframes moveLine {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0%);
  }
}

.rain-bg {
  position: relative;
  overflow: hidden;
}

.rain-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      100deg,
      transparent,
      transparent 3px,
      rgba(200, 137, 74, 0.04) 3px,
      rgba(200, 137, 74, 0.04) 4px
    ),
    repeating-linear-gradient(
      170deg,
      transparent,
      transparent 8px,
      rgba(106, 156, 100, 0.03) 8px,
      rgba(106, 156, 100, 0.03) 9px
    );
  pointer-events: none;
  z-index: 0;
}

.rain-bg > * {
  position: relative;
  z-index: 1;
}

/* TITLE */

.impact-title {
  text-align: center;

  font-family: "Candara", sans-serif;

  font-size: clamp(2.2rem, 2.5vw, 3rem);

  font-weight: 700;

  color: #1e3a2f;
  margin-bottom: 25px;
}

/* CARD */

.impact-card {
  text-align: center;

  padding: 30px 20px;

  border-radius: 20px;

  background: rgba(255, 255, 255, 0.35);

  backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.5);

  transition: 0.4s ease;

  height: 100%;
}

.impact-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* NUMBER */

.impact-card h3 {
  font-size: clamp(2.8rem, 3.5vw, 4.5rem);

  font-weight: 700;

  color: #c9983a;

  margin-bottom: 14px;

  font-family: "Candara", sans-serif;
}

/* TEXT */

.impact-card p {
  font-size: 1.2rem;

  color: #1e3a2f;

  margin: 0;

  line-height: 1.4;

  font-weight: 600;
}

/* MOBILE */

@media (max-width: 768px) {
  .impact-section {
    padding: 30px 0;
  }

  .impact-card {
    padding: 24px 16px;
  }

  .impact-card p {
    font-size: 1rem;
  }
}

.impact-extra {
  display: block;
  font-size: 45px;
  font-weight: 700;
  color: #c9983a;
  line-height: 1;
  margin-bottom: 15px;
  font-family: "Candara", sans-serif;
}

/* =========================
   FOUNDATION FOOTER
========================= */

.foundation-footer {
  position: relative;

  overflow: hidden;

  background: linear-gradient(135deg, #fdf8f0 0%, #f7f1e7 35%, #eef5e8 100%);

  padding: 70px 0 25px;

  border-top: 1px solid rgba(0, 0, 0, 0.06);

  font-family: "Candara", sans-serif;
}

/* Decorative Fade Lines */

.footer-line {
  position: absolute;

  width: 500px;
  height: 500px;

  border-radius: 50%;

  filter: blur(80px);

  opacity: 0.18;

  pointer-events: none;
}

.footer-line-1 {
  background: #d4e4d0;
  top: -180px;
  left: -180px;
}

.footer-line-2 {
  background: #f5ddb8;
  bottom: -180px;
  right: -120px;
}

.footer-line-3 {
  background: #efe2ff;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
}

/* Logo */

.footer-logo {
  width: 99%;
  object-fit: contain;
}

.footer-tagline {
  margin-top: 10px;

  font-size: 15px;

  color: #5c4a32;

  line-height: 1.2;
}

/* Titles */

.footer-title {
  font-size: 22px;

  font-weight: 700;

  color: #d08b3d;

  margin-bottom: 8px;
}

/* Links */

.footer-links {
  display: flex;

  flex-direction: column;

  gap: 4px;
}

.footer-links a {
  text-decoration: none;

  color: #5c4a32;

  font-size: 17px;
  line-height: 110%;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #c8894a;

  transform: translateX(5px);
}

/* Contact */

.footer-contact-box {
  display: flex;

  flex-direction: column;

  gap: 18px;
}

.footer-contact-item {
  display: flex;

  gap: 14px;

  align-items: flex-start;
}

.footer-icon {
  width: 42px;
  height: 42px;

  border-radius: 50%;

  background: #fff;

  display: flex;

  align-items: center;
  justify-content: center;

  color: #c8894a;

  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);

  flex-shrink: 0;
}

.footer-contact-heading {
  font-size: 17px;

  font-weight: 700;

  color: #2d2416;

  margin-bottom: 4px;
}

.footer-contact-text {
  font-size: 15px;

  color: #5c4a32;

  line-height: 1.5;

  margin: 0;
}

/* CTA */

.footer-cta-text {
  font-size: 16px;

  line-height: 1.3;

  color: #5c4a32;

  margin-bottom: 10px;
}

.footer-btn {
  display: inline-flex;

  align-items: center;

  gap: 3px;

  background: linear-gradient(135deg, #c8894a, #e8b87a);

  color: #fff;

  padding: 8px 16px;

  border-radius: 60px;

  text-decoration: none;

  font-size: 16px;

  font-weight: 700;

  transition: 0.35s ease;

  box-shadow: 0 10px 25px rgba(200, 137, 74, 0.25);
}

.footer-btn:hover {
  transform: translateY(-4px);

  color: #fff;

  box-shadow: 0 14px 35px rgba(200, 137, 74, 0.35);
}

/* Divider */

.footer-divider {
  width: 100%;
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.08),
    transparent
  );

  margin: 40px 0 20px;
}

/* Bottom */

.footer-bottom {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 20px;

  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;

  font-size: 15px;

  color: #5c4a32;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .foundation-footer {
    padding: 55px 0 20px;
  }

  .footer-logo {
    height: 75px;
  }

  .footer-title {
    font-size: 18px;
  }

  .footer-bottom {
    text-align: center;

    justify-content: center;
  }

  .footer-btn {
    width: 100%;

    justify-content: center;
  }
}

@media (max-width: 768px) {
  .s-row,
  .s-row.rev {
    flex-direction: column !important;
  }

  .img-c {
    width: 100% !important;
  }

  .cnt-c {
    width: 100% !important;
  }
}

