*{
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

.standard_link{
  text-decoration: underline;
  color: royalblue;
  cursor: pointer;
}

.standard_link:hover{
  color: #7005A1;
}

.standard_link:visited{
  color: #7005A1;
}

input{
  width: 100%;
  padding: 6px;
}

textarea{
  width: 100%;
  padding: 6px;
  height: 200px;
}

form{
  width: 50%;
}


.label{
  font-weight: bold;
}

ul {
  margin: 1em 0;             
  padding-left: 1.5em;       
}

ol {
  margin: 1em 0;             
  padding-left: 1.5em;       
}

li {
  margin-bottom: 0.5em;        
}

ul ul, ol ol {
  padding-left: 2em;          
}



:root{
  --header-height: 55px; 
}


.dark_background_link {
  color: white;
  text-decoration: none;
  display: inline-block; 
}

@keyframes wobble-hor-bottom {
  0%, to {
    transform: translateX(0);
    transform-origin: 50% 50%;
  }
  15% {
    transform: translateX(-5px) rotate(-3deg);
  }
  30% {
    transform: translateX(5px) rotate(3deg);
  }
  45% {
    transform: translateX(-3px) rotate(-1deg);
  }
  60% {
    transform: translateX(3px) rotate(1deg);
  }
  75% {
    transform: translateX(-2px) rotate(-0.4deg);
  }
}

.dark_background_link:hover {
  animation: wobble-hor-bottom 0.8s ease-in-out infinite; 
}

.dark_background_link.active {
  text-decoration: underline;
}



body, footer, header {
  font-family: 'Open Sans',sans-serif;
}



p {
  line-height: 2;
}

main h1 {
  margin-top: 0.67em;
  margin-bottom: 0.67em;
  padding: 0;
  font-size: 2em;
}

main h2 {
  margin-top: 0.83em;
  margin-bottom: 0.83em;
  padding: 0;
  font-size: 1.5em;
}

main h3 {
  margin-top: 1em;
  margin-bottom: 1em;
  padding: 0;
  font-size: 1.17em;
}

main h4 {
  margin-top: 1.33em;
  margin-bottom: 1.33em;
  padding: 0;
  font-size: 1em;
}

main h5 {
  margin-top: 1.67em;
  margin-bottom: 1.67em;
  padding: 0;
  font-size: 0.83em;
}

main h6 {
  margin-top: 2.33em;
  margin-bottom: 2.33em;
  padding: 0;
  font-size: 0.67em;
}



/* Banner.php */
#social_media_platforms_banner {
  background-color: #f0f0f0;
  width: 100%; 
  margin: 0 auto; 
  text-align: center; 
}

.social_media_links_container {
  display: inline-flex; 
  justify-content: center; 
  gap: 20px; 
  max-width: 1000px; 
  width: 100%; 
  padding-top: 10px;
  padding-bottom: 10px;
}

.social_media_link_icon {
  width: 25px; 
  height: auto; 
  transition: opacity 0.3s ease-in-out;
}

.social_media_link_icon:hover {
  opacity: 0.7; 
}


/* About.php */
.timeline_time_period{
  font-weight: bold;
}

.team_member_photo{
	width: 150px;
}


.team_member_name{
  font-weight: bold;
  font-size: 18px;
}

.team_member_title{
  color: #808080;
}

#values_container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin: 0 auto;
  }
  
  .value_container {
	background-color: #fff;
	padding: 20px;
	width: 100%;
	max-width: 250px;
	text-align: center;
	border: 1px solid #ddd;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
  }
  
  .value_title {
	font-weight: bold;
	color: #333;
  }
  
  .value_container:hover {
	box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
  }
  
  @media screen and (max-width: 768px) {
	.value_container {
	  width: 45%;
	}
  }
  
  @media screen and (max-width: 480px) {
	.value_container {
	  width: 90%;
	}
  }

  
/* header.php */
header {
  display: flex;
  background-color: #666666;
  color: white;
  padding: 20px 40px;
  font-family: Arial, sans-serif;
  flex-direction: column;
  align-items: center;
  font-size: 24px;
  justify-content: center;
}

.website_title_header{
  text-align: center;
}

.website_tagline{
  text-align: center;
  color: #ffffff;
  margin-bottom: 10px;
}

header .website_title_header a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

header .website_title_header a:hover {
  text-decoration: underline;
}

header ul {
  list-style-type: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  width: 100%;
}

