:root {
  /* Modern Tech Theme */
  --primary-color: #6366f1;    /* Deep forest green */
  --accent-color: #818cf8;     /* Vibrant green */
  --bg-color: #f8fafc;         /* Cool white */
  --text-color: #1e293b;       /* Slate */
  --secondary-bg: #e2e8f0;     /* Light slate */
}

a {
  color: var(--primary-color);
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

body {
  max-width: 900px;
  margin: 0 auto;
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
}

blockquote {
  border-left: 4px solid #ccc;
  padding: 10px 20px;
  margin: 20px 0;
  background-color: #f1f1f1;
  font-style: italic;
  color: #555;
}

blockquote p {
  margin: 0;
}

blockquote::before {
  content: '“';
  font-size: 2em;
  line-height: 0.1em;
  vertical-align: -0.4em;
  color: #ccc;
  margin-right: 0.25em;
}

.blog-container {
  border: none;  /* Removed border */
  padding: 25px;
  margin-top: 20px;
  border-radius: 12px;
  background-color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.dots {
  content: '...';
  display: block;
  text-align: center;
  font-size: 1.5em;
  color: #555;
}

#aboutme {
  margin-top: 60px;
}

#blog-date {
  margin-top: 20px;
}

#blog-link {
  color: var(--primary-color);
  font-weight: 600;
}

#content-wrap {
  margin: auto;
  padding-bottom: 2.5rem;
}

#footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2.5rem;
}

#menu {
  float: right;
}

#page-container {
  position: relative;
  min-height: 100vh;
}

#status-message {
  font-size: 0.9em;
}

#status-message:hover {
  color: var(--primary-color) !important;
}

/* New: Nav links styling */
.nav-link {
  color: var(--text-color) !important;
  opacity: 0.8;
  transition: all 0.2s ease;
  font-size: 1.2em;
}

.nav-link:hover {
  opacity: 1;
  color: var(--primary-color) !important;
}

hr {
  border-color: var(--secondary-bg);
  opacity: 0.8;
}

.blog-container:hover {
  /* transform: translateY(-2px); */
  transition: all 1.0s ease;
  box-shadow: 0 6px 8px -1px rgba(0, 0, 0, 0.5);
}

.blog-container:not(:hover) {
  transition: all 1.0s ease;
  box-shadow: 0 6px 8px -1px rgba(0, 0, 0, 0.1);
}

.side-drawer {
  position: fixed;
  right: -400px;
  top: 0;
  width: 400px;
  height: 100%;
  background-color: white;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease-in-out;
  padding: 20px;
  overflow-y: auto;
  z-index: 1000;
}

.side-drawer.open {
  right: 0;
}

.note-button {
  display: inline-block;
  color: var(--primary-color);
  cursor: pointer;
  font-size: 0.8em;
  vertical-align: super;
  margin-left: 4px;
}

.note-button:hover {
  color: var(--accent-color);
}

.close-drawer {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 1.5em;
  color: var(--text-color);
}

.footnotes {
  margin-top: 40px;
}

.footnote {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--secondary-bg);
}
