*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

html, body {
  font-family: system-ui, sans-serif;
  height: 100%;
  line-height: 1.6; }

ul, ol {
  list-style: none; }

a {
  color: inherit;
  text-decoration: none; }

img {
  display: block;
  height: auto;
  max-width: 100%; }

/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/style.scss to edit this template
*/
/*
    Created on : May 20, 2025, 8:21:52 AM
    Author     : Bob
*/
h1, h2, h3 {
  font-weight: 600; }

h1 {
  font-size: 2rem; }

h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem; }

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem; }

p {
  font-size: 1rem;
  margin-bottom: 1rem; }

.container {
  margin: 0 auto;
  max-width: 1200px;
  width: 90%; }

.text-center {
  text-align: center; }

.text-right {
  text-align: right; }

.mt-2 {
  margin-top: 2rem; }

.mb-2 {
  margin-bottom: 2rem; }

.site-header {
  background: #fff;
  border-bottom: 1px solid #ddd; }

.header-flex {
  align-items: center;
  display: flex;
  justify-content: left; }

.logo img {
  height: 90px;
  margin-right: 2rem;
  width: auto; }

.school-info h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 0.5rem; }

.school-info h3 {
  margin-bottom: 0.5rem; }

.site-nav {
  background: #e6f0fa;
  border-bottom: 1px solid #c0d3e8; }

.site-nav .container {
  display: flex;
  justify-content: center; }

.menu {
  display: flex;
  gap: 2rem; }

.menu li {
  position: relative; }

.menu a {
  color: #333;
  display: inline-block;
  font-weight: 500;
  padding: 1rem 0.5rem;
  position: relative;
  transition: color 0.3s ease; }

.menu a::after {
  background-color: #0077cc;
  bottom: 0.5rem;
  content: "";
  left: 50%;
  height: 2px;
  position: absolute;
  transition: width 0.3s ease, left 0.3s ease;
  width: 0%; }

.menu a::hover {
  color: #0077cc; }

.menu a:hover::after {
  left: 0;
  width: 100%; }

.menu a.active {
  color: #0077cc;
  font-weight: bold; }

.menu a.active::after {
  left: 0;
  width: 100%; }

.submenu {
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: none;
  left: 0;
  min-width: 180px;
  padding: 0.5rem 0;
  position: absolute;
  top: 100%;
  z-index: 999; }

.submenu li a {
  color: #333;
  display: block;
  padding: 0.5rem 1rem;
  white-space: nowrap; }

.submenu li a:hover {
  background: #f0f0f0;
  color: #0077cc; }

.menu li:hover > .submenu {
  display: block; }

.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  font-size: 2rem;
  padding: 1rem; }

.banner-slideshow {
  background: #ccc;
  overflow: hidden;
  padding: 0.5rem 0;
  position: relative; }

.slideshow {
  aspect-ratio: 3 / 1;
  position: relative;
  width: 100%; }

.slide {
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 1s ease-in-out;
  width: 100%;
  z-index: 1; }

.slide.active {
  opacity: 1;
  z-index: 2; }

.slide img {
  height: 100%;
  object-fit: cover;
  width: 100%; }

.caption {
  background: rgba(0, 0, 0, 0.5);
  bottom: 0;
  color: #fff;
  font-size: 1rem;
  left: 0;
  padding: 0.8rem;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 3; }

.controls {
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 0 1rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4; }

.controls button {
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 2rem;
  padding: 0.2rem 0.8rem; }

.controls button:hover {
  background: rgba(0, 0, 0, 0.7); }

.dots {
  bottom: 60px;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 4; }

.dot {
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  height: 10px;
  margin: 0 5px;
  width: 10px; }

.dot.active {
  background-color: #fff; }

.progress-bar {
  background: rgba(255, 255, 255, 0.2);
  bottom: 0;
  height: 5px;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 4; }

.progress-fill {
  background: #fff;
  height: 4px;
  width: 0%; }

.student-gallery {
  background: #eef6fc;
  border-bottom: 1px solid #d0e0f0; }

.card-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin: 2rem 0; }

.card {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 1rem; }

.principal-msg {
  background: #f4f8ff;
  border-bottom: 1px solid #d0e0f0;
  border-top: 1px solid #d0e0f0;
  padding: 2rem 0; }

#scrollToTop {
  background-color: #0077cc;
  border: none;
  border-radius: 4px;
  bottom: 30px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  color: #fff;
  cursor: pointer;
  display: none;
  font-size: 1.25rem;
  padding: 0.5rem 0.75rem;
  position: fixed;
  right: 30px;
  transition: background-color 0.3s ease;
  z-index: 999; }

#scrollToTop:hover {
  background-color: #005fa3; }

footer {
  background: #222;
  color: #888;
  margin-top: auto;
  padding: 1rem 0;
  text-align: center; }

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh; }

section {
  padding: 2rem 0; }

@media (max-width: 768px) {
  .header-flex {
    flex-direction: column;
    text-align: center; }

  .site-nav ul.menu {
    flex-direction: column;
    gap: 0; }

  .site-nav ul li {
    width: 100%; }

  .caption {
    font-size: 0.9rem;
    padding: 0.5rem; }

  .controls button {
    font-size: 1.5rem;
    padding: 0.2rem 0.6rem; }

  .dots {
    bottom: 40px; }

  .site-nav .container {
    align-items: flex-start;
    flex-direction: column; }

  .nav-toggle {
    display: block;
    margin-left: auto; }

  .menu {
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%; }

  .menu.show {
    display: flex; }

  .menu li {
    width: 100%; }

  .menu a {
    padding: 1rem;
    width: 100%; }

  .submenu {
    border: none;
    box-shadow: none;
    display: none;
    position: static; }

  .menu li.open > .submenu {
    display: block; }

  .submenu li a {
    padding-left: 2rem; } }

/*# sourceMappingURL=style.css.map */