header ul li {
  margin: 0;
}

header ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 15px;
  display: inline-block;
  border-radius: 6px;
  background-color: #444;
  transition: background-color 0.3s ease;
}

header ul li a:hover {
  background-color: #575757;
}

button {
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 6px;
  text-align: center;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.button_send{
  margin-top: 20px;
  background-color: skyblue;
  width: -moz-available;
  padding: 5px 10px;
  
}

.paypal_purchase_button{
  display: none;
}

.stripe_purchase_button{
  background-color: #2C2E2F;
  color: #FEFEFE;
  padding: 10px;
  height: 55px;
  margin-top: 10px;
  margin-bottom: 10px;
  width: -moz-available;
  display: none;
}

.stripe_purchase_button:hover{
  background-color: #000;
}

/* sidebar.php */

.website_title_sidebar {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 16px;
}

.side-nav .website_title_sidebar a {
  color: white;
  text-decoration: none;
}

.side-nav .website_title_sidebar a:hover {
  text-decoration: underline;
}


.side-nav {
  position: fixed;
  left: 0;
  width: 200px;
  background-color: #2b2b2b;
  color: white;
  z-index: 10;
  text-align: center;
  height: 100%;
  overflow-y: scroll;
}

.side-nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.side-nav ul li {
  margin: 10px 0;
}

.side-nav ul li a {
  text-decoration: none;
}

main {
  margin-left: 200px;
  padding-left: 10px;
  padding-right: 10px;
}

header {
  display: none;
}

.side-nav {
  display: block;
}

@media screen and (max-width: 1024px) {
  header {
    display: block;
  }

  .side-nav {
    display: none;
  }

  main {
    margin-left: 0px;
  }
}

@media screen and (max-width: 768px) {
  header {
    display: block;
  }

  .side-nav {
    display: none;
  }

  main {
    margin-left: 0px;
  }
}

@media screen and (max-width: 480px) {
  header {
    display: block;
  }

  .side-nav {
    display: none;
  }

  main {
    margin-left: 0px;
  }
}

/* index.php */



.container {
  padding: 20px;
}

.card {
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.lighter_card {
  background-color: #f4f4f4;
}

.darker_card {
  background-color: #e0e0e0;
}


.card h2 {
  margin-bottom: 15px;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.card p {
  margin: 5px 0;
}

.card small {
  color: black;
  font-size: 0.85em;
}


/* footer.php */
footer {
  background-color: #666666;
  color: white;
  text-align: center;
  position: relative;
  width: 100%;
  bottom: 0;
  margin-top: 20px; 
  clear: both; 
  font-size: 16px;
}

@media (max-width: 768px) {
  footer {
    text-align: center;
  }
}


/* software.php */
.software_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
  gap: 20px;
}

.software_title{
  text-transform: uppercase;
  font-weight: bold;
}

.software_tech_stack_link{
  text-decoration: none;
}

.software_item {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 48%; 
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.software_image {
  width: 100%;
  height: 350px; 
  overflow: hidden; 
}

.software_image img {
  width: 100%;
  height: auto;
  object-fit: cover; 
}

.software_description {
  padding: 20px;
}

.software_description h3 {
  margin: 0 0 10px;
  font-size: 1.6em;
}

.software_description p {
  margin: 10px 0;
  color: #555;
}

.tech_stack_icon {
  height: 35px;
  margin-right: 10px;
  transition: opacity 0.3s ease-in-out;
}

.tech_stack_icon:hover {
  opacity: 0.7;
}


.fab, .fas{
  font-size: 35px;
  padding-left: 5px;
  padding-right: 5px;
}

.fa-globe{
  color: #4285F4;
}

.fa-apple{
  color: #000000;
}

.fa-android{
  color: #3DDC84;
}


.fa-steam-symbol{
  color: #171A21;
}

@media (max-width: 768px) {
  .software_item {
      width: 100%;
  }

  .software_description h3 {
      font-size: 1.4em;
  }

  .software_description p {
      font-size: 0.9em;
  }

  .tech_stack_icon {
      height: 25px;
      margin-right: 8px;
  }

  .fab, .fas {
      font-size: 25px;
  }
}

@media (max-width: 480px) {
  .software_description h3 {
      font-size: 1.2em;
  }

  .software_description p {
      font-size: 0.8em;
  }

  .tech_stack_icon {
      height: 20px;
      margin-right: 5px;
  }

  .fab, .fas {
      font-size: 20px;
  }
}


/* merch.php */
.product_container{
  width: 20%;
  border-color: black;
border-width: 1px;
border-style: solid;	
}

.product_details_container{

  text-align: center;
}

.product_name{
  text-transform: uppercase;
  font-weight: bold;
}

.product_image_container{
  width: 100%;
}

.product_image{
  width: 100%;
}


/* courses.php */

.course{
	border-color: black;
	border-width: 1px;
	border-style: solid;	
	margin: 20px;
	padding: 20px;
  width: 45%;
}



/* about.php */




    .tech_stack_list{
        list-style-type: "🛠️";
    }


    /* services.php */
    .expertise_list{
      list-style-type: "🌟";
  }

  .comparison-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.price-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 10px;
    width: 300px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.price-card:hover {
    transform: scale(1.05);
}

.price-card h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #333;
}

.price-card p {
    font-size: 1em;
    color: #666;
    margin: 10px 0;
}

.price-card .price {
    font-size: 2em;
    font-weight: bold;
    margin: 20px 0;
}

.price-card .tag {
    display: inline-block;
    padding: 5px 10px;
    color: white;
    font-size: 0.9em;
    border-radius: 5px;
    margin-bottom: 15px;
}

/*
.price-card.individuals .price {
    
    color: #9D00FF;
}

.price-card.individuals .tag {
    background-color: #9D00FF;
}
*/


.price-card.nonprofit .price {
    color: #28A745;
}

.price-card.nonprofit .tag {
    background-color: #28A745;
}

.price-card.business .price {
    color: #007BFF;
}

.price-card.business .tag {
    background-color: #007BFF;
}

@media (max-width: 768px) {
    .price-card {
        width: 90%;
    }
}
.business_in_house_development_link a {
  color: #ffc47c;
}

.services_offered_to_public a {
  color: #8dffc6;
}

.business_feed_link a {
  color: #96e5ff;
}

.about_the_business_link a {
  color: #ffff8b;
}

.fan_of_the_business_link a {
  color: #69faec;
}

.opportunities_for_people_to_be_involved_with_the_business_link a {
  color: #ff4dad;
}

.reach_the_business_link a {
  color: #ff87ff;
}


.internal_use_link a{
  color: white;
}

.internal_collaboration_link a{
  color: #f400ce;
}


/* banner.php */

.contact-icon{
    font-size: 24px;
}

  #contact_us_banner {
    background-color: #f0f0f0;
    color: black;
    font-weight: bold;
    text-align: right;
    padding: 5px;
  }

  .contact-info {
    display: inline-block;
    text-align: right;
    font-size: 14px;
  }

  .generic_button {
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 6px;
    background-color: black;
    text-align: center;
    color: white;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
  }

  .generic_button:hover{
    background-color: white;
    color: black;
  }

  /* about.php */
  
  .team_member_container{
    border: none;
}

.figuring_out_now_competency::after {
    content: "FIGURING OUT NOW";
}

.figuring_out_now_competency{
    text-transform: uppercase;
    vertical-align: super;
    font-size: 10px;
    color: blueviolet;
}


.future_competency::after {
    content: "IN THE FUTURE";
}

.future_competency{
    text-transform: uppercase;
    vertical-align: super;
    font-size: 10px;
    color: darkblue;
}


.technical_skills_container, .soft_skills_container {
columns: 2;
}


@media(max-width: 850px){
.technical_skills_container, .soft_skills_container {
columns: 1;
}
}


/* blog.php */

.blog_container{
  border-width: 1px;
  border-style: solid;
  border-color: black;
  margin-bottom: 20px;  /* Add space between blog posts */
}

.blog_title{
  font-size: 1.3em;
  font-weight: bold;
}

#compliance_checklist input[type="checkbox"]{
  margin-right: 10px;
  width: 10px;
}

