:root {
  --primary: #0a4275;
  --accent: #005baa;
  --secondary: #e3f6fc;
  --bg: #fafcff;
  --text: #133042;
  --shadow: 0 2px 12px rgba(10,66,117,0.03);
}

* { box-sizing: border-box; padding: 0; margin: 0; }
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}


/* ============ HEADER LAYOUT (St. Jude style) ============= */
.header {
  background: var(--primary);
  color: #d93737;
  padding-top: 10px;
  box-shadow: var(--shadow);
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2px; 
   padding: 2px 0 10px 0;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 200px;
  min-width: 150px;
 
}

.logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
  background: #fff;
   margin-left: -160px;
}

.logo .tagline {
  font-size: 1.7rem;
  opacity: 0.93;
  margin-left: -4px;
  color: #ffffff;
  white-space: nowrap;
  font-weight: 700;
}

.search-form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 27px;
  padding: 3px 9px 3px 16px;
  border: 1px solid #e3e3e3;
  margin-right: -100px;
  min-width: 180px;
  max-width: 340px;
  width: 100%;
  flex: 1 1 300px;
  box-sizing: border-box;
}

.search-form input {
  border: none;
  font-size: 1rem;
  padding: 8px 4px;
  outline: none;
  background: transparent;
  width: 100%;
  color: #222;
}

.search-form button {
  border: none;
  background: none;
  font-size: 1.15rem;
  color: var(--primary);
  cursor: pointer;
  padding: 4px 7px;
}

.header-actions {
  display: flex;
  gap: 10px;
  flex: 1 1 auto;
  justify-content: flex-end;
  min-width: 200px;
  flex-wrap: wrap;
}

.login-btn,
.donate-btn {
  font-weight: 600;
  font-size: 1rem;
  padding: 7px 16px;
  border-radius: 5px;
  margin-bottom: 10px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.login-btn {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.login-btn:hover {
  background: var(--accent);
  color: #fff;
}

.donate-btn {
  background: #e5154f;
  color: #fff;
  padding: 7px 18px;
  border-radius: 5px;
}

.donate-btn:hover {
  background: #c9003f;
}

nav {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 5px rgba(10,66,117,0.02);
  margin-top: 0;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 0;
  width: 100%;
  padding-left: 0;
  margin: 0;
}

.nav-links li {
  flex: 1 1 0;
}

.nav-links a {
  display: block;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  padding: 18px 0;
  border-bottom: 3px solid transparent;
  transition: background 0.14s, border-bottom 0.16s;
  background: #fff;
  font-size: 1.09rem;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--secondary);
  border-bottom: 3px solid var(--accent);
  color: var(--primary);
}

/* Responsive adjustments */

@media (max-width: 900px) {
  .header-flex {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-top: 1px;
    padding-bottom: 0;
  }

  .logo {
    justify-content: flex-start;
    flex-wrap: nowrap;
  }

  .search-form {
    margin-right: 0;
    width: 100%;
    min-width: 0;
    max-width: none;
    flex: none;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
  }

  .login-btn,
  .donate-btn {
    flex: 1 1 auto;
    justify-content: center;
    margin-bottom: 10px;
  }

  nav {
    margin-top: 10px;
  }

  .nav-links {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    width: 100%;
    padding: 14px 0 14px 8px;
    border-radius: 0;
    font-size: 1.04rem;
    border-bottom: 1px solid #f6f6f6;
    border-left: 4px solid transparent;
    text-align: left;
  }

  .nav-links a:hover,
  .nav-links a.active {
    border-bottom: 3px solid var(--accent);
    border-left: 4px solid var(--accent);
    background: var(--secondary);
    color: var(--primary);
  }
}

@media (max-width: 600px) {
.logo{
  margin-top: -60px;
  margin-bottom: -60px;
  /* align-content: center; */
  align-self: center;
}

  .logo-img {
    margin-left: 5px;
    height: 100%;
    width: 100%;
  }

  .logo .tagline {
    font-size: 0.9rem;
  }

  .search-form input {
    font-size: 0.95rem;
    padding: 7px 4px;
  }

  .search-form button {
    font-size: 1.1rem;
    padding: 4px 6px;
  }

  .login-btn,
  .donate-btn {
    font-size: 0.95rem;
    padding: 7px 14px;
  }

  .nav-links a {
    font-size: 1rem;
    padding: 12px 4px 12px 12px;
  }
}


/* ============ PAGE & SECTIONS ============= */
.container {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 18px;
}

/* Main sections */
main section {
  margin: 36px 0;
  padding-top: 12px;
}
.section-header {
  margin-bottom: 14px;
  text-align: left;
  color: var(--accent);
}
.hero {
  background: var(--secondary);
  border-radius: 7px;
  box-shadow: var(--shadow);
  padding: 2rem 0 1.1rem;
  margin-top: 24px;
}
.hero h2 {
  color: var(--primary);
  font-size: 1.7rem;
  margin-bottom: 10px;
  word-break:break-word;
}
.hero p {
  font-size: 1.09rem;
  margin-bottom: 6px;
}

.trending {
  background: #fff;
  border-radius: 7px;
  box-shadow: var(--shadow);
  padding: 1.8rem 0 1rem;
}
.trending-items {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 11px;
}
.trending-item {
  background: var(--secondary);
  border-left: 3px solid var(--accent);
  padding: 17px 21px;
  border-radius: 6px;
  min-width: 220px;
  font-size: 1.04rem;
  flex: 1 0 220px;
  box-shadow: 0 1px 5px 0 rgba(10,66,117,0.05);
}

.impact-list {
  list-style: none;
  font-size: 1.13rem;
  padding: 0;
}
.impact-list li {
  margin-bottom: 10px;
}
.impact-list strong {
  color: var(--primary);
}
.impact-section {
  padding: 20px 0;
  background: #f9fcff; /* subtle background if needed */
}

.impact-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 10px;
  flex-wrap: wrap; /* for responsive stacking */
}

