/* ===============================
   GENERAL STYLES
================================= */
@import url('https://fonts.googleapis.com/css2?family=Playwrite+NZ+Basic:wght@100..400&family=SN+Pro:ital,wght@0,200..900;1,200..900&display=swap');

:root {
  --primary-font: "Noto Serif", serif;
  --secondary-font: "Luckiest Guy", cursive;
  --primary-color: #ff8301;
  --secondary-color: #00a5ec;
  --highlight-color: #ffca2a;
  --highlight-color-light: #bfb5af;
  --background-color: #f8fab1;
}


body {
    font-family: "Playwrite NZ Basic", cursive;
    margin: 0;
    padding: 10px;
    line-height: 1.6;
    color: #333;
    background-color: #f8fab1;
    scroll-behavior: smooth;
}

p {
      font-family: "SN Pro", sans-serif;
      font-size: large;
} 

 .nav-item{
    color: #FF6F3C;
 }



/* ===============================
   STICKY NAVIGATION
================================= */

.sticky-nav {
    position: sticky;
    top: 0;
    background: #fff;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 12px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 100;
}

/* Bootstrap loads after custom CSS; reinforce sticky on navbar */
.navbar.sticky-nav {
    position: sticky !important;
    top: 0;
    z-index: 1030;
}

.sticky-nav a {
    text-decoration: none;
    color: #FF6F3C;
    font-weight: bold;
    transition: color 0.3s;
}

.sticky-nav a:hover {
    color: #357ACC;
}
/* ===================================
   HERO SECTION
   =================================== */
#hero {
  background: url("../images/header-image.png") no-repeat center center;
  background-size: cover;
  background-position: center;
  height: 400px;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-center {
  text-align: center;
}

.hero-logo {
  width: 150px; /* adjust */
  margin-top: 15%;
}

.hero-section h1 {
    font-size: 1rem;
    font-family: 'Playwrite NZ Basic';
    font-weight: bold;
    color: brown;
    opacity: 2;
  }


.hero-section .bg-white {
  opacity: 0.8;
  min-height: 20px;
  width: 100%;
  padding: 5px;
  border-radius: 5px;
  margin-top: 10px;
}

.hero-section .custom-btn {
  margin-top: 20px;
}

.custom-btn {
  background-color: var(--highlight-color);
  border-color: var(--highlight-color);
  color: white;
}

.custom-btn:hover {
  background-color: var(--highlight-color-light);
  border-color: var(--highlight-color-light);
  color: white;
}


#resources {
    margin: 0px 30px;
    padding: 0px 22px;
}
.resources-title {
  margin: 0 10px;
  color: #FF6F3C;
  font-size: 2rem;
  font-weight: bolder;
  text-decoration-line:underline
}

.resources-title {
text-align:center;
}

.card-img-top {
  height: 400px;
  object-fit: cover;
  object-position: top;
}

/* ===============================
   ABOUT US (MOBILE FIRST)
================================= */

.about-us {
  padding: 40px 0;
  background: #fff;
}

.about-us__intro h2 {
  margin-bottom: 16px;
  font-weight:bolder;
}

.about-us__title {
  margin: 2px 0 16px;
  color: #FF6F3C;
  font-size: 1.4rem;
  font-weight: bolder;
}

.family-section {
  background: #ffca2a;
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 15px;
}

.about-us__intro p {
  max-width: none;
  width: 100%;
  text-align:justify
}

.about-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
}


.about-us__card {
  background: #f8f9fb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.about-us__card img {
  width: 100%;
  height: 220px;
  object-fit:contain;
  display: block;
}

.about-us__card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-us__card h3 {
  font-size: 1.4rem;
  font-weight: bolder;
  margin: 0;
  color: #FF6F3C;
}

.about-us__card p {
  margin: 0;
  font-family: "Playwrite NZ Basic", cursive;
  font-size: 17px;
}




/* ===================================
   CONTACT SECTION
   =================================== */
.contact-section {
  /* Customize contact section styles here */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 50px;
  color: white;
  text-align: left;
  background-color: #357ACC;
}

.contact-section h2 {
  color: white;
  margin-top: 16px;
}

#contact {
  margin-top: 20px;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  color: var(--secondary-color);
  padding: var(--bs-modal-padding);
}

/* ===================================
   FOOTER SECTION
   =================================== */
.footer-section {
  /* Customize footer section styles here */
  text-align: center;
  padding: 20px 0;
  flex-wrap: wrap;
  flex: space-between;
  background-color: white;
}

/* Footer icon spacing */
.footer-section .icon {
  display: inline-block;
  margin: 0 10px;
  font-size: 1.6rem;
  color: inherit;
  text-decoration: none;
}






@media (min-width: 768px) {
  .about-us__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .about-us__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}



/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  /* Customize styles for extra large screens here */
  
  .hero-section .banner {
    margin-top: 10px;
  }

  .hero-section {
    min-width: 1200px;
    min-height: 800px;
  }

  .hero-section h1 {
    font-size: 1.5rem;
    color: brown;
    opacity: 2;
  }

  .hero-logo {
    margin-top: 80px;
    min-width: 380px
  }
}