#compliance_checklist ul{
  margin-top: 10px;
  list-style-type: none;
  padding-left: 10px;
}

#compliance_checklist li{
  margin-bottom: 10px;
}

.references p{
  line-height: 1.6;
  margin-bottom: 20px;
}

.reference-link {
  color: #003366;
  text-decoration: none;
}

.reference-link:hover {
  text-decoration: underline;
}

.reference_title{
  font-style: italic;
}

.pagination a {
  margin: 0 5px;
  padding: 5px 10px;
  text-decoration: none;
  border: 1px solid #ccc;
  color: #333;
}

.pagination .current-page {
  background-color: #003366;
  color: white;
  border-color: #003366;
}

.pagination a:hover {
  background-color: #003366;
  color: white;
}

/** News page **/
 .update_container {
   border-width: 1px;
   border-style: solid;
   border-color: black;
   margin-bottom: 15px;
   padding: 10px;
 }
.update_title {
  font-size: 1.3em;
  font-weight: bold;
  margin: 5px 0;
}
.update_metadata {
  font-size: 0.9em;
  color: #555;
  margin-bottom: 8px;
}
/* Filter styles */
#filter-container h4 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.2em;
  color: #333;
  font-weight: 600;
  text-align: left;
}
#filter {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
#filter label {
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 6px;
  background-color: #ffffff;
  border: 1px solid #ddd;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  font-size: 1em;
  color: #333;
}
#filter input[type="checkbox"] {
  margin-right: 12px;
  accent-color: #007bff;
  transform: scale(1.2);
  width: auto;
}
#filter label:hover {
  background-color: #e8f0fe;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (min-width: 480px) {
  #filter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}