.impact-text {
  flex: 1 1 420px;
  min-width: 280px;
}

.impact-text h3 {
  color: #0a4275; /* your primary color */
  font-weight: 700;
  margin-bottom: 12px;
}

.impact-text ul {
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
  color: #133042;
}

.impact-text li {
  padding: 8px 0;
  line-height: 1.4;
}

.impact-text strong {
  font-weight: 600;
  color: #0a4275;
}

.impact-image {
  flex: 1 1 300px;
  min-width: 280px;
  display: flex;
  justify-content: center;
}

.impact-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

.scholarships,
.services {
  background: var(--secondary);
  border-radius: 7px;
  box-shadow: var(--shadow);
  padding: 1.8rem 0 1rem;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  padding: 11px 28px;
  border-radius: 5px;
  font-size: 1rem;
  border: none;
  margin-top: 14px;
  text-decoration: none;
  transition: background 0.18s;
  cursor:pointer;
}
.btn:hover {
  background: var(--primary);
}

.btn_services {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  padding: 11px 28px;
  border-radius: 5px;
  font-size: 1rem;
  border: none;
  margin-top: 14px;
  text-decoration: none;
  transition: background 0.18s;
  cursor:pointer;
}
.btn_services:hover {
  background: var(--primary);
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 12px;
}
.testimonial-card {
  background: #fff;
  padding: 20px 17px;
  border-radius: 6px;
  box-shadow: 0 1px 8px 0 rgba(10,66,117,0.09);
  flex: 1 0 260px;
  min-width: 260px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 170px;
}
.testimonial-quote {
  font-style: italic;
  margin-bottom: 10px;
}
.testimonial-author {
  font-weight: 500;
  text-align: right;
  color: var(--primary);
  margin-top: auto;
}
.webinars .webinar-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 12px;
}
.webinar-card {
  flex: 1 0 280px;
  min-width: 240px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 8px 0 rgba(10,66,117,0.09);
  padding-bottom: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.webinar-card iframe {
  width: 100%;
  height: 165px;
  border: none;
  border-radius: 6px 6px 0 0;
  margin-bottom: 5px;
}
.webinar-card span {
  font-size: 1.02rem;
  color: var(--primary);
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.service-list li {
  background: #fff;
  border-radius: 6px;
  box-shadow: var(--shadow);
  padding: 17px 20px;
  min-width: 220px;
  flex: 1 0 220px;
  margin-bottom: 12px;
}
.service-list h4 {
  color: var(--accent);
  margin-bottom: 9px;
}

.contact {
  background: var(--secondary);
  border-radius: 7px;
  box-shadow: var(--shadow);
  padding: 1.8rem 0 1rem;
  margin-bottom: 26px;
}
.contact a {
  color: var(--accent);
  font-weight: bold;
  text-decoration: underline;
}

footer {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 14px 0;
  font-size: 1rem;
  margin-top: 0;
}
.footer_nav_links li {
  margin-bottom: 8px;
}

.footer-nav-link {
  color: #6a7695;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-nav-link:hover {
  color: #005baa; /* or your accent color */
  text-decoration: underline;
}


/* ======== Responsive Breakpoints ======== */
@media (max-width: 1100px) {
  .container {
    max-width: 97vw;
    padding: 0 8px;
  }
  .search-form {
    min-width: 80px;
    max-width: 100vw;
  }
}

@media (max-width: 900px) {
  .header-flex {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-top: 10px;
    padding-bottom: 0;
  }
  .logo-img {
    height: 36px;
  }
  .logo .tagline {
    font-size: 0.97rem;
    margin-left: 5px;
  }
  .search-form {
    margin-right: 0;
    width: 100%;
    min-width: 100px;
    max-width: none;
    padding-left: 10px;
    padding-right: 7px;
  }
  .header-actions {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
  }
  nav {
    margin-top: 0;
  }
  .nav-links {
    flex-direction: column;
    gap: 0;
    width: 100%;
    box-shadow: none;
    border-radius: 0 0 10px 10px;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    width: 100%;
    padding: 14px 0 14px 8px;
    border-radius: 0;
    font-size: 1.04rem;
    border-bottom: 1px solid #f6f6f6;
    border-left: 4px solid transparent;
    text-align: left;
  }
  .nav-links a:hover,
  .nav-links a.active {
    border-bottom: 3px solid var(--accent);
    border-left: 4px solid var(--accent);
    background: var(--secondary);
    color: var(--primary);
  }
  .trending-items,
  .testimonial-list,
  .webinars .webinar-list,
  .service-list {
    flex-direction: column;
    gap: 15px;
  }
  .testimonial-card,
  .webinar-card,
  .service-list li,
  .trending-item {
    min-width: unset;
    width: 100%;
    flex-basis: unset;
    box-sizing: border-box;
  }
  .trending-item {
    padding: 14px 12px;
  }
}

@media (max-width: 600px) {
  .header-flex {
    gap: 8px;
    padding: 9px 0 3px 0;
  }
  .container, .header .container {
    padding: 0 4px;
  }
  .logo-img {
    height: 28px;
  }
  .logo .tagline {
    font-size: 0.85rem;
  }
  .header-actions .btn {
    width: 100%;
    font-size: 0.98rem;
    padding: 9px 0;
    margin-bottom: 2px;
  }
  .header-actions {
    flex-direction: column;
    gap: 4px;
    width: 100%;
  }
  .search-form {
    padding-left: 7px;
    min-width: 60px;
    max-width: none;
  }
  nav {
    font-size: 0.99rem;
  }
  .nav-links a {
    font-size: 0.99rem;
    padding: 12px 4px 12px 12px;
  }
  .container {
    padding: 0 2vw;
  }
  main section {
    margin: 13px 0;
    padding-top: 5px;
  }
  .hero {
    padding: 1rem 0 0.7rem;
    margin-top: 12px;
  }
  .hero h2 {
    font-size: 1.12rem;
  }
  .section-header {
    font-size: 1.02rem;
  }
  .btn {
    width: 100%;
    padding: 13px 0;
    font-size: 1rem;
  }
  .testimonial-card,
  .webinar-card,
  .service-list li,
  .trending-item {
    min-width: unset;
    width: 100%;
    padding: 12px 7px;
    font-size: 1rem;
  }
  .testimonial-card,
  .webinar-card {
    padding: 14px 8px;
  }
  .webinar-card iframe {
    height: 36vw;
    min-height: 90px;
    max-height: 140px;
  }
}

@media (max-width: 420px) {
  .hero h2, .section-header, .logo .tagline {
    font-size: 0.96rem;
  }
  .btn, .header-actions .btn {
    font-size: 0.94rem;
    padding: 10px 0;
  }
}

/* Prevent card and grid overflow on all breakpoints */
.trending-items, .testimonial-list, .webinar-list, .service-list {
  width: 100%;
}

/* footer start */
/* body {
    background: #fbfbfd;
} */

.new_footer_area {
    background: #fbfbfd;
}


.new_footer_top {
    padding: 120px 0px 270px;
    position: relative;
      overflow-x: hidden;
}
.new_footer_area .footer_bottom {
    padding-top: 5px;
    padding-bottom: 50px;
}
.footer_bottom {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    color: #000000;
    padding: 27px 0px;
}
.new_footer_top .company_widget p {
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
    color: #6a7695;
    margin-bottom: 20px;
}
.new_footer_top .company_widget .f_subscribe_two .btn_get {
    border-width: 1px;
    margin-top: 20px;
}
.btn_get_two:hover {
    background: transparent;
    color: #5e2ced;
}
.btn_get:hover {
    color: #fff;
    background: #6754e2;
    border-color: #6754e2;
    -webkit-box-shadow: none;
    box-shadow: none;
}
a:hover, a:focus, .btn:hover, .btn:focus, button:hover, button:focus {
    text-decoration: none;
    outline: none;
}



.new_footer_top .f_widget.about-widget .f_list li a:hover {
    color: #5e2ced;
}
.new_footer_top .f_widget.about-widget .f_list li {
    margin-bottom: 11px;
}
.f_widget.about-widget .f_list li:last-child {
    margin-bottom: 0px;
}
.f_widget.about-widget .f_list li {
    margin-bottom: 15px;
}
.f_widget.about-widget .f_list {
    margin-bottom: 0px;
}


.new_footer_top 

.btn_get_two {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #1763a5;
    border-color: #5e2ced;
    color: #fff;
}

.btn_get_two:hover {
    background: #0a365d;
    color: #ffffff;
}
.f_social_icon a {
  display: inline-block;
  width: 40px; height: 40px;
  line-height: 40px;
  color: white;
  background-color: var(--primary);
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  margin-right: 8px;
  transition: background-color 0.3s ease;
}

.f_social_icon a.fa-facebook-f { background-color: #3b5998; }
.f_social_icon a.fa-twitter { background-color: #1da1f2; }
.f_social_icon a.fa-instagram { background-color: #e1306c; }
.f_social_icon a.fa-youtube { background-color: #ff0000; }

.f_social_icon a:hover {
  filter: brightness(85%);
  text-decoration: none;
}


.new_footer_top .f-title {
    margin-bottom: 30px;
    color: #263b5e;
}
.f_600 {
    font-weight: 600;
}
.f_size_18 {
    font-size: 18px;
}
h1, h2, h3, h4, h5, h6 {
    color: #4b505e;
}
.new_footer_top .f_widget.about-widget .f_list li a {
    color: #6a7695;
}


.new_footer_top .footer_bg {
    position: absolute;
    bottom: 0;
    background: url("./96xnyfq6.png") no-repeat scroll center 0;
    width: 100%;
    height: 266px;
}

.new_footer_top .footer_bg .footer_bg_one {
    background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEia0PYPxwT5ifToyP3SNZeQWfJEWrUENYA5IXM6sN5vLwAKvaJS1pQVu8mOFFUa_ET4JuHNTFAxKURFerJYHDUWXLXl1vDofYXuij45JZelYOjEFoCOn7E6Vxu0fwV7ACPzArcno1rYuVxGB7JY6G7__e4_KZW4lTYIaHSLVaVLzklZBLZnQw047oq5-Q/s16000/volks.gif") no-repeat center center;
    width: 330px;
    height: 105px;
  background-size:100%;
    position: absolute;
    bottom: 0;
    left: 30%;
    -webkit-animation: myfirst 22s linear infinite;
    animation: myfirst 22s linear infinite;
}

.new_footer_top .footer_bg .footer_bg_two {
    background: url("./assets/boywalk.gif") no-repeat center center;
    width: 200px;
    height: 160px;
  background-size:100%;
    bottom: 0;
    left: 38%;
    position: absolute;
    -webkit-animation: myfirst 30s linear infinite;
    animation: myfirst 30s linear infinite;
}



@-moz-keyframes myfirst {
  0% {
    left: -25%;
  }
  100% {
    left: 100%;
  }
}

@-webkit-keyframes myfirst {
  0% {
    left: -25%;
  }
  100% {
    left: 100%;
  }
}

@keyframes myfirst {
  0% {
    left: -25%;
  }
  100% {
    left: 100%;
  }
}

/*************footer End*****************/


/* parallax */
.slideshow {
  position: relative;
  width: 100vw;
  max-width: 100%;
  height: 80vh;
  overflow: hidden; /* Prevent overflow */
}

.slides {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease-in-out;
  width: 100%;
}

.slide {
  min-width: 100vw; /* full viewport width per slide */
  height: 100%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0; /* prevent shrinking */
}

.slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.slide-content h1 {
  font-size: 4vw;
  margin-bottom: 0.5em;
  text-shadow: 3px 2px 4px rgba(0, 0, 0, 0.8);
}

.slide-content h1 {
  position: relative;
  display: inline-block;
  padding: 0 1rem;
  color: white;
  z-index: 1;
}

.slide-content h1 {
  position: relative;
  display: inline-block;
  color: white;
  padding: 0.2em 0.5em;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.slide-content p {
  font-size: 2vw;
  margin-bottom: 1em;
}
.slide-content a {
  display: inline-block;
  padding: 0.7em 1.5em;
  background-color: rgba(0, 0, 0, 0.5);
  color: #dddddd;
  text-decoration: none;
  font-size: 1.2vw;
  border: 1px solid white;
  border-radius: 5px;
  cursor: pointer;
}

.slide-content a {
  transition: background-color 0.3s ease, color 0.3s ease;
}

.slide-content a:hover,
.slide-content a:focus {
  background-color: rgba(255, 255, 255, 0.6); /* lichter wit */
  color: #4b4a4a; /* zwart voor betere leesbaarheid */
  border-color: rgba(255, 255, 255, 0.8);
  outline: 1px solid rgb(36, 196, 4);
  outline-offset: 4px;
  text-shadow: none;
}

/* Card overlay styles - lichter en transparanter */
.card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* minder donker, meer transparant */
  color: black; /* zwart voor tekst op wit */
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 20;
  padding: 2em;
}

/* Card content wit met zwarte tekst */
.card-content {
  background: white; /* wit */
  font-weight: 500;
  padding: 2em;
  border-radius: 10px;
  max-width: 90%;
  max-height: 90%;
  overflow-y: auto;
  text-align: center;
  color: black;
}

.close-card {
  margin-top: 1em;
  background: #444;
  border: none;
  color: white;
  padding: 0.5em 1em;
  cursor: pointer;
  border-radius: 5px;
}

.nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10;
}

.nav button {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 10px 20px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .slide-content h1 {
    font-size: 5vw;
  }
  .slide-content p {
    font-size: 3.5vw;
  }
  .slide-content a {
    font-size: 3vw;
  }
}
