@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@200;300;400;500;600;700;800;900&display=swap');


:root {
  --primary-color: #00968e;
  --secondary-color: #ffbd59;
}


.light-background {
  --background-color: #ffbd59;
  --surface-color: #ffbd59;
}

.bg-color {
  --page-bg-color: #e0e0e0;
  --page-bg-color-rbg: rgb(224, 224, 224);
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Rubik", Helvetica, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

header {
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 20px 10%; */
  padding: 0px 10%;
  /* background: transparent; */
  /* background: rgba(31, 27, 27, 0.9); */
  background: rgba(255, 255, 255, 0.95);

  transition: all 0.5s ease;
}

header.scrolled {
  /* padding: 15px 5%; */
  padding: 5px 10%;

  /* navbar color  for food4education */
  /* background: #e4e4c5; */

  /* navbar color for might */
  /* background: rgba(31, 27, 27, 0.95); */

  /* pure black */
  /* background: rgba(0, 0, 0, 0.95); */
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

header .brand {
  /* color: #e4e4c5; */
  color: #00968e;
  font-size: 3em;
  font-weight: 700;
  text-decoration: none;
  z-index: 1001;
}

header .navigation {
  position: relative;
  margin-left: auto;
}

header .navigation .navigation-items a {
  position: relative;
  color: #00968e;
  font-size: 1em;
  font-weight: 500;
  text-decoration: none;
  margin-left: 30px;
  transition: 0.3s ease;
}

header .navigation .navigation-items a:before {
  content: '';
  position: absolute;
  background: #00968e;
  /* background: #e4e4c5; */
  width: 0;
  height: 3px;
  bottom: -5px;
  left: 0;
  transition: 0.3s ease;
}

header .navigation .navigation-items a:hover:before {
  width: 100%;
}

section {
  padding: 100px 5%;
}

.home {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: rgba(31, 27, 27, .35);
  /* background: rgba(255, 255, 255, 0.35); */
  margin-top: 0;
}

.home::before {
  z-index: 777;
  content: '';
  position: absolute;
  background: rgba(31, 27, 27, .35);
  /* background: rgba(255, 255, 255, 0.35); */
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.home .content {
  z-index: 888;
  color: #00968e;
  /* width: 70%; */
  margin-top: 50px;
  display: none;
  padding: 0 5%;
}

.home .content.active {
  display: block;
}

.home .content h1 {
  font-weight: 800;
  font-size: 4.5rem;
  margin-bottom: 10px;
  line-height: 1.2;
}

.home .content h3 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 1.5;
}

.home .content h1 span {
  font-size: 1.2em;
  font-weight: 600;
}

.home .content p {
  margin-bottom: 65px;
}

.home .content a {
  background: #fff;
  padding: 15px 35px;
  color: #00968e;
  font-size: 1.1em;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
  display: inline-block;
}

.home .media-icons {
  z-index: 888;
  position: absolute;
  right: 30px;
  display: flex;
  flex-direction: column;
  transition: 0.5s ease;
}

.home .media-icons a {
  color: #00968e;
  font-size: 1.6em;
  transition: 0.3s ease;
}

.home .media-icons a:not(:last-child) {
  margin-bottom: 20px;
}

.home .media-icons a:hover {
  transform: scale(1.3);
}

.home video {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.donate-btn {
  background: #00968e;
  border: 2px solid #00968e;
  border-radius: 8px;
  color: white !important;
  padding: 10px 20px;
  border-radius: 5px;
  margin-left: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.donate-btn:hover {

  background: #ffffff;
  /* background: #00968e; */
  color: #00968e !important;
  transform: translateY(-2px);
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.donate-btn:before {
  display: none;
}

.section-home-hungry-kids {
  /* background: #e4e4c5; */
  background: #e0e0e0;
  text-align: center;
  padding: 100px 5%;
}

.title,
h2 {
  font-family: Rubik, Helvetica, Arial, sans-serif;
  color: #ffffff;
  margin: 0 0 40px;
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 600;
}

  .title,
  h3 {
  font-family: "Rubik", Helvetica, Arial, sans-serif;
  color: #ffffff;
  margin: 0 0 40px;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 600;    
  } 

.font-bigger {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.btn {
  padding: 15px 30px;
  font: 500 1rem Rubik, Helvetica, Arial, sans-serif;
  text-decoration: none;
  border: 2px solid #00968e;
  border-radius: 8px;
  background: #00968e;
  color: #e4e4c5;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn:hover {
  text-decoration: none;
  color: #00968e;
  /* background: #e4e4c5; */
  background: #f2f1f1;
}

.wrap {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
}

/* Hungry kids can't learn */
.main-container .row {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

/* .row {
  width: 100%;
} */

/* The big idea */
.section-home-the-idea {
  /* background: #ffad00; */
  /* background: #ffbd59; */
  background: #00968e;
  padding: 100px 5%;
}


/* About us */
.about-us-section {
  background: url("/assets/img/CNL-bg.png") center/cover no-repeat;
  padding: 45px 5%;
}

/* About us vision */
.about-us-section-vision {
  background: url("/assets/img/CNL-bg.png") center/cover no-repeat;
  padding: 145px 5%;
}



/* Our work */
.section-home-work-1 .wrap .title {
  color: #e4e4c5;
}

.section-home-work-1 .wrap .lead {
  color: #e4e4c5;
}

.lead {
  display: inline-block;
  font: 700 2.2rem Rubik, Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #fff;
}

.row.section-home-work-1 {
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}

.image-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

img,
svg,
video {
  display: block;
  width: 100%;
  height: auto;
}

.image-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.image-background:before {
  content: "";
  /* background: rgba(0, 0, 0, .3); */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.section-home-work-1 .wrap {
  padding-top: 150px;
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
}

.main-container .row.section-home-work-2 {
  padding-top: 0;
  padding-bottom: 0;
}

.section-home-work-2 {
  background: #1f1b1b;
  padding: 80px 5%;
  text-align: center;
}

.section-home-work-2 .wrap p {
  color: #e4e4c5;
}

/* Menu Button Styles */
.menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

.menu-btn span {
  display: block;
  width: 30px;
  height: 3px;
  background: #e4e4c5;
  margin: 6px auto;
  transition: all 0.3s ease;
}


/* Footer Styles */
footer {
  background: #1f1b1b;
  color: #e4e4c5;
  padding: 60px 5% 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.footer-column p,
.footer-column a {
  color: #e4e4c5;
  line-height: 1.6;
  margin-bottom: 15px;
  display: block;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #ffad00;
}

.footer-column .social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-column .social-icons a {
  font-size: 1.5rem;
  color: #e4e4c5;
  transition: transform 0.3s, color 0.3s;
}

.footer-column .social-icons a:hover {
  color: #ffad00;
  transform: translateY(-3px);
}

.subscribe-form {
  display: flex;
  margin-top: 20px;
}

.subscribe-form input {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 1rem;
}

.subscribe-form button {
  background: #ffad00;
  color: #1f1b1b;
  border: none;
  padding: 0 20px;
  border-radius: 0 4px 4px 0;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.subscribe-form button:hover {
  background: #e4e4c5;
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #e4e4c5;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffad00;
}


/* Mobile Styles */
@media(max-width: 992px) {
  header {
    padding: 15px 5%;
    justify-content: left !important;
  }

  .home .content {
    width: 90%;
  }

  .home .content h1 {
    font-size: 2.5rem;
  }

  .home .content h3 {
    font-size: 1.1rem;
  }

  .title,
  h2 {
    font-size: 2rem;
  }

  .title,
  h3 {
    font-size: 1.3rem;
  }  
}

@media(max-width: 768px) {
  .menu-btn {
    display: block;
    margin-left: auto;
  }

  header .navigation {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(31, 27, 27, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
    z-index: 1000;
  }

  header .navigation.active {
    left: 0;
  }

  header .navigation .navigation-items {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  header .navigation .navigation-items a {
    margin: 15px 0;
    font-size: 1.2rem;
  }

  .home .media-icons {
    right: 15px;
    bottom: 20px;
    flex-direction: row;
  }

  .home .media-icons a {
    margin: 0 10px !important;
  }

  .menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  section {
    padding: 80px 5%;
  }

  .home .content h1 {
    font-size: 3rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }
}

@media(max-width: 480px) {
  .home .content {
    width: 100%;
    margin-top: 30px;
  }

  header .brand{
  font-size: 1.2em;
  padding: 0px;
  }

  header.scrolled {
    /* padding: 15px 5%; */
    padding: 5px 5%;
  }

  .home .content h1 {
    font-size: 1.8rem;
  }

  .home .content h3 {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .title,
  h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

    .title,
  h3 {
    font-size: 1.3rem;
  } 

  .font-bigger {
    font-size: 1rem;
  }

  .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  .section-home-work-1 .wrap {
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .subscribe-form {
    flex-direction: column;
  }

  .subscribe-form input {
    border-radius: 4px;
    margin-bottom: 10px;
  }

  .subscribe-form button {
    border-radius: 4px;
    padding: 12px;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
  }
}



.logo {
  /* background: var(--accent-color); */
  /* position: relative; */
  inset: 0 auto 0 0;
  padding: 0 20px;
}

.logo img {
  max-height: 90px;
  margin-right: 8px;
}

.logo h1 {
  font-size: 26px;
  margin: 0;
  font-weight: 500;
  color: var(--contrast-color);
}

/* @media (max-width: 1200px) {
  .logo {
    order: 1;
  }

  .navmenu {
    order: 3;
  }
} */