@font-face {
  font-family: "Fredoka";
  src: url("./fonts/Fredoka-Regular.woff2") format("woff2"),
    url("./fonts/Fredoka-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Sukar";
  src: url("./fonts/Sukar-Regular.woff2") format("woff2"),
    url("./fonts/Sukar-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Sukar", sans-serif;
}

.title {
  font-family: "Fredoka", sans-serif;
}

body,
html {
  margin: 0;
  padding: 0;
}

img.full-width-image {
  width: 100%;
  height: auto;
  display: block;
}

.site-header {
  position: fixed; /* keep it in place */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* stay above other elements */
  background: #fff; /* set a background so text doesn't overlap content */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* optional: subtle shadow */
}

/* Prevent content from hiding behind the header */
body {
  margin: 0;
  padding-top: 120px; /* adjust to header's height */
}

/* Info Bar */
/* Info Bar */
.info-bar {
  background-color: #c40000;
  color: white;
  font-size: 14px;
  padding: 5px 15px;
}

.info-content {
  display: flex;
  justify-content: flex-end; /* Align everything to the right */
  align-items: center;
  gap: 20px; /* Space between email and icons */
  max-width: 1200px;
  margin: 0 auto;
  flex-direction: row; /* Keep natural order */
}

.email {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.social-icons {
  display: flex;
  gap: 15px; /* Space between each icon */
}

.social-icons a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.social-icons a:hover {
  color: #ffdddd;
}

.top-bar {
  display: flex;
  align-items: stretch;
}

.logo-container {
  background-color: white;
  padding: 10px 20px;
  display: flex;
  align-items: center;
}

.logo-container img {
  height: 60px;
}

.nav-bar {
  flex: 1;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.navbar .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.navbar .menu li {
  position: relative;
}

.navbar .menu > li {
  margin-right: 20px;
}

.navbar .menu li a {
  color: green;
  text-decoration: none;
  padding: 20px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 50px;
  white-space: nowrap;
  font-weight: bold; /* Added */
}

.navbar .menu li:hover > a {
  background-color: white;
}

/* Submenu */
.submenu {
  position: absolute;
  background-color: white;
  display: none;
  top: 100%;
  left: 0;
  z-index: 999;
  min-width: 50px;
}

.submenu li a {
  padding: 5px 14px; /* slightly smaller for nested menus */
  color: green;
  background-color: white;
  font-weight: bold; /* Added */
}

.submenu .submenu {
  top: 0;
  left: 100%;
}

.submenu .submenu li a {
  padding: 6px 14px; /* slightly smaller for nested menus */
}

.menu li:hover > .submenu {
  display: block;
}
/* First-level submenu links */
.navbar .menu > li > .submenu li a {
  padding: 6px 14px; /* reduce vertical space for submenu under main menu */
}

/* Arrow using Font Awesome */
.has-submenu > a::after {
  font-family: "Font Awesome 6 Free";
  content: "\f105"; /* fa-angle-right */
  font-weight: 900;
  margin-left: auto;
  padding-left: 10px;
}

/* Search */
.search-box {
  padding: 0 10px;
}

.search-box input {
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
}
/* Center wrapper to align slideshow in center of viewport */

/* === MAIN STYLES === */
.center-wrapper {
  width: 100vw;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0px; /* <<< This is the gap between menubar and container */
  background-color: #c40000; /* optional */
  overflow: hidden;
}

.slideshow-container {
  position: relative;
  width: 100%;
  /*max-width: 1200px;*/
  height: 100%;
  overflow: hidden;
}

/* Image fills entire container */
.slideshow-container img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: f;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.slideshow-container img.active {
  opacity: 1;
}

/* Section wrapper: full width with background */
.mission-vision-section {
  padding: 60px 0;
  /* background-color: #d5f5e3; /* Elegant charcoal gray */
  color: #ecf0f1;
}

/* Flex container */
.mission-vision-wrapper {
  display: flex;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

/* Shared box styles */
.content-block {
  flex: 1;
  padding: 30px;
  border-radius: 8px;
  box-sizing: border-box;
  min-width: 280px;
}

/* Mission - Left box */
.mission-block {
  background-color: #c0392b; /* Deep red */
  color: #ffffff;
}

/* Vision - Right box */
.vision-block {
  background-color: #ecf0f1; /* Light gray */
  color: #2c3e50;
}

/* Heading style */
.mission-vision-section h2 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: bold;
}

/* Paragraph text */
.mission-vision-section p {
  font-size: 16px;
  line-height: 1.6;
}
/* Footer */
.site-footer {
  background: rgb(234, 14, 43);
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  font-size: 14px;
}

.site-footer a {
  color: #fff;
  text-decoration: underline;
}

.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  color: #c40000; /* Red or your theme color */
  margin: 30px 0 20px;
  font-family: Arial, sans-serif;
}
