	* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.logoLink {
	display: block;
	margin-bottom: 1rem;
	line-height: 0;
}

.logoLink img {
	display: block;
	width: 100%;
  max-width: 300px;
}

.logoLink:hover {
	background: none;
}
.noted{
	padding-inline: 3em;
	margin-block: .2em;
}
.centerBlock {
	display: flex;
	justify-content: center;
	 background: #2c3e50;
	 color: yellow;
	 border-radius: .35em;
	 padding-block: .6em;
}

#noStyle {
	list-style: none;
	padding: 0;
	margin: 0;
	letter-spacing: .2em;

}
#noStyle a {
	color: white;
}

#noStyle a:hover {
	color: yellow;
}
blockquote {
	font-family: Inter, Arial, sans-serif;
	font-size: 1.3em;
	font-style: italic;
	line-height: 1.4;
	border-left: 5px solid #2c3e50;
	padding: 1em 1.5em;
	margin: 2em 0;
	color: #444;
	background: #fafafa;
}
/* Layout */
header, nav, main, aside{
  /* max-width: 1000px; */
  margin: 0 auto;
  padding: 1rem;
}

/* Header */
header {
  background: #2c3e50;
  color: #fff;
  text-align: center;
  /* padding: 1.2rem 1rem; */
  margin-block: 1em;
width: 100%;
}

header h1 {
  margin-bottom: 0.5rem;
}

/* Navigation */
h2{
	text-align: center;
	font-size: 1.5em;
	
}


 a {
color: black;
text-decoration: none;
font-weight: bold;
transition: all 0.2s ease;
padding: 2px 6px;
border-radius: 3px;

}

 a:hover, #project-map-link:hover {
  text-decoration: underline;
  background: #2c3e50;
  color: white;
  transition: all 0.2s ease;
}

/* Main Content */
main {
  background: #fff;
  margin-top: 1rem;
  padding: 2rem;
}

section {
  margin-bottom: 2rem;
}

section h2 {
  margin-bottom: 0.5rem;
  border-bottom: 2px solid #ddd;
  padding-bottom: 0.25rem;
}

/* Aside */
aside {
  background: #e9ecef;
  margin-top: 1rem;
  max-height: 100dvh;
  overflow-y: scroll;
}


/* Footer */
footer {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin-top: 1rem;
  padding-bottom: 1rem;
}

  body {
	display: grid;
	grid-template-columns: 1fr minmax(0, 700px) 380px 1fr;
	grid-template-areas:
	  ". header header ."
	  ". nav nav ."
	  ". main aside ."
	  ". footer footer .";
 font-family: "Literata", Georgia, "Times New Roman", serif;
 font-size: 1.2em;
		line-height: 1.6;
		color: #222;
		background-color: #f5f5f5;

  }
  header,
  nav,
  main,
  aside,
  footer {
	  padding: 1rem;
  }
  
  header { grid-area: header; }
  nav    { grid-area: nav; }
  main   { grid-area: main; }
  aside  { grid-area: aside; }
  footer { grid-area: footer; }

  main {
	margin-top: 0;
  }

  aside {
	margin-top: 0;
  }
  .emphasis{
	  padding: 1em;
   background: #516171;
	  margin:.25em .75em;
	  color: white;
  }
.emphasis ul {
	  list-style-position: outside;
	  padding-left: 1.5rem;
	  margin-left: 0;
  }
.gallery {
	  column-width: 100%;
	  column-gap: 1rem;
  }

.gallery figure {
  break-inside: avoid;
  margin-bottom: 1rem;
  background: #fff;
  border-radius: 20px;
  corner-shape:squircle;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Images */
.gallery img {
  width: 100%;
  display: block;
}

/* Captions */
.gallery figcaption {
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  color: #444;
}

/* Hover effect */
.gallery figure:hover {
  transform: translateY(-3px);
  transition: transform 0.2s ease;
}
.workLog{
	margin-top:1em;
	background: #efe8f4;
	padding:.5em;
}
.copyRight{
	text-align: center;
}
	/* Lightbox container */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* Image with zoom animation */
.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  border-radius: 6px;
  transform: scale(0.85);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Active state */
.lightbox.show .lightbox-content {
  transform: scale(1);
  opacity: 1;
}

/* Caption */
.lightbox-caption {
  color: #ccc;
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

/* Close button */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* Arrows */
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 10px;
  user-select: none;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 0.7;
}
.lightbox-border{
  border: 15px solid #2C3F50;
  box-shadow: 0 0 0 4px white;
}
/* Cursor */
.lightbox-img {
  cursor: pointer;
}
