:root {
  --bg:#E0E0E0; --accent:#0b79d0; --muted:#666;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  margin:0;
  background:var(--bg);
  color:#111;
}

nav {
  border-bottom:1px solid #e6e6e6;
  background:#fff;
}

.container {
  max-width:1100px;
  margin:0 auto;
  padding: 16px;
  display:flex;
  align-items:center;
  height:auto;
  min-height: 64px;
}

.logo,
.logo:hover,
.logo:focus,
.logo:active {
  color: inherit;
  text-decoration: none;
}
.logo {
  font-weight:700;
  margin-right:14px;
  color:var(--accent);
  text-decoration:none;
  text-align: center; 
  
  margin-bottom: 12px; 
}
/*NAV 2025 update*/

nav .container {
  display: flex;
  flex-direction: column; 
  justify-content: center;  /* center content horizontally */
  align-items: center;
  position: relative;        /* allows absolute positioning of nav items */
  padding: 16px 0 ; 

}

/* Center the logo */
.logo {
  position: static;
  margin: 0 auto; 
 
}

/* Keep nav items aligned normally on the right */
.nav-list {
  margin-left: auto;

}

/*NAV 2025 update*/

/* ul / li styling */
.nav-list {
  list-style:none;
margin: 0 ; 
  padding:0;
  display:flex;
  gap:12px;
  align-items:center;

}

.nav-list > li {
  position:relative;
  

}

a, button.nav-toggle {
  display:inline-block;
  text-decoration:none;
  padding:8px 12px;
  border-radius:6px;
  font-size:15px;
  color:inherit;
  background:transparent;
  border:0;
  cursor:pointer;
}

a:hover, button.nav-toggle:hover {
  background:#ffffff;
  color:var(--accent);
}

/* Dropdown panel */
.dropdown {
  position:absolute;
  top:calc(100% + 8px);
  left:0;
  min-width:220px;
  background:#fff;
  box-shadow:0 6px 20px rgba(0,0,0,0.08);
  border-radius:8px;
  padding:8px 6px;
  display:none;
  z-index:200;
}

.dropdown[aria-hidden="false"] {
  display:block;
}

.dropdown a {
  display:block;
  padding:10px 12px;
  border-radius:6px;
  color:#222;
}

.dropdown a:hover {
  background:#f2f6fb;
  color:var(--accent);
}

.dropdown .category {
  font-weight:600;
  padding:8px 12px;
  font-size:13px;
  color:var(--muted);
}

/* small responsive: stack items */
@media (max-width:640px) {
  .container {
    height:auto;
    flex-direction:column;
    gap:6px;
    padding:8px;
  }

  .nav-list {
    flex-direction:column;
    align-items:stretch;
    width:100%;
  }

  .nav-list > li {
    width:100%;
  }

  .dropdown {
    position:relative;
    top:0;
    left:0;
    box-shadow:none;
    margin-left:0;
  }
}



/* Bebas Neue from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* Your purchased custom font */
@font-face {
  font-family: 'Eastside.otf'; 
  src: url('Fonts/Eastside.otf') format('otf'),
       url('Fonts/Eastside.otf') format('otf');
  font-weight: normal;
  font-style: normal;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;  /* adjust size to your liking */
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #000;
  text-decoration: none;
  display: inline-block;
}




.banner {
  height: 300px; /* smaller height than hero */
  background-image: url('images/dsc00214.jpg'); /* replace with your banner image */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

/* dark overlay for readability */
.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.banner-content {
  position: relative;
  z-index: 1;
}

.banner h1 {
  font-size: 2.5rem;
  margin-bottom: 0.3em;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.05em;
}

.banner p {
  font-size: 1.2rem;
}



.about {
  position: relative;
  padding: 80px 20px;
  background: #181717; /* subtle background */
  text-align: center;
  overflow: hidden;
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  color: #e75e0a;
}

.about p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ffffff;
}

/* abstract X shapes */
.about::before,
.about::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: transparent;
  z-index: 1;
}


.about::before {
  width: 250px;
  height: 250px;
  top: -100px;
  left: -100px;
}

.about::after {
  width: 180px;
  height: 180px;
  bottom: -80px;
  right: -80px;
}


/* Content Library Styles */
  .library {
    background: #fff;
    padding: 60px 20px;
  }
  .library-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  .library-intro {
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: #555;
    font-size: 1em;
  }
  .library-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
  .library-card {
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.2s;
    text-align: left;
  }
  .library-card:hover {
    transform: translateY(-5px);
  }
  .library-card img {
    width: 100%;
    height: auto;
    display: block;
  }
  .library-details {
    padding: 20px;
  }
  .library-title {
    margin: 0 0 10px 0;
    font-size: 1.3em;
  }
  .library-description {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 15px;
  }
  .library-button {
    display: inline-block;
    padding: 10px 16px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9em;
    transition: background-color 0.2s;
  }
  .library-button:hover {
    background: #2980b9;
  }


  .library-card img {
  width: 100%;
  height: 200px; /* set the uniform height */
  object-fit: cover; /* crop instead of stretch */
  display: block;
}







/* Footer Styles */
  .site-footer {
    background-color: #222526;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-size: 0.95em;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }
  .footer-brand {
    line-height: 1.6;
  }
  .footer-logo {
    font-size: 1.4em;
    font-weight: bold;
    color: #e0e0e0;
    text-decoration: none;
  }
  .footer-links h4,
  .footer-social h4 {
    margin-bottom: 10px;
    font-size: 1.1em;
    font-weight: 600;
    color: #e0e0e0;
  }
  .footer-links ul,
  .footer-social ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-links li,
  .footer-social li {
    margin-bottom: 8px;
  }
  .footer-links a,
  .footer-social a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover,
  .footer-social a:hover {
    color: #bbbbbb;
  }
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    margin-top: 30px;
    font-size: 0.85em;
    color: #cfcfcf;
  }


.video-section {
  position: relative;
  height: 400px; /* adjust height */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.video-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 20px;
  background: rgba(0,0,0,0.4); /* optional for readability */
  border-radius: 10px;
}



/* Main content wrapper */
.content-container {
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  color: #1a1a1a;
  line-height: 1.6;
}

/* Headings */
.content-container h1, 
.content-container h2, 
.content-container h3 {
  color: #1a1a1a;
  margin-top: 20px;
  margin-bottom: 10px;
  text-align: center;
}

.content-container ul {
  margin-left: 20px;
}









