body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	text-align: center;
                                                                                               background-color:#181818;
                                                                                              color:white;
}

html {
  scroll-behavior: smooth;
}

h1 {
	font-size: 5.0rem;
	margin-bottom:0px;
}

h2 {
	font-size: 3.0rem;
	
}

h3 {
	font-size: 2.0rem;
}
h4 {
	font-size: 1.4rem;
}
h5 {
	font-size: 1.0rem;
}

.kcltext {
	display: flex;
	align-items: center;      /* vertically aligns text with image */
  	justify-content: center;  /* centers the flex items horizontally */
  	margin: 0 auto; 
}

.kcltext img {
	width: 90px !important; /* or whatever size you want */
	height: 60px !important;
        margin-right: 20px; /* space between image and text */
	height: auto;
}

.aboutmetext {
	display: flex;
	align-items: center;      /* vertically aligns text with image */
  	justify-content: center;  /* centers the flex items horizontally */
  	margin: 0 auto; 
}

.aboutmetext img {
	width: 100px !important; /* or whatever size you want */
	height: 100px !important;
        margin-right: 20px; /* space between image and text */
	height: auto;
	border-radius: 50%;
}

header .home-link {
	margin: 0;
  	padding: 0;
	list-style: none;
}
header .home-link a {
  padding: 0.5rem 1rem;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
                                                                                              background-color: black; 
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem; /* reduced height for mobile */
  z-index: 1000;
                                                                                              box-shadow: 0 2px 5px rgba(225,225,225,0.4);
}

.home-link a,
.nav-links a {
                                                                                              color: white;
  text-decoration: none;
  font-size: 1rem;
  margin-right: 25px;
}

.home-link a:hover,
.nav-links a:hover {
                                                                                                color: #C5C5C5;
}

.home-link,
.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  position: static;
}

/* Push content down so navbar doesn't overlap */
.main-content {
  margin-top: 60px; /* adjust to match navbar height */
}

section {
  max-width: 700px;          /* keeps content from stretching too wide */
  margin: 40px auto;         /* vertical spacing + center horizontally */
  padding: 30px;             /* inner spacing for readability */
                                                                                              background-color: #242424; /* subtle background color for separation */
  border-radius: 10px;       /* optional: soft corners */
                                                                                            box-shadow: 0 2px 8px rgba(225,225,225,0.4); /* subtle shadow for depth */
  text-align: left;
}

section h3 {
  text-align: center;    /* override: h2 stays centered */
}

.downloadbutton {
	display: flex;
	gap:25px;
}

.downloadbutton a {
	text-decoration: none;
	color: #2A86FF;
}

.downloadbutton a:hover {
	color:#00BEF7;
}

section .downloadbutton {
	justify-content: center;
	align-items: center;
}

.dates {
	color: #BDBDBD;
}

.redhighlight {
	color: #E4080A;
}

/* Increase font size and spacing on small screens */
@media (max-width: 768px) { /* Typical breakpoint for tablets/phones */
  body {
    font-size: 18px; /* increase base font size */
    line-height: 1.6;
  }

  section {
    padding: 20px 15px; /* add space around each section */
    margin-bottom: 20px; /* space between sections */
  }

  h1 {
    font-size: 4.0rem;
  }
  h2 {
    font-size: 1.8em; /* scale headings on mobile */
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.5rem 1rem;
  }

  .home-link a,
  .nav-links a {
    font-size: 0.9rem;
    margin-right: 15px;
    white-space: nowrap; /* prevent wrapping */
  }

  .nav-links {
    overflow-x: auto;  /* allow horizontal scrolling */
    -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
  }

  /* Hide scroll bar */
  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .main-content {
    margin-top: 50px; /* adjust for smaller mobile navbar */
  }
}

/* --- OFFSET ANCHOR SCROLLING --- */
:target::before {
  content: "";
  display: block;
  height: 60px; /* equal to navbar height */
  margin-top: -60px; /* negative navbar height to offset scrolling */
  visibility: hidden;
}










