/* General Styles */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html, body {
  height: 100%;
  font-family: spartan, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header Styles */
.header-nav-wrapper {
    display: flex;
    flex-direction: column;
    align-items: start; /* Aligns items to the start of the cross axis (left) */
    flex: 0 0 20%;
}

header {
  text-align: left;
  margin-left: 20px;
  margin-top: 5px;
  padding-bottom: 0px;
  height: 5rem; /* Adjust as needed */
}

header h1, header h2 {
  color: #333;
}

header h1 {
  font-weight: bold;
  font-size: 2rem;
}

header h2 {
  font-weight: normal;
  font-size: 1.2rem;
}

/* Main Content Styles */
main {
  flex: 1;
  display: flex;
  justify-content: center;
}

.container {
  display: flex;
  flex-direction: row; /* this will position your .header-nav-wrapper and main side by side */
}

.centered {
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: flex-start;
  margin-top: 5rem;
}

.art{
  display: flex;
  flex-direction: row; /* This is the default value and can be omitted */
  justify-content: center; /* This aligns items horizontally in the center */
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5rem;
}

.project {
  max-width: 80%;
  height: auto;
  margin-bottom: 100px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px; /* adjust as needed for space between images */
  max-width: 80%;
  height: auto;
  margin-bottom: 100px;
}


.project-image {
  margin-left: 20px;
  padding-left: 0;
  max-width: 60%;
  height: auto;
}

.project-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 20px;
  padding-top: 20px;
  width: 60%;
}

/* Slideshow Container */
#slideshow-container {
  position: relative;
  cursor: pointer;
  width: 100%;
  max-width: 800px;
  height: auto;
  overflow: hidden;
}

/* Slides */
.slide {
  display: none; /* Hide all slides by default */
  align-items: center;
  justify-content: center;
  text-align: left;
  font-size: 1.5em;
  background-color: #FFF;
  color: #000;
}

.slide.active {
  display: flex; /* Show the active slide using flex */
}

.slide img {
  max-width: 80%;
  height: auto;
  display: block;
}

/* Navigation Buttons */
.navigation-container {
  position: fixed;
  bottom: 50px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /*background-color: rgba(255, 255, 255, 0.9);*/
  padding: 10px 0;
  z-index: 1000;
}

.nav-btn {
  background-color: transparent;
  border: none;
  color: #333;
  font-size: 1.2rem;
  cursor: pointer;
  user-select: none;
  margin: 0 40px;
  padding: 5px;
}

.nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}

/* Dots Container */
#dot-container {
  text-align: center;
  margin-top: 15px;
}

/* Dots */
.dot {
  height: 8px;
  width: 8px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background-color: #000000;
}

.dot:hover {
  background-color: #777;
}

.left_column {
  display: flex;
  flex-direction: column;
  width: 20%;
}

.right_column {
  width: 80%;
  display: flex;
  justify-content: right; /* This aligns items horizontally in the center */
  align-items: center; /* This aligns items vertically in the center */
}

.centered-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 80%;
  height: auto;
  text-align: center;
  margin: 0 auto;
}

.nav-links {
  margin-bottom: 20px;
  text-align: left;
}

img {
  max-width: 100%;
  height: auto;
}

.link {
  font-family: spartan, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  text-align: left;
  display: block;
  margin-left: 20px;
}

.link2 {
  font-family: spartan, sans-serif;
  font-size: 0.8rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  line-height: 2;
}

.projectlinks {
  margin-top: 20px;
}

#project-links-placeholder {
  margin-top: 20px; /* Adjust the value to your preference */
  /*border-top: 1px solid #ccc; /* Adds a thin line above the project links*/
  padding-top: 10px;  Adds space between the border and the first project link 
}

.project-links-separator {
  border-top: 2px solid #000000;
  width: 100%; /* Adjust as needed */
  margin: 0 auto; /* Center the line */
  margin-top: 20px; /* Space above the line */
  margin-left: 20px;
  margin-bottom: 10px; /* Space below the line */
}

.link3 {
  font-family: spartan, sans-serif;
  font-size: 0.8rem;
  font-weight: bold;
  color: #333;
  text-decoration: underline;
  line-height: 2;
}

.link4 {
  font-family: spartan, sans-serif;
  font-size: 0.8rem;
  font-weight: normal;
  color: #333;
  text-decoration: none;
  line-height: 2;
  margin-left: 20px;
  white-space: nowrap;
  display: block;

}

.text {
  width: 40%; /* Adjust as needed */
  margin: 0 auto; /* This centers the div */
  line-height: 2;
}

.text2 {
  font-size: 0.8rem;
  font-weight: bold;
  text-align: left;
  line-height: 2;
}

.text3 {
  font-size: 0.8rem;
  font-weight: normal;
  text-align: left;
  line-height: 2;
}

.text4 {
  font-size: 0.8rem;
  font-weight: normal;
  text-align: left;
  line-height: 1.5;
  padding-bottom: 50px;
  max-width: 65ch; /* Limits text to approximately 65 characters per line */
}

.text5 {
  font-size: 0.8rem;
  font-weight: bold;
  text-align: left;
  line-height: 1.2;
  padding-bottom: 10px;
}

.text6 {
  font-size: 0.8rem;
  font-weight: normal;
  text-align: left;
  align-items: left;
  line-height: 1.2;
}

.blog {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 5rem;
}

.blog-header {
  margin-bottom: 10px;
  margin-top: 100px;
  width: 50%;
}

.blog-text {
  margin-top: 5px;
  width: 50%;
}

.content {
    display: flex;
    justify-content: space-between;
    align-items: left;
    margin-top: 20px;
}

/* Footer Styles */
.footer{
  align-items: bottom;
  z-index: 1001;
}

footer {
  position: fixed;
  bottom: 5px;
  right: 5px;
  margin-top: auto;
  text-align: right;
  padding: 5px;
  /*padding-top: 200px;*/*
  z-index: 1001;
}

footer p {
  font-size: 0.7rem;
  color: #333;
  margin-bottom: 10px;
  z-index: 1001;
}
