:root {
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-tertiary: #334155;
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --accent-primary: #3b82f6;
  --accent-hover: #2563eb;
  --border-color: #334155;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --error-color: #ef4444;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius: 8px;
  --radius-lg: 12px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  min-height: calc(100vh - 200px);
}
.header {
    text-align: center;
    padding: 32px;
    border-bottom: 4px solid #fdb347;
    display: block;
  }

.textbox {
    font-family: arial;
    border-bottom: 4px solid #fdb347;
}

p, h2 {
    margin: 0.5rem 0;
    text-align: left;
    display: block;
    padding: 5px;
}
.subheader-text {
    font-weight: bold;
}
img {
    width: 350px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.contact-me {
    position: absolute; right: 0px
}
.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    align-items: center !important;
    justify-content: center;
    padding: 0.5rem 1rem;
    background-color: var(--bg-secondary) ;
    border-bottom: 1px solid #dee2e6;
}

.navbar-brand {
    display: inline-block;
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap;
    text-decoration: none;
    color: #6d7891e6;
}

.navbar-nav {
    display: flex;
    flex-direction: row;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.navbar-nav .nav-item {
    display: list-item;
}

.navbar-nav .nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  margin: 0 0.25rem;
}

.navbar-nav .nav-link:hover {
    color: rgba(0,0,0,.7);
}

.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    border: 1px solid ;
    border-radius: 0.25rem;
    display: none;
    color: #6d7891e6;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    color: #6d7891e6 !important;
}
a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
}
a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}
/* Responsive behavior */
@media (max-width: 767.98px) {
    .navbar-toggler {
        display: block;
    }
    
    .navbar-nav {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    
    .navbar-nav.show {
        display: flex;
    }
}
button {
  background-color: var(--accent-primary);
  color: white;
  border: none;
  border-radius: var(--radius);
  padding: 0.25rem 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.875rem;
}
button:hover {
  background-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

button:active {
  transform: translateY(0);
}

/* Dark navbar variant */
.navbar-dark {
    background-color: #343a40;
    border-bottom: 1px solid #495057;
}

.navbar-dark .navbar-brand {
    color: #fff;
}

.navbar-dark .nav-link {
    color: rgba(255,255,255,.55);
}

.navbar-dark .nav-link:hover {
    color: rgba(255,255,255,.75);
}
blockquote {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--accent-primary);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 3rem auto;
  max-width: 800px;
  font-style: italic;
  font-size: 1.125rem;
  color: var(--text-secondary);
  box-shadow: var(--shadow);
}