/* CSS reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,  figure, figcaption, footer, header, hgroup,  menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* End of CSS reset */

body {
 margin: 0px;
 font-size: 1.5em;
 font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', 'Noto Sans', sans-serif;
  background-color: Gainsboro;
}


ul.a {
 list-style-type: none;
 margin: 0;
 padding: 0;
 overflow: hidden;
 background-color: DimGray;
 position: -webkit-sticky; /* Safari */
 position: sticky;
 top: 0;
 overflow: hidden;
 width: 100%; /* Full width */
 z-index: 10; /* Ensures it appears above other content */
}

ul.b {
 list-style-type: circle;
 margin: 20px;
 padding: 20px;
}

li a {
 float: left;
 display: block;
 color: white;
 text-align: center;
 padding: 14px 16px;
 text-decoration: none;
}

.active {
 background-color: Gray;
}

li a:hover {
 background-color: DarkGray;
 border-bottom: 2px solid DeepSkyBlue;
 transition: 0.3s;
}

a.contact-button {
  background-color: DeepSkyBlue;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}
a.contact-button:hover {
  background-color: DodgerBlue;
}

.header {
  background-image: url(./assets/background.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-color: rgba(255,255,255,0.1);
  background-blend-mode: lighten;
  height: 100vh; /* Full viewport height */
  display: flex; /* Allows for flexible positioning of content if needed */
  align-items: center;
  position: relative; /* Allows the header to maintain its position */
}

.row {
 display: flex;
 flex-wrap: wrap; /* Ensure content wraps on smaller screens */
 align-items: center; /* Vertical alignment consistency */
}

.column {
 flex: 1;
 padding: 20px;
 box-sizing: border-box;
 display: flex; /* Enables Flexbox layout */
 flex-direction: column; /* Stack children vertically */
 justify-content: center; /* Center children vertically */
}

.left {
 flex-basis: 35%;
}

.right {
 flex-basis: 65%;
}

/* Responsive layout for smaller screens */
@media screen and (max-width: 900px) {
 .left, .right {
  flex-basis: 100%;
 }
 .row {
  align-items: stretch; /* Ensure items take full vertical space */
 }
}

@media screen and (max-width: 600px) {
 .left, .right {
  flex-basis: 100%;
 }
 h1, h2, h3, p {
  padding: 5px;
 }
 h1 {
  font-size: 1.75em;
 }
 h2 {
  font-size: 1.5em;
 }
 body {
  font-size: 1.25em;
 }
 ul.b {
  margin: 10px;
  padding: 10px;
 }
 .column {
  padding: 10px;
 }
 li a {
  padding: 7px 8px;
 }
 .row {
  align-items: stretch; /* Ensure items take full vertical space */
 }
}

h1, h2, h3, h4, h5, h6 {
 font-weight: bold;
}

h1 {
 color: SlateGray;
 font-size: 2.5em;

}
h2, h3, h4, h5, h6 {
 color: LightSteelBlue;
}

h2 {
 font-size: 2em;
}

h3 {
 font-size: 1.75em;
}

h4 {
 font-size: 1.5em;
}

h5 {
 font-size: 1.25em;
}

h6 {
 font-size: 1em;
}

h1, h2, h3, p {
 margin: 10px;
 padding: 10px;
 font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', 'Noto Sans', sans-serif;
}

img {
 width: 100%;
 height: auto;
 display: block;
}

b, strong {
    font-weight: bold;
}