
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Sans-serif;
  font-size: 18px;
  line-height: 1.7;
   background-color: #031719; /* sets default light background */
  color: #c1edf1; /* sets default main text color */
  }


h1, h2 {
      font-family: "Segoe UI", sans-serif;
      color: #b4eef3;
    }

a:not(.blog-button):not(.feed-button):not(.info-button):not(.guest-button):not(.nav-button):not(.blog-archive-list a) {
  color: #FFD280; /* orange for unvisited */
  text-decoration: none;
}

a:not(.blog-button):not(.feed-button):not(.info-button):not(.guest-button):not(.nav-button):not(.blog-archive-list a):hover {
  color: #FFD280; /* lighter orange on hover */
  text-decoration: underline;
}

a:not(.blog-button):not(.feed-button):not(.info-button):not(.guest-button):not(.nav-button):not(.blog-archive-list a):visited {
  color: #B699FF; /* purple for visited */
}

 


.title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline; /* keeps the date nicely aligned with text */
  margin-bottom: 1.2rem;
}

.title-row h1 {
  margin: 0;
  font-size: 2rem;
}

.date {
  font-size: 0.9rem;
  color: #e0e0e0;
  white-space: nowrap;
}

.date.blog.archive {
  color: #e0e0e0;
  font-size: 0.9rem;
  white-space: nowrap;
  margin-left: 1rem;
}


.button-links {
  display: flex;
  justify-content: space-between;
  margin: 80px 0 0 0; /* adjust margin as needed (top margin for footer, maybe bottom for header) */
}


.button-links a.active {
  background-color: #55989e;
  color: #031719;
  border: 2px solid #86bdc2;
  pointer-events: none;       /* optionally disable clicking on active button */
  cursor: default;
  text-transform: none; /* or 'uppercase' if you want stronger emphasis */
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

/* Optional spacing */
.button-links.header {
  margin-bottom: 2rem;
}
.button-links.footer {
  max-width: 700px; /* match content width */
  margin: 80px auto 0; /* top margin + auto center */
  display: flex;
  justify-content: space-between;
}

.button-links a {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out;
  box-sizing: border-box; /* important */
}

@media (max-width: 768px) {
  .button-links.footer {
    flex-direction: column;   /* stack buttons vertically */
    align-items: center;      /* center them horizontally */
    gap: 0.5rem;               /* space between buttons */
  }

  .button-links.footer a {
    width: 100%;              /* full width buttons */
    max-width: 300px;         /* optional: limit width */
    text-align: center;
  }
}

/* Individual button styles */


.feed-button {
  background-color: #2f696e;
  color: #031719;
}
.feed-button:hover {
  background-color: #55989e;
}

.blog-button {
  background-color: #2f696e;
  color: #031719;
}
.blog-button:hover {
  background-color: #55989e;
}

.info-button {
  background-color: #2f696e;
  color: #031719;
}
.info-button:hover {
  background-color: #55989e;
}

.guest-button {
  background-color: #2f696e;
  color: #031719;
}
.guest-button:hover {
  background-color: #55989e;
}



/* Blog Archive page styles */


ul {
  list-style: none;
  padding: 0;
}

li {
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 0.5rem;
}

.blog-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.blog-item a {
  text-decoration: none;
  color: #000;
  transition: color 0.2s; /* smooth hover effect for link itself (optional) */
}

.blog-item .date {
  font-size: 0.9em;
  color: #666;
  transition: color 0.2s; /* smooth hover effect for date */
}

/* When hovering the link, make the sibling .date brighter */
.blog-item a:hover + .date {
  color: #d1dfdb; /* brighter color on hover */
}



.blog-archive-list a {
  color: #c1edf1;
  text-decoration: none;
  font-weight: bold;
  flex: 1;
}

.blog-archive-list a:hover {
  text-decoration: underline;
}

.blog-archive-list a:visited {
  color: #537a7e; /* or any soft grey tone you like */
  
}

/* header goes full width */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  padding: 1rem 2rem;
}

.content {
  flex: 1;
  max-width: 700px;
  width: 100%;
  margin: 2rem auto;
  padding: 0 1rem;
  box-sizing: border-box;
  display: block; /* ensure it's not flex or grid */
}

.site-logo-footer {
  padding: 1rem 2rem;
  display: flex;
  justify-content: center; /* centers the .logo-link */
  opacity: 0.3;
  max-width: 700px;   /* match main content width */
  margin: 40px auto 0px auto;
}

.logo-link {
  display: flex;           /* keep logo + text side-by-side */
  align-items: center;
  justify-content: center; /* centers image + text inside */
  gap: 0.5rem;
  text-decoration: none;
  opacity: 0.3;
}

.site-logo {
  height: 20px;
  width: auto;
  margin-right: 0.5rem;
}

.site-name {
  font-size: 1rem;
  color: #f2f2f2;
  font-weight: bold;
  font-family: "Segoe UI", sans-serif;
}

.disclaimer-box {
  font-style: italic;
  border: 1px solid gray;
  padding: 10px;
  background-color: #01090a;
  margin: 0 auto;
  font-size: 0.9em; /* smaller font */
  border-radius: 5px; /* optional: rounded corners */
   margin: 0 auto 40px; /* 20px margin at the bottom */
   color: #71999c;
}

.post-image {
  display: block;          /* makes margin: auto work */
  margin: 2rem auto;       /* same centering as .content */
  max-width: 700px;        /* matches your .content width */
  width: 100%;             /* scales down with the screen */
  height: auto;            /* keeps aspect ratio */
  box-sizing: border-box;  /* ensures padding/borders don’t mess width */
  padding: 0 1rem;         /* optional: aligns with text padding */
}