.pagination {
  margin-top: 20px;
  font-size: 1em;
}
.pagination a, .pagination span {
  margin: 0 5px;
  text-decoration: none;
  cursor: pointer;
}
.pagination .current-page {
  font-weight: bold;
  cursor: default;
}



/** agenda page **/
 #projects_table {
   overflow-x: auto;  /* keep horizontal scroll if needed */
 }

#projects_table table {
  min-width: 5000px;
  border-collapse: collapse;
  border: 2px solid black;
  table-layout: fixed;  /* keeps columns proportionally wide */
  font-size: 14px;
}

#projects_table th,
#projects_table td {
  border: 1px solid black;
  padding: 8px;
  text-align: left;
  vertical-align: middle;
  line-height: 1.6;
}



.goals-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.goal-item {
  display: flex;
  flex-direction: column;
}

.goal-header {
  margin-bottom: 5px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #333;
}

.progress-container {
  width: 100%;
  height: 12px;
  position: relative;
}

.progress-percentage {
  margin-top: 4px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #333;
  text-align: right; /* show on the right */
}

/* Green border if on-track */
.gantt .finish-on-time .bar {
  stroke: #28a745;
  stroke-width: 2px;
}

/* Red border if late */
.gantt .finish-late .bar {
  stroke: #dc3545;
  stroke-width: 2px;
}

/* Hide resize handles */
.gantt .handle {
  display: none !important;
}


.gantt .bar-label {
  fill: #000;
}

/* Limit popup size to prevent overflow */
.gantt .popup-info {
  max-width: 300px;
  word-wrap: break-word;
  overflow: auto;
  box-sizing: border-box;
}

/* --- Container & Project Styling --- */
.project {
  margin-bottom: 40px;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  background-color: #fafafa;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.project h3 {
  margin-bottom: 15px;
  color: #333;
  font-size: 1.5rem;
}

/* --- Members Section --- */
.members {
  margin-bottom: 20px;
}

.members ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.members li {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
}

/* --- Folder & List Section --- */
.folder {
  margin-bottom: 20px;
  padding-left: 10px;
}

.folder h5 {
  margin-bottom: 10px;
  color: #555;
}

.list {
  margin-left: 20px;
  margin-bottom: 15px;
}

.list strong {
  font-size: 1.1rem;
}

/* --- Tasks Styling --- */
.task-item {
  margin-bottom: 10px;
  padding: 10px;
  border-left: 5px solid #ccc;
  background: #fff;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
}

.task-item.completed {
  border-left-color: #28a745; /* green border for completed */
  background-color: #e6f4ea;  /* light green background */
  text-decoration: line-through;
}

.task-item label {
  display: inline;            /* Keep checkbox and title on the same line */
  vertical-align: middle;     /* Align checkbox vertically with text */
}

/* Ensure the checkbox itself stays inline */
.task-item input[type="checkbox"] {
  display: inline;            /* Inline with text */
  vertical-align: middle;     /* Align nicely with text */
  margin-right: 6px;          /* Small gap between checkbox and title */
  width: auto;
}

.task-item p {
  margin: 5px 0 0 0;
}

.task-item small {
  margin-top: 5px;
  color: #777;
  font-size: 0.85rem;
}

/* Utility helpers */
.hidden {
  display: none !important;
}